2024-04-24T15:56:34.045 INFO:root:teuthology version: 0.0.1.dev269+g9481b1d 2024-04-24T15:56:34.045 DEBUG:teuthology.run:Teuthology command: teuthology --name adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi --description orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} --owner scheduled_adking@teuthology --archive /home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765 --verbose -- /home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765/orig.config.yaml 2024-04-24T15:56:34.079 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-24T15:56:34.162 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765 branch: wip-adk-testing-2024-04-24-0937 description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: adking@redhat.com first_in_suite: false job_id: '7671765' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: wip-adk-testing-2024-04-24-0937 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\) log-only-match: - CEPHADM_ sha1: 5904d29475f5be602879d9fb26280e89b808d5cc ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 5904d29475f5be602879d9fb26280e89b808d5cc workunit: branch: wip-adk-testing-2024-04-24-0937 sha1: 5904d29475f5be602879d9fb26280e89b808d5cc owner: scheduled_adking@teuthology priority: 80 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 2532 sha1: 5904d29475f5be602879d9fb26280e89b808d5cc sleep_before_teardown: 0 subset: 1/16 suite: orch:cephadm suite_branch: wip-adk-testing-2024-04-24-0937 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_5904d29475f5be602879d9fb26280e89b808d5cc/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: 5904d29475f5be602879d9fb26280e89b808d5cc targets: smithi178.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDfNf4lyyVhde7mSmp9k+IDCpRQLZ2mx9w4mFzIoCppHEq3vMTICJk50Flf9yNuMPIEZLTNotgbiUTBH9kdL/4w= smithi204.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCaxZ9WKwLpIUz9NiVEThxRjhPJERy1vlk5DhVvDcQGICgckWxsjURbk1G2T3WROHa31nZKa9vaWSPV7/nbsJLA= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17 timestamp: 2024-04-24_15:49:18 tube: smithi user: adking verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-24T15:56:34.162 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_5904d29475f5be602879d9fb26280e89b808d5cc/qa; will attempt to use it 2024-04-24T15:56:34.163 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_5904d29475f5be602879d9fb26280e89b808d5cc/qa/tasks 2024-04-24T15:56:34.163 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-24T15:56:34.165 INFO:teuthology.task.internal:Checking packages... 2024-04-24T15:56:34.187 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '5904d29475f5be602879d9fb26280e89b808d5cc' 2024-04-24T15:56:34.187 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-24T15:56:34.187 INFO:teuthology.packaging:ref: None 2024-04-24T15:56:34.187 INFO:teuthology.packaging:tag: None 2024-04-24T15:56:34.187 INFO:teuthology.packaging:branch: wip-adk-testing-2024-04-24-0937 2024-04-24T15:56:34.187 INFO:teuthology.packaging:sha1: 5904d29475f5be602879d9fb26280e89b808d5cc 2024-04-24T15:56:34.187 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=wip-adk-testing-2024-04-24-0937 2024-04-24T15:56:34.336 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-3285-g5904d294-1jammy 2024-04-24T15:56:34.337 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-24T15:56:34.343 INFO:teuthology.task.internal:no buildpackages task found 2024-04-24T15:56:34.343 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-24T15:56:34.374 INFO:teuthology.task.internal:Saving configuration 2024-04-24T15:56:34.387 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-24T15:56:34.407 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-24T15:56:34.427 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi178.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-24 15:50:37.674478', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMLxw1yd9HIyxO804Uil3nwph8foGVpKQpkkduAqiwtF'} 2024-04-24T15:56:34.447 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi204.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-24 15:50:37.675691', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDqDeoDiKwO6jLhOyvBkaAGAELdgwAqv3tcN+lk66Xyb'} 2024-04-24T15:56:34.447 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-24T15:56:34.453 INFO:teuthology.task.internal:roles: ubuntu@smithi178.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-04-24T15:56:34.453 INFO:teuthology.task.internal:roles: ubuntu@smithi204.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-04-24T15:56:34.454 INFO:teuthology.run_tasks:Running task console_log... 2024-04-24T15:56:34.541 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7ff2865ab430>, signals=[15]) 2024-04-24T15:56:34.541 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-24T15:56:34.586 INFO:teuthology.task.internal:Opening connections... 2024-04-24T15:56:34.586 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi178.front.sepia.ceph.com 2024-04-24T15:56:34.588 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi178.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T15:56:34.669 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi204.front.sepia.ceph.com 2024-04-24T15:56:34.670 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi204.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T15:56:34.748 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-24T15:56:34.754 DEBUG:teuthology.orchestra.run.smithi178:> uname -m 2024-04-24T15:56:34.759 INFO:teuthology.orchestra.run.smithi178.stdout:x86_64 2024-04-24T15:56:34.760 DEBUG:teuthology.orchestra.run.smithi178:> cat /etc/os-release 2024-04-24T15:56:34.805 INFO:teuthology.orchestra.run.smithi178.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-24T15:56:34.805 INFO:teuthology.orchestra.run.smithi178.stdout:NAME="Ubuntu" 2024-04-24T15:56:34.805 INFO:teuthology.orchestra.run.smithi178.stdout:VERSION_ID="22.04" 2024-04-24T15:56:34.805 INFO:teuthology.orchestra.run.smithi178.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-24T15:56:34.806 INFO:teuthology.orchestra.run.smithi178.stdout:VERSION_CODENAME=jammy 2024-04-24T15:56:34.806 INFO:teuthology.orchestra.run.smithi178.stdout:ID=ubuntu 2024-04-24T15:56:34.806 INFO:teuthology.orchestra.run.smithi178.stdout:ID_LIKE=debian 2024-04-24T15:56:34.806 INFO:teuthology.orchestra.run.smithi178.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-24T15:56:34.806 INFO:teuthology.orchestra.run.smithi178.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-24T15:56:34.806 INFO:teuthology.orchestra.run.smithi178.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-24T15:56:34.806 INFO:teuthology.orchestra.run.smithi178.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-24T15:56:34.806 INFO:teuthology.orchestra.run.smithi178.stdout:UBUNTU_CODENAME=jammy 2024-04-24T15:56:34.807 INFO:teuthology.lock.ops:Updating smithi178.front.sepia.ceph.com on lock server 2024-04-24T15:56:34.830 DEBUG:teuthology.orchestra.run.smithi204:> uname -m 2024-04-24T15:56:34.835 INFO:teuthology.orchestra.run.smithi204.stdout:x86_64 2024-04-24T15:56:34.835 DEBUG:teuthology.orchestra.run.smithi204:> cat /etc/os-release 2024-04-24T15:56:34.887 INFO:teuthology.orchestra.run.smithi204.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-24T15:56:34.888 INFO:teuthology.orchestra.run.smithi204.stdout:NAME="Ubuntu" 2024-04-24T15:56:34.888 INFO:teuthology.orchestra.run.smithi204.stdout:VERSION_ID="22.04" 2024-04-24T15:56:34.888 INFO:teuthology.orchestra.run.smithi204.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-24T15:56:34.888 INFO:teuthology.orchestra.run.smithi204.stdout:VERSION_CODENAME=jammy 2024-04-24T15:56:34.888 INFO:teuthology.orchestra.run.smithi204.stdout:ID=ubuntu 2024-04-24T15:56:34.888 INFO:teuthology.orchestra.run.smithi204.stdout:ID_LIKE=debian 2024-04-24T15:56:34.888 INFO:teuthology.orchestra.run.smithi204.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-24T15:56:34.888 INFO:teuthology.orchestra.run.smithi204.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-24T15:56:34.888 INFO:teuthology.orchestra.run.smithi204.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-24T15:56:34.888 INFO:teuthology.orchestra.run.smithi204.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-24T15:56:34.888 INFO:teuthology.orchestra.run.smithi204.stdout:UBUNTU_CODENAME=jammy 2024-04-24T15:56:34.889 INFO:teuthology.lock.ops:Updating smithi204.front.sepia.ceph.com on lock server 2024-04-24T15:56:34.913 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-24T15:56:34.922 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-24T15:56:34.940 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-24T15:56:34.941 DEBUG:teuthology.orchestra.run.smithi178:> test '!' -e /home/ubuntu/cephtest 2024-04-24T15:56:34.943 DEBUG:teuthology.orchestra.run.smithi204:> test '!' -e /home/ubuntu/cephtest 2024-04-24T15:56:34.948 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-24T15:56:34.966 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-24T15:56:34.966 DEBUG:teuthology.orchestra.run.smithi178:> test -z $(ls -A /var/lib/ceph) 2024-04-24T15:56:34.990 DEBUG:teuthology.orchestra.run.smithi204:> test -z $(ls -A /var/lib/ceph) 2024-04-24T15:56:35.006 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-24T15:56:35.059 INFO:teuthology.run_tasks:Running task kernel... 2024-04-24T15:56:35.076 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-24T15:56:35.077 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-24T15:56:35.077 DEBUG:teuthology.orchestra.run.smithi178:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-24T15:56:35.078 DEBUG:teuthology.orchestra.run.smithi204:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-24T15:56:35.082 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T15:56:35.083 DEBUG:teuthology.orchestra.run.smithi178:> uname -r 2024-04-24T15:56:35.083 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T15:56:35.084 DEBUG:teuthology.orchestra.run.smithi204:> uname -r 2024-04-24T15:56:35.129 INFO:teuthology.orchestra.run.smithi178.stdout:5.15.0-56-generic 2024-04-24T15:56:35.129 INFO:teuthology.task.kernel:Running kernel on smithi178: 5.15.0-56-generic 2024-04-24T15:56:35.130 DEBUG:teuthology.orchestra.run.smithi178:> sudo apt-get clean 2024-04-24T15:56:35.133 INFO:teuthology.orchestra.run.smithi204.stdout:5.15.0-56-generic 2024-04-24T15:56:35.133 INFO:teuthology.task.kernel:Running kernel on smithi204: 5.15.0-56-generic 2024-04-24T15:56:35.133 DEBUG:teuthology.orchestra.run.smithi204:> sudo apt-get clean 2024-04-24T15:56:35.253 DEBUG:teuthology.orchestra.run.smithi204:> sudo apt-get update 2024-04-24T15:56:35.268 DEBUG:teuthology.orchestra.run.smithi178:> sudo apt-get update 2024-04-24T15:56:35.424 INFO:teuthology.orchestra.run.smithi204.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-24T15:56:35.424 INFO:teuthology.orchestra.run.smithi204.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-24T15:56:35.424 INFO:teuthology.orchestra.run.smithi204.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-24T15:56:35.456 INFO:teuthology.orchestra.run.smithi178.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-24T15:56:35.457 INFO:teuthology.orchestra.run.smithi178.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-24T15:56:35.457 INFO:teuthology.orchestra.run.smithi178.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-24T15:56:35.508 INFO:teuthology.orchestra.run.smithi204.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-24T15:56:35.530 INFO:teuthology.orchestra.run.smithi178.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-24T15:56:35.666 INFO:teuthology.orchestra.run.smithi204.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [452 kB] 2024-04-24T15:56:35.713 INFO:teuthology.orchestra.run.smithi178.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,392 kB] 2024-04-24T15:56:35.740 INFO:teuthology.orchestra.run.smithi204.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [618 kB] 2024-04-24T15:56:35.746 INFO:teuthology.orchestra.run.smithi204.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,392 kB] 2024-04-24T15:56:35.788 INFO:teuthology.orchestra.run.smithi178.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [618 kB] 2024-04-24T15:56:35.792 INFO:teuthology.orchestra.run.smithi204.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [243 kB] 2024-04-24T15:56:35.797 INFO:teuthology.orchestra.run.smithi204.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-24T15:56:35.798 INFO:teuthology.orchestra.run.smithi204.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,768 kB] 2024-04-24T15:56:35.835 INFO:teuthology.orchestra.run.smithi204.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [36.5 kB] 2024-04-24T15:56:35.835 INFO:teuthology.orchestra.run.smithi204.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [299 kB] 2024-04-24T15:56:35.839 INFO:teuthology.orchestra.run.smithi204.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-24T15:56:35.839 INFO:teuthology.orchestra.run.smithi204.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [848 kB] 2024-04-24T15:56:35.849 INFO:teuthology.orchestra.run.smithi204.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [601 kB] 2024-04-24T15:56:35.855 INFO:teuthology.orchestra.run.smithi204.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,610 kB] 2024-04-24T15:56:35.857 INFO:teuthology.orchestra.run.smithi204.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-24T15:56:35.872 INFO:teuthology.orchestra.run.smithi178.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [452 kB] 2024-04-24T15:56:35.872 INFO:teuthology.orchestra.run.smithi204.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-24T15:56:35.873 INFO:teuthology.orchestra.run.smithi204.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-24T15:56:35.873 INFO:teuthology.orchestra.run.smithi204.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-24T15:56:35.878 INFO:teuthology.orchestra.run.smithi178.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [243 kB] 2024-04-24T15:56:35.883 INFO:teuthology.orchestra.run.smithi178.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-24T15:56:35.883 INFO:teuthology.orchestra.run.smithi178.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,768 kB] 2024-04-24T15:56:35.890 INFO:teuthology.orchestra.run.smithi178.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,610 kB] 2024-04-24T15:56:35.891 INFO:teuthology.orchestra.run.smithi204.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-24T15:56:35.892 INFO:teuthology.orchestra.run.smithi204.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-24T15:56:35.923 INFO:teuthology.orchestra.run.smithi204.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [303 kB] 2024-04-24T15:56:35.928 INFO:teuthology.orchestra.run.smithi178.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [36.5 kB] 2024-04-24T15:56:35.928 INFO:teuthology.orchestra.run.smithi178.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [299 kB] 2024-04-24T15:56:35.934 INFO:teuthology.orchestra.run.smithi178.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-24T15:56:35.934 INFO:teuthology.orchestra.run.smithi178.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [601 kB] 2024-04-24T15:56:35.936 INFO:teuthology.orchestra.run.smithi204.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-24T15:56:35.936 INFO:teuthology.orchestra.run.smithi204.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,830 kB] 2024-04-24T15:56:35.943 INFO:teuthology.orchestra.run.smithi178.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [848 kB] 2024-04-24T15:56:35.962 INFO:teuthology.orchestra.run.smithi178.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-24T15:56:35.965 INFO:teuthology.orchestra.run.smithi178.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-24T15:56:35.990 INFO:teuthology.orchestra.run.smithi204.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [38.1 kB] 2024-04-24T15:56:35.991 INFO:teuthology.orchestra.run.smithi204.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [311 kB] 2024-04-24T15:56:35.992 INFO:teuthology.orchestra.run.smithi178.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [303 kB] 2024-04-24T15:56:35.992 INFO:teuthology.orchestra.run.smithi178.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-24T15:56:35.993 INFO:teuthology.orchestra.run.smithi178.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-24T15:56:35.995 INFO:teuthology.orchestra.run.smithi178.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-24T15:56:35.996 INFO:teuthology.orchestra.run.smithi178.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-24T15:56:35.998 INFO:teuthology.orchestra.run.smithi178.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-24T15:56:35.999 INFO:teuthology.orchestra.run.smithi178.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,830 kB] 2024-04-24T15:56:36.000 INFO:teuthology.orchestra.run.smithi204.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-24T15:56:36.000 INFO:teuthology.orchestra.run.smithi204.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,070 kB] 2024-04-24T15:56:36.019 INFO:teuthology.orchestra.run.smithi204.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [700 kB] 2024-04-24T15:56:36.029 INFO:teuthology.orchestra.run.smithi204.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [244 kB] 2024-04-24T15:56:36.032 INFO:teuthology.orchestra.run.smithi204.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-24T15:56:36.033 INFO:teuthology.orchestra.run.smithi204.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] 2024-04-24T15:56:36.033 INFO:teuthology.orchestra.run.smithi204.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,472 B] 2024-04-24T15:56:36.043 INFO:teuthology.orchestra.run.smithi178.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [38.1 kB] 2024-04-24T15:56:36.044 INFO:teuthology.orchestra.run.smithi178.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [311 kB] 2024-04-24T15:56:36.048 INFO:teuthology.orchestra.run.smithi204.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] 2024-04-24T15:56:36.049 INFO:teuthology.orchestra.run.smithi204.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-24T15:56:36.049 INFO:teuthology.orchestra.run.smithi204.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [82.9 kB] 2024-04-24T15:56:36.050 INFO:teuthology.orchestra.run.smithi204.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [90.8 kB] 2024-04-24T15:56:36.051 INFO:teuthology.orchestra.run.smithi178.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-24T15:56:36.051 INFO:teuthology.orchestra.run.smithi178.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [700 kB] 2024-04-24T15:56:36.062 INFO:teuthology.orchestra.run.smithi178.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,070 kB] 2024-04-24T15:56:36.062 INFO:teuthology.orchestra.run.smithi204.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-24T15:56:36.063 INFO:teuthology.orchestra.run.smithi204.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-24T15:56:36.063 INFO:teuthology.orchestra.run.smithi204.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [18.5 kB] 2024-04-24T15:56:36.063 INFO:teuthology.orchestra.run.smithi204.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [29.8 kB] 2024-04-24T15:56:36.064 INFO:teuthology.orchestra.run.smithi204.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-24T15:56:36.075 INFO:teuthology.orchestra.run.smithi204.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-24T15:56:36.075 INFO:teuthology.orchestra.run.smithi178.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [244 kB] 2024-04-24T15:56:36.078 INFO:teuthology.orchestra.run.smithi178.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-24T15:56:36.078 INFO:teuthology.orchestra.run.smithi178.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] 2024-04-24T15:56:36.079 INFO:teuthology.orchestra.run.smithi178.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,472 B] 2024-04-24T15:56:36.082 INFO:teuthology.orchestra.run.smithi178.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] 2024-04-24T15:56:36.082 INFO:teuthology.orchestra.run.smithi178.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-24T15:56:36.082 INFO:teuthology.orchestra.run.smithi178.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [82.9 kB] 2024-04-24T15:56:36.084 INFO:teuthology.orchestra.run.smithi178.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [90.8 kB] 2024-04-24T15:56:36.099 INFO:teuthology.orchestra.run.smithi178.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-24T15:56:36.100 INFO:teuthology.orchestra.run.smithi178.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-24T15:56:36.100 INFO:teuthology.orchestra.run.smithi178.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [18.5 kB] 2024-04-24T15:56:36.100 INFO:teuthology.orchestra.run.smithi178.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [29.8 kB] 2024-04-24T15:56:36.100 INFO:teuthology.orchestra.run.smithi178.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-24T15:56:36.101 INFO:teuthology.orchestra.run.smithi178.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-24T15:56:41.491 INFO:teuthology.orchestra.run.smithi204.stdout:Fetched 13.3 MB in 2s (7,084 kB/s) 2024-04-24T15:56:41.552 INFO:teuthology.orchestra.run.smithi178.stdout:Fetched 13.3 MB in 2s (6,727 kB/s) 2024-04-24T15:56:42.796 INFO:teuthology.orchestra.run.smithi204.stdout:Reading package lists... 2024-04-24T15:56:42.812 DEBUG:teuthology.orchestra.run.smithi204:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-24T15:56:42.872 INFO:teuthology.orchestra.run.smithi204.stdout:Reading package lists... 2024-04-24T15:56:42.917 INFO:teuthology.orchestra.run.smithi178.stdout:Reading package lists... 2024-04-24T15:56:42.935 DEBUG:teuthology.orchestra.run.smithi178:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-24T15:56:42.985 INFO:teuthology.orchestra.run.smithi178.stdout:Reading package lists... 2024-04-24T15:56:43.071 INFO:teuthology.orchestra.run.smithi204.stdout:Building dependency tree... 2024-04-24T15:56:43.072 INFO:teuthology.orchestra.run.smithi204.stdout:Reading state information... 2024-04-24T15:56:43.170 INFO:teuthology.orchestra.run.smithi178.stdout:Building dependency tree... 2024-04-24T15:56:43.170 INFO:teuthology.orchestra.run.smithi178.stdout:Reading state information... 2024-04-24T15:56:43.235 INFO:teuthology.orchestra.run.smithi204.stdout:The following packages were automatically installed and are no longer required: 2024-04-24T15:56:43.235 INFO:teuthology.orchestra.run.smithi204.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-24T15:56:43.235 INFO:teuthology.orchestra.run.smithi204.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-24T15:56:43.236 INFO:teuthology.orchestra.run.smithi204.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-24T15:56:43.236 INFO:teuthology.orchestra.run.smithi204.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-24T15:56:43.236 INFO:teuthology.orchestra.run.smithi204.stdout: python2.7-minimal 2024-04-24T15:56:43.236 INFO:teuthology.orchestra.run.smithi204.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-24T15:56:43.237 INFO:teuthology.orchestra.run.smithi204.stdout:The following additional packages will be installed: 2024-04-24T15:56:43.237 INFO:teuthology.orchestra.run.smithi204.stdout: linux-generic linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-24T15:56:43.237 INFO:teuthology.orchestra.run.smithi204.stdout: linux-headers-generic linux-image-5.15.0-105-generic 2024-04-24T15:56:43.237 INFO:teuthology.orchestra.run.smithi204.stdout: linux-modules-5.15.0-105-generic linux-modules-extra-5.15.0-105-generic 2024-04-24T15:56:43.238 INFO:teuthology.orchestra.run.smithi204.stdout:Suggested packages: 2024-04-24T15:56:43.238 INFO:teuthology.orchestra.run.smithi204.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-24T15:56:43.239 INFO:teuthology.orchestra.run.smithi204.stdout:Recommended packages: 2024-04-24T15:56:43.239 INFO:teuthology.orchestra.run.smithi204.stdout: thermald 2024-04-24T15:56:43.285 INFO:teuthology.orchestra.run.smithi204.stdout:The following NEW packages will be installed: 2024-04-24T15:56:43.285 INFO:teuthology.orchestra.run.smithi204.stdout: linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-24T15:56:43.285 INFO:teuthology.orchestra.run.smithi204.stdout: linux-image-5.15.0-105-generic linux-modules-5.15.0-105-generic 2024-04-24T15:56:43.286 INFO:teuthology.orchestra.run.smithi204.stdout: linux-modules-extra-5.15.0-105-generic 2024-04-24T15:56:43.286 INFO:teuthology.orchestra.run.smithi204.stdout:The following packages will be upgraded: 2024-04-24T15:56:43.286 INFO:teuthology.orchestra.run.smithi204.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-24T15:56:43.325 INFO:teuthology.orchestra.run.smithi178.stdout:The following packages were automatically installed and are no longer required: 2024-04-24T15:56:43.325 INFO:teuthology.orchestra.run.smithi178.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-24T15:56:43.325 INFO:teuthology.orchestra.run.smithi178.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-24T15:56:43.326 INFO:teuthology.orchestra.run.smithi178.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-24T15:56:43.326 INFO:teuthology.orchestra.run.smithi178.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-24T15:56:43.326 INFO:teuthology.orchestra.run.smithi178.stdout: python2.7-minimal 2024-04-24T15:56:43.326 INFO:teuthology.orchestra.run.smithi178.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-24T15:56:43.327 INFO:teuthology.orchestra.run.smithi178.stdout:The following additional packages will be installed: 2024-04-24T15:56:43.327 INFO:teuthology.orchestra.run.smithi178.stdout: linux-generic linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-24T15:56:43.327 INFO:teuthology.orchestra.run.smithi178.stdout: linux-headers-generic linux-image-5.15.0-105-generic 2024-04-24T15:56:43.327 INFO:teuthology.orchestra.run.smithi178.stdout: linux-modules-5.15.0-105-generic linux-modules-extra-5.15.0-105-generic 2024-04-24T15:56:43.328 INFO:teuthology.orchestra.run.smithi178.stdout:Suggested packages: 2024-04-24T15:56:43.328 INFO:teuthology.orchestra.run.smithi178.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-24T15:56:43.328 INFO:teuthology.orchestra.run.smithi178.stdout:Recommended packages: 2024-04-24T15:56:43.329 INFO:teuthology.orchestra.run.smithi178.stdout: thermald 2024-04-24T15:56:43.376 INFO:teuthology.orchestra.run.smithi178.stdout:The following NEW packages will be installed: 2024-04-24T15:56:43.376 INFO:teuthology.orchestra.run.smithi178.stdout: linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-24T15:56:43.376 INFO:teuthology.orchestra.run.smithi178.stdout: linux-image-5.15.0-105-generic linux-modules-5.15.0-105-generic 2024-04-24T15:56:43.376 INFO:teuthology.orchestra.run.smithi178.stdout: linux-modules-extra-5.15.0-105-generic 2024-04-24T15:56:43.378 INFO:teuthology.orchestra.run.smithi178.stdout:The following packages will be upgraded: 2024-04-24T15:56:43.378 INFO:teuthology.orchestra.run.smithi178.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-24T15:56:43.465 INFO:teuthology.orchestra.run.smithi204.stdout:3 upgraded, 5 newly installed, 0 to remove and 315 not upgraded. 2024-04-24T15:56:43.465 INFO:teuthology.orchestra.run.smithi204.stdout:Need to get 113 MB of archives. 2024-04-24T15:56:43.465 INFO:teuthology.orchestra.run.smithi204.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-24T15:56:43.466 INFO:teuthology.orchestra.run.smithi204.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-105-generic amd64 5.15.0-105.115 [22.7 MB] 2024-04-24T15:56:43.556 INFO:teuthology.orchestra.run.smithi178.stdout:3 upgraded, 5 newly installed, 0 to remove and 315 not upgraded. 2024-04-24T15:56:43.556 INFO:teuthology.orchestra.run.smithi178.stdout:Need to get 113 MB of archives. 2024-04-24T15:56:43.556 INFO:teuthology.orchestra.run.smithi178.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-24T15:56:43.557 INFO:teuthology.orchestra.run.smithi178.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-105-generic amd64 5.15.0-105.115 [22.7 MB] 2024-04-24T15:56:44.937 INFO:teuthology.orchestra.run.smithi178.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-105-generic amd64 5.15.0-105.115 [11.5 MB] 2024-04-24T15:56:45.121 INFO:teuthology.orchestra.run.smithi204.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-105-generic amd64 5.15.0-105.115 [11.5 MB] 2024-04-24T15:56:45.317 INFO:teuthology.orchestra.run.smithi178.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-105-generic amd64 5.15.0-105.115 [63.9 MB] 2024-04-24T15:56:45.487 INFO:teuthology.orchestra.run.smithi204.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-105-generic amd64 5.15.0-105.115 [63.9 MB] 2024-04-24T15:56:47.549 INFO:teuthology.orchestra.run.smithi178.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.105.102 [1,694 B] 2024-04-24T15:56:47.549 INFO:teuthology.orchestra.run.smithi178.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.105.102 [2,530 B] 2024-04-24T15:56:47.549 INFO:teuthology.orchestra.run.smithi178.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105 all 5.15.0-105.115 [12.3 MB] 2024-04-24T15:56:47.726 INFO:teuthology.orchestra.run.smithi204.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.105.102 [1,694 B] 2024-04-24T15:56:47.726 INFO:teuthology.orchestra.run.smithi204.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.105.102 [2,530 B] 2024-04-24T15:56:47.726 INFO:teuthology.orchestra.run.smithi204.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105 all 5.15.0-105.115 [12.3 MB] 2024-04-24T15:56:49.150 INFO:teuthology.orchestra.run.smithi204.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105-generic amd64 5.15.0-105.115 [2,857 kB] 2024-04-24T15:56:49.155 INFO:teuthology.orchestra.run.smithi178.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-105-generic amd64 5.15.0-105.115 [2,857 kB] 2024-04-24T15:56:49.263 INFO:teuthology.orchestra.run.smithi204.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.105.102 [2,382 B] 2024-04-24T15:56:49.272 INFO:teuthology.orchestra.run.smithi178.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.105.102 [2,382 B] 2024-04-24T15:56:49.670 INFO:teuthology.orchestra.run.smithi204.stdout:Fetched 113 MB in 6s (19.0 MB/s) 2024-04-24T15:56:49.696 INFO:teuthology.orchestra.run.smithi178.stdout:Fetched 113 MB in 6s (19.2 MB/s) 2024-04-24T15:56:49.827 INFO:teuthology.orchestra.run.smithi204.stdout:Selecting previously unselected package linux-modules-5.15.0-105-generic. 2024-04-24T15:56:49.900 INFO:teuthology.orchestra.run.smithi178.stdout:Selecting previously unselected package linux-modules-5.15.0-105-generic. 2024-04-24T15:56:51.857 INFO:teuthology.orchestra.run.smithi204.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-04-24T15:56:51.861 INFO:teuthology.orchestra.run.smithi204.stdout:Preparing to unpack .../0-linux-modules-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T15:56:51.941 INFO:teuthology.orchestra.run.smithi204.stdout:Unpacking linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:56:51.942 INFO:teuthology.orchestra.run.smithi178.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-04-24T15:56:51.946 INFO:teuthology.orchestra.run.smithi178.stdout:Preparing to unpack .../0-linux-modules-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T15:56:52.041 INFO:teuthology.orchestra.run.smithi178.stdout:Unpacking linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:56:54.076 INFO:teuthology.orchestra.run.smithi204.stdout:Selecting previously unselected package linux-image-5.15.0-105-generic. 2024-04-24T15:56:54.097 INFO:teuthology.orchestra.run.smithi204.stdout:Preparing to unpack .../1-linux-image-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T15:56:54.182 INFO:teuthology.orchestra.run.smithi204.stdout:Unpacking linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:56:54.233 INFO:teuthology.orchestra.run.smithi178.stdout:Selecting previously unselected package linux-image-5.15.0-105-generic. 2024-04-24T15:56:54.255 INFO:teuthology.orchestra.run.smithi178.stdout:Preparing to unpack .../1-linux-image-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T15:56:54.353 INFO:teuthology.orchestra.run.smithi178.stdout:Unpacking linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:56:54.630 INFO:teuthology.orchestra.run.smithi204.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-105-generic. 2024-04-24T15:56:54.650 INFO:teuthology.orchestra.run.smithi204.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T15:56:54.679 INFO:teuthology.orchestra.run.smithi204.stdout:Unpacking linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:56:54.895 INFO:teuthology.orchestra.run.smithi178.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-105-generic. 2024-04-24T15:56:54.916 INFO:teuthology.orchestra.run.smithi178.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T15:56:55.131 INFO:teuthology.orchestra.run.smithi178.stdout:Unpacking linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:01.498 INFO:teuthology.orchestra.run.smithi204.stdout:Preparing to unpack .../3-linux-generic_5.15.0.105.102_amd64.deb ... 2024-04-24T15:57:01.607 INFO:teuthology.orchestra.run.smithi204.stdout:Unpacking linux-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-24T15:57:01.975 INFO:teuthology.orchestra.run.smithi204.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.105.102_amd64.deb ... 2024-04-24T15:57:02.002 INFO:teuthology.orchestra.run.smithi178.stdout:Preparing to unpack .../3-linux-generic_5.15.0.105.102_amd64.deb ... 2024-04-24T15:57:02.103 INFO:teuthology.orchestra.run.smithi204.stdout:Unpacking linux-image-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-24T15:57:02.129 INFO:teuthology.orchestra.run.smithi178.stdout:Unpacking linux-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-24T15:57:02.406 INFO:teuthology.orchestra.run.smithi204.stdout:Selecting previously unselected package linux-headers-5.15.0-105. 2024-04-24T15:57:02.419 INFO:teuthology.orchestra.run.smithi204.stdout:Preparing to unpack .../5-linux-headers-5.15.0-105_5.15.0-105.115_all.deb ... 2024-04-24T15:57:02.456 INFO:teuthology.orchestra.run.smithi204.stdout:Unpacking linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-24T15:57:02.478 INFO:teuthology.orchestra.run.smithi178.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.105.102_amd64.deb ... 2024-04-24T15:57:02.590 INFO:teuthology.orchestra.run.smithi178.stdout:Unpacking linux-image-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-24T15:57:02.902 INFO:teuthology.orchestra.run.smithi178.stdout:Selecting previously unselected package linux-headers-5.15.0-105. 2024-04-24T15:57:02.926 INFO:teuthology.orchestra.run.smithi178.stdout:Preparing to unpack .../5-linux-headers-5.15.0-105_5.15.0-105.115_all.deb ... 2024-04-24T15:57:02.968 INFO:teuthology.orchestra.run.smithi178.stdout:Unpacking linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-24T15:57:07.929 INFO:teuthology.orchestra.run.smithi204.stdout:Selecting previously unselected package linux-headers-5.15.0-105-generic. 2024-04-24T15:57:07.966 INFO:teuthology.orchestra.run.smithi204.stdout:Preparing to unpack .../6-linux-headers-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T15:57:08.003 INFO:teuthology.orchestra.run.smithi204.stdout:Unpacking linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:08.488 INFO:teuthology.orchestra.run.smithi178.stdout:Selecting previously unselected package linux-headers-5.15.0-105-generic. 2024-04-24T15:57:08.525 INFO:teuthology.orchestra.run.smithi178.stdout:Preparing to unpack .../6-linux-headers-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T15:57:08.571 INFO:teuthology.orchestra.run.smithi178.stdout:Unpacking linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:11.992 INFO:teuthology.orchestra.run.smithi204.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.105.102_amd64.deb ... 2024-04-24T15:57:12.117 INFO:teuthology.orchestra.run.smithi204.stdout:Unpacking linux-headers-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-24T15:57:12.451 INFO:teuthology.orchestra.run.smithi204.stdout:Setting up linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-24T15:57:12.572 INFO:teuthology.orchestra.run.smithi204.stdout:Setting up linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:12.698 INFO:teuthology.orchestra.run.smithi204.stdout:Setting up linux-headers-generic (5.15.0.105.102) ... 2024-04-24T15:57:12.738 INFO:teuthology.orchestra.run.smithi178.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.105.102_amd64.deb ... 2024-04-24T15:57:12.826 INFO:teuthology.orchestra.run.smithi204.stdout:Setting up linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:12.843 INFO:teuthology.orchestra.run.smithi178.stdout:Unpacking linux-headers-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-24T15:57:13.202 INFO:teuthology.orchestra.run.smithi178.stdout:Setting up linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-24T15:57:13.324 INFO:teuthology.orchestra.run.smithi178.stdout:Setting up linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:13.450 INFO:teuthology.orchestra.run.smithi178.stdout:Setting up linux-headers-generic (5.15.0.105.102) ... 2024-04-24T15:57:13.604 INFO:teuthology.orchestra.run.smithi178.stdout:Setting up linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:14.197 INFO:teuthology.orchestra.run.smithi204.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-24T15:57:14.198 INFO:teuthology.orchestra.run.smithi204.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-24T15:57:14.198 INFO:teuthology.orchestra.run.smithi204.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-105-generic 2024-04-24T15:57:14.198 INFO:teuthology.orchestra.run.smithi204.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-105-generic 2024-04-24T15:57:14.353 INFO:teuthology.orchestra.run.smithi204.stdout:Setting up linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:14.929 INFO:teuthology.orchestra.run.smithi178.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-24T15:57:14.929 INFO:teuthology.orchestra.run.smithi178.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-24T15:57:14.929 INFO:teuthology.orchestra.run.smithi178.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-105-generic 2024-04-24T15:57:14.929 INFO:teuthology.orchestra.run.smithi178.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-105-generic 2024-04-24T15:57:15.106 INFO:teuthology.orchestra.run.smithi178.stdout:Setting up linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:15.756 INFO:teuthology.orchestra.run.smithi204.stdout:Setting up linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:16.542 INFO:teuthology.orchestra.run.smithi178.stdout:Setting up linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:17.582 INFO:teuthology.orchestra.run.smithi204.stdout:Setting up linux-image-generic (5.15.0.105.102) ... 2024-04-24T15:57:17.708 INFO:teuthology.orchestra.run.smithi204.stdout:Setting up linux-generic (5.15.0.105.102) ... 2024-04-24T15:57:17.834 INFO:teuthology.orchestra.run.smithi204.stdout:Processing triggers for linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:17.906 INFO:teuthology.orchestra.run.smithi204.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-24T15:57:17.906 INFO:teuthology.orchestra.run.smithi204.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-105-generic 2024-04-24T15:57:18.101 INFO:teuthology.orchestra.run.smithi178.stdout:Setting up linux-image-generic (5.15.0.105.102) ... 2024-04-24T15:57:18.211 INFO:teuthology.orchestra.run.smithi178.stdout:Setting up linux-generic (5.15.0.105.102) ... 2024-04-24T15:57:18.338 INFO:teuthology.orchestra.run.smithi178.stdout:Processing triggers for linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T15:57:18.393 INFO:teuthology.orchestra.run.smithi178.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-24T15:57:18.393 INFO:teuthology.orchestra.run.smithi178.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-105-generic 2024-04-24T15:57:32.005 INFO:teuthology.orchestra.run.smithi204.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-24T15:57:32.005 INFO:teuthology.orchestra.run.smithi204.stdout:Sourcing file `/etc/default/grub' 2024-04-24T15:57:32.031 INFO:teuthology.orchestra.run.smithi204.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-24T15:57:32.050 INFO:teuthology.orchestra.run.smithi204.stdout:Generating grub configuration file ... 2024-04-24T15:57:32.315 INFO:teuthology.orchestra.run.smithi204.stdout:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-24T15:57:32.339 INFO:teuthology.orchestra.run.smithi204.stdout:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-24T15:57:32.612 INFO:teuthology.orchestra.run.smithi178.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-24T15:57:32.612 INFO:teuthology.orchestra.run.smithi178.stdout:Sourcing file `/etc/default/grub' 2024-04-24T15:57:32.634 INFO:teuthology.orchestra.run.smithi204.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-24T15:57:32.636 INFO:teuthology.orchestra.run.smithi178.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-24T15:57:32.639 INFO:teuthology.orchestra.run.smithi204.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-24T15:57:32.667 INFO:teuthology.orchestra.run.smithi178.stdout:Generating grub configuration file ... 2024-04-24T15:57:32.706 INFO:teuthology.orchestra.run.smithi204.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-24T15:57:32.711 INFO:teuthology.orchestra.run.smithi204.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-24T15:57:32.891 INFO:teuthology.orchestra.run.smithi204.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-24T15:57:32.891 INFO:teuthology.orchestra.run.smithi204.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-24T15:57:32.891 INFO:teuthology.orchestra.run.smithi204.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-24T15:57:32.939 INFO:teuthology.orchestra.run.smithi178.stdout:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-24T15:57:32.952 INFO:teuthology.orchestra.run.smithi204.stdout:done 2024-04-24T15:57:32.959 INFO:teuthology.orchestra.run.smithi178.stdout:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-24T15:57:33.298 INFO:teuthology.orchestra.run.smithi178.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-24T15:57:33.303 INFO:teuthology.orchestra.run.smithi178.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-24T15:57:33.375 INFO:teuthology.orchestra.run.smithi178.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-24T15:57:33.381 INFO:teuthology.orchestra.run.smithi178.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-24T15:57:33.431 DEBUG:teuthology.orchestra.run.smithi204:> dpkg -s linux-image-generic 2024-04-24T15:57:33.449 INFO:teuthology.orchestra.run.smithi204.stdout:Package: linux-image-generic 2024-04-24T15:57:33.449 INFO:teuthology.orchestra.run.smithi204.stdout:Status: install ok installed 2024-04-24T15:57:33.449 INFO:teuthology.orchestra.run.smithi204.stdout:Priority: optional 2024-04-24T15:57:33.449 INFO:teuthology.orchestra.run.smithi204.stdout:Section: kernel 2024-04-24T15:57:33.449 INFO:teuthology.orchestra.run.smithi204.stdout:Installed-Size: 21 2024-04-24T15:57:33.449 INFO:teuthology.orchestra.run.smithi204.stdout:Maintainer: Ubuntu Kernel Team 2024-04-24T15:57:33.449 INFO:teuthology.orchestra.run.smithi204.stdout:Architecture: amd64 2024-04-24T15:57:33.449 INFO:teuthology.orchestra.run.smithi204.stdout:Source: linux-meta 2024-04-24T15:57:33.449 INFO:teuthology.orchestra.run.smithi204.stdout:Version: 5.15.0.105.102 2024-04-24T15:57:33.449 INFO:teuthology.orchestra.run.smithi204.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-24T15:57:33.450 INFO:teuthology.orchestra.run.smithi204.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-24T15:57:33.450 INFO:teuthology.orchestra.run.smithi204.stdout:Recommends: thermald 2024-04-24T15:57:33.450 INFO:teuthology.orchestra.run.smithi204.stdout:Description: Generic Linux kernel image 2024-04-24T15:57:33.450 INFO:teuthology.orchestra.run.smithi204.stdout: This package will always depend on the latest generic kernel image 2024-04-24T15:57:33.450 INFO:teuthology.orchestra.run.smithi204.stdout: available. 2024-04-24T15:57:33.450 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-105-generic 2024-04-24T15:57:33.450 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-24T15:57:33.450 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-24T15:57:33.450 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-24T15:57:33.451 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi204.front.sepia.ceph.com, path=None, version=distro) 2024-04-24T15:57:33.451 DEBUG:teuthology.orchestra.run.smithi204:> sudo apt-get clean 2024-04-24T15:57:33.536 INFO:teuthology.orchestra.run.smithi178.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-24T15:57:33.536 INFO:teuthology.orchestra.run.smithi178.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-24T15:57:33.536 INFO:teuthology.orchestra.run.smithi178.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-24T15:57:33.562 INFO:teuthology.orchestra.run.smithi178.stdout:done 2024-04-24T15:57:33.654 DEBUG:teuthology.orchestra.run.smithi204:> sudo apt-get update 2024-04-24T15:57:33.797 INFO:teuthology.orchestra.run.smithi204.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-24T15:57:33.806 INFO:teuthology.orchestra.run.smithi204.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-24T15:57:33.828 INFO:teuthology.orchestra.run.smithi204.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-24T15:57:33.911 INFO:teuthology.orchestra.run.smithi204.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-24T15:57:34.022 DEBUG:teuthology.orchestra.run.smithi178:> dpkg -s linux-image-generic 2024-04-24T15:57:34.095 INFO:teuthology.orchestra.run.smithi178.stdout:Package: linux-image-generic 2024-04-24T15:57:34.095 INFO:teuthology.orchestra.run.smithi178.stdout:Status: install ok installed 2024-04-24T15:57:34.095 INFO:teuthology.orchestra.run.smithi178.stdout:Priority: optional 2024-04-24T15:57:34.095 INFO:teuthology.orchestra.run.smithi178.stdout:Section: kernel 2024-04-24T15:57:34.095 INFO:teuthology.orchestra.run.smithi178.stdout:Installed-Size: 21 2024-04-24T15:57:34.095 INFO:teuthology.orchestra.run.smithi178.stdout:Maintainer: Ubuntu Kernel Team 2024-04-24T15:57:34.095 INFO:teuthology.orchestra.run.smithi178.stdout:Architecture: amd64 2024-04-24T15:57:34.095 INFO:teuthology.orchestra.run.smithi178.stdout:Source: linux-meta 2024-04-24T15:57:34.095 INFO:teuthology.orchestra.run.smithi178.stdout:Version: 5.15.0.105.102 2024-04-24T15:57:34.096 INFO:teuthology.orchestra.run.smithi178.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-24T15:57:34.096 INFO:teuthology.orchestra.run.smithi178.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-24T15:57:34.096 INFO:teuthology.orchestra.run.smithi178.stdout:Recommends: thermald 2024-04-24T15:57:34.096 INFO:teuthology.orchestra.run.smithi178.stdout:Description: Generic Linux kernel image 2024-04-24T15:57:34.096 INFO:teuthology.orchestra.run.smithi178.stdout: This package will always depend on the latest generic kernel image 2024-04-24T15:57:34.096 INFO:teuthology.orchestra.run.smithi178.stdout: available. 2024-04-24T15:57:34.096 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-105-generic 2024-04-24T15:57:34.096 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-24T15:57:34.096 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-24T15:57:34.096 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-24T15:57:34.097 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi178.front.sepia.ceph.com, path=None, version=distro) 2024-04-24T15:57:34.097 DEBUG:teuthology.orchestra.run.smithi178:> sudo apt-get clean 2024-04-24T15:57:34.316 DEBUG:teuthology.orchestra.run.smithi178:> sudo apt-get update 2024-04-24T15:57:34.455 INFO:teuthology.orchestra.run.smithi178.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-24T15:57:34.570 INFO:teuthology.orchestra.run.smithi178.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-24T15:57:34.651 INFO:teuthology.orchestra.run.smithi178.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-24T15:57:34.756 INFO:teuthology.orchestra.run.smithi178.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-24T15:57:35.203 INFO:teuthology.orchestra.run.smithi204.stdout:Reading package lists... 2024-04-24T15:57:35.221 DEBUG:teuthology.orchestra.run.smithi204:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-24T15:57:35.283 INFO:teuthology.orchestra.run.smithi204.stdout:Reading package lists... 2024-04-24T15:57:35.494 INFO:teuthology.orchestra.run.smithi204.stdout:Building dependency tree... 2024-04-24T15:57:35.494 INFO:teuthology.orchestra.run.smithi204.stdout:Reading state information... 2024-04-24T15:57:35.676 INFO:teuthology.orchestra.run.smithi204.stdout:linux-image-generic is already the newest version (5.15.0.105.102). 2024-04-24T15:57:35.676 INFO:teuthology.orchestra.run.smithi204.stdout:The following packages were automatically installed and are no longer required: 2024-04-24T15:57:35.676 INFO:teuthology.orchestra.run.smithi204.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-24T15:57:35.676 INFO:teuthology.orchestra.run.smithi204.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-24T15:57:35.676 INFO:teuthology.orchestra.run.smithi204.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-24T15:57:35.677 INFO:teuthology.orchestra.run.smithi204.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-24T15:57:35.677 INFO:teuthology.orchestra.run.smithi204.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-24T15:57:35.677 INFO:teuthology.orchestra.run.smithi204.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-24T15:57:35.717 INFO:teuthology.orchestra.run.smithi204.stdout:0 upgraded, 0 newly installed, 0 to remove and 315 not upgraded. 2024-04-24T15:57:35.719 DEBUG:teuthology.orchestra.run.smithi204:> dpkg -s linux-image-generic 2024-04-24T15:57:35.735 INFO:teuthology.orchestra.run.smithi204.stdout:Package: linux-image-generic 2024-04-24T15:57:35.735 INFO:teuthology.orchestra.run.smithi204.stdout:Status: install ok installed 2024-04-24T15:57:35.735 INFO:teuthology.orchestra.run.smithi204.stdout:Priority: optional 2024-04-24T15:57:35.735 INFO:teuthology.orchestra.run.smithi204.stdout:Section: kernel 2024-04-24T15:57:35.735 INFO:teuthology.orchestra.run.smithi204.stdout:Installed-Size: 21 2024-04-24T15:57:35.735 INFO:teuthology.orchestra.run.smithi204.stdout:Maintainer: Ubuntu Kernel Team 2024-04-24T15:57:35.735 INFO:teuthology.orchestra.run.smithi204.stdout:Architecture: amd64 2024-04-24T15:57:35.735 INFO:teuthology.orchestra.run.smithi204.stdout:Source: linux-meta 2024-04-24T15:57:35.735 INFO:teuthology.orchestra.run.smithi204.stdout:Version: 5.15.0.105.102 2024-04-24T15:57:35.736 INFO:teuthology.orchestra.run.smithi204.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-24T15:57:35.736 INFO:teuthology.orchestra.run.smithi204.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-24T15:57:35.736 INFO:teuthology.orchestra.run.smithi204.stdout:Recommends: thermald 2024-04-24T15:57:35.736 INFO:teuthology.orchestra.run.smithi204.stdout:Description: Generic Linux kernel image 2024-04-24T15:57:35.736 INFO:teuthology.orchestra.run.smithi204.stdout: This package will always depend on the latest generic kernel image 2024-04-24T15:57:35.736 INFO:teuthology.orchestra.run.smithi204.stdout: available. 2024-04-24T15:57:35.736 DEBUG:teuthology.orchestra.run.smithi204:> mktemp 2024-04-24T15:57:35.783 INFO:teuthology.orchestra.run.smithi204.stdout:/tmp/tmp.Fo1IxNk5Er 2024-04-24T15:57:35.783 DEBUG:teuthology.orchestra.run.smithi204:> sudo cp /boot/grub/grub.cfg /tmp/tmp.Fo1IxNk5Er 2024-04-24T15:57:35.838 DEBUG:teuthology.orchestra.run.smithi204:> sudo chmod 0666 /tmp/tmp.Fo1IxNk5Er 2024-04-24T15:57:35.909 INFO:teuthology.orchestra.run.smithi178.stdout:Reading package lists... 2024-04-24T15:57:35.927 DEBUG:teuthology.orchestra.run.smithi178:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-24T15:57:35.955 DEBUG:teuthology.orchestra.remote:smithi204:/tmp/tmp.Fo1IxNk5Er is 10KB 2024-04-24T15:57:35.968 DEBUG:teuthology.orchestra.run.smithi204:> rm -fr /tmp/tmp.Fo1IxNk5Er 2024-04-24T15:57:35.974 DEBUG:teuthology.orchestra.run.smithi204:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-24T15:57:35.978 INFO:teuthology.orchestra.run.smithi178.stdout:Reading package lists... 2024-04-24T15:57:36.026 DEBUG:teuthology.orchestra.run.smithi204:> set -ex 2024-04-24T15:57:36.026 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-24T15:57:36.026 DEBUG:teuthology.orchestra.run.smithi204:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-24T15:57:36.090 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-105-generic 2024-04-24T15:57:36.091 DEBUG:teuthology.orchestra.run.smithi204:> sudo update-grub 2024-04-24T15:57:36.156 INFO:teuthology.orchestra.run.smithi178.stdout:Building dependency tree... 2024-04-24T15:57:36.156 INFO:teuthology.orchestra.run.smithi178.stdout:Reading state information... 2024-04-24T15:57:36.312 INFO:teuthology.orchestra.run.smithi178.stdout:linux-image-generic is already the newest version (5.15.0.105.102). 2024-04-24T15:57:36.312 INFO:teuthology.orchestra.run.smithi178.stdout:The following packages were automatically installed and are no longer required: 2024-04-24T15:57:36.312 INFO:teuthology.orchestra.run.smithi178.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-24T15:57:36.312 INFO:teuthology.orchestra.run.smithi178.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-24T15:57:36.312 INFO:teuthology.orchestra.run.smithi178.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-24T15:57:36.313 INFO:teuthology.orchestra.run.smithi178.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-24T15:57:36.313 INFO:teuthology.orchestra.run.smithi178.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-24T15:57:36.313 INFO:teuthology.orchestra.run.smithi178.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-24T15:57:36.352 INFO:teuthology.orchestra.run.smithi178.stdout:0 upgraded, 0 newly installed, 0 to remove and 315 not upgraded. 2024-04-24T15:57:36.354 DEBUG:teuthology.orchestra.run.smithi178:> dpkg -s linux-image-generic 2024-04-24T15:57:36.411 INFO:teuthology.orchestra.run.smithi178.stdout:Package: linux-image-generic 2024-04-24T15:57:36.411 INFO:teuthology.orchestra.run.smithi178.stdout:Status: install ok installed 2024-04-24T15:57:36.411 INFO:teuthology.orchestra.run.smithi178.stdout:Priority: optional 2024-04-24T15:57:36.411 INFO:teuthology.orchestra.run.smithi178.stdout:Section: kernel 2024-04-24T15:57:36.411 INFO:teuthology.orchestra.run.smithi178.stdout:Installed-Size: 21 2024-04-24T15:57:36.411 INFO:teuthology.orchestra.run.smithi178.stdout:Maintainer: Ubuntu Kernel Team 2024-04-24T15:57:36.411 INFO:teuthology.orchestra.run.smithi178.stdout:Architecture: amd64 2024-04-24T15:57:36.411 INFO:teuthology.orchestra.run.smithi178.stdout:Source: linux-meta 2024-04-24T15:57:36.411 INFO:teuthology.orchestra.run.smithi178.stdout:Version: 5.15.0.105.102 2024-04-24T15:57:36.411 INFO:teuthology.orchestra.run.smithi178.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-105), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-04-24T15:57:36.412 INFO:teuthology.orchestra.run.smithi178.stdout:Depends: linux-image-5.15.0-105-generic, linux-modules-extra-5.15.0-105-generic, linux-firmware, intel-microcode, amd64-microcode 2024-04-24T15:57:36.412 INFO:teuthology.orchestra.run.smithi178.stdout:Recommends: thermald 2024-04-24T15:57:36.412 INFO:teuthology.orchestra.run.smithi178.stdout:Description: Generic Linux kernel image 2024-04-24T15:57:36.412 INFO:teuthology.orchestra.run.smithi178.stdout: This package will always depend on the latest generic kernel image 2024-04-24T15:57:36.412 INFO:teuthology.orchestra.run.smithi178.stdout: available. 2024-04-24T15:57:36.412 DEBUG:teuthology.orchestra.run.smithi178:> mktemp 2024-04-24T15:57:36.456 INFO:teuthology.orchestra.run.smithi178.stdout:/tmp/tmp.P3FkbpJWMM 2024-04-24T15:57:36.456 DEBUG:teuthology.orchestra.run.smithi178:> sudo cp /boot/grub/grub.cfg /tmp/tmp.P3FkbpJWMM 2024-04-24T15:57:36.522 DEBUG:teuthology.orchestra.run.smithi178:> sudo chmod 0666 /tmp/tmp.P3FkbpJWMM 2024-04-24T15:57:36.634 DEBUG:teuthology.orchestra.remote:smithi178:/tmp/tmp.P3FkbpJWMM is 10KB 2024-04-24T15:57:36.650 DEBUG:teuthology.orchestra.run.smithi178:> rm -fr /tmp/tmp.P3FkbpJWMM 2024-04-24T15:57:36.655 DEBUG:teuthology.orchestra.run.smithi178:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-24T15:57:36.709 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T15:57:36.709 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-24T15:57:36.709 DEBUG:teuthology.orchestra.run.smithi178:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-24T15:57:36.791 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-105-generic 2024-04-24T15:57:36.791 DEBUG:teuthology.orchestra.run.smithi178:> sudo update-grub 2024-04-24T15:57:37.297 INFO:teuthology.orchestra.run.smithi204.stderr:Sourcing file `/etc/default/grub' 2024-04-24T15:57:37.298 INFO:teuthology.orchestra.run.smithi204.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-24T15:57:37.302 INFO:teuthology.orchestra.run.smithi204.stderr:Generating grub configuration file ... 2024-04-24T15:57:37.481 INFO:teuthology.orchestra.run.smithi204.stderr:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-24T15:57:37.487 INFO:teuthology.orchestra.run.smithi204.stderr:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-24T15:57:37.752 INFO:teuthology.orchestra.run.smithi204.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-24T15:57:37.757 INFO:teuthology.orchestra.run.smithi204.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-24T15:57:37.798 INFO:teuthology.orchestra.run.smithi204.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-24T15:57:37.804 INFO:teuthology.orchestra.run.smithi204.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-24T15:57:37.914 INFO:teuthology.orchestra.run.smithi204.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-24T15:57:37.914 INFO:teuthology.orchestra.run.smithi204.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-24T15:57:37.914 INFO:teuthology.orchestra.run.smithi204.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-24T15:57:37.936 INFO:teuthology.orchestra.run.smithi204.stderr:done 2024-04-24T15:57:37.938 DEBUG:teuthology.orchestra.run.smithi204:> sudo shutdown -r now 2024-04-24T15:57:38.044 INFO:teuthology.orchestra.run.smithi178.stderr:Sourcing file `/etc/default/grub' 2024-04-24T15:57:38.046 INFO:teuthology.orchestra.run.smithi178.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-24T15:57:38.049 INFO:teuthology.orchestra.run.smithi178.stderr:Generating grub configuration file ... 2024-04-24T15:57:38.210 INFO:teuthology.orchestra.run.smithi178.stderr:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-24T15:57:38.216 INFO:teuthology.orchestra.run.smithi178.stderr:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-24T15:57:38.476 INFO:teuthology.orchestra.run.smithi178.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-24T15:57:38.482 INFO:teuthology.orchestra.run.smithi178.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-24T15:57:38.525 INFO:teuthology.orchestra.run.smithi178.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-24T15:57:38.530 INFO:teuthology.orchestra.run.smithi178.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-24T15:57:38.655 INFO:teuthology.orchestra.run.smithi178.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-24T15:57:38.655 INFO:teuthology.orchestra.run.smithi178.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-24T15:57:38.655 INFO:teuthology.orchestra.run.smithi178.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-24T15:57:38.667 INFO:teuthology.orchestra.run.smithi178.stderr:done 2024-04-24T15:57:38.668 DEBUG:teuthology.orchestra.run.smithi178:> sudo shutdown -r now 2024-04-24T15:58:07.970 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-24T15:58:07.971 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi204.front.sepia.ceph.com' 2024-04-24T15:58:07.972 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi204.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T15:58:08.672 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-24T15:58:08.672 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi178.front.sepia.ceph.com' 2024-04-24T15:58:08.673 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi178.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T15:58:42.463 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.204 2024-04-24T15:58:43.234 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.178 2024-04-24T15:58:51.470 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi204.front.sepia.ceph.com' 2024-04-24T15:58:51.471 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi204.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T15:58:52.236 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi178.front.sepia.ceph.com' 2024-04-24T15:58:52.237 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi178.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T15:58:55.294 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.178 2024-04-24T15:59:07.304 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi178.front.sepia.ceph.com' 2024-04-24T15:59:07.304 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi178.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T15:59:09.854 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.204 2024-04-24T15:59:21.866 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi204.front.sepia.ceph.com' 2024-04-24T15:59:21.867 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi204.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T15:59:23.907 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.204 2024-04-24T15:59:38.908 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi204.front.sepia.ceph.com' 2024-04-24T15:59:38.909 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi204.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T15:59:39.146 DEBUG:teuthology.orchestra.run.smithi178:> true 2024-04-24T15:59:39.234 DEBUG:teuthology.orchestra.run.smithi204:> true 2024-04-24T15:59:39.789 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi204.front.sepia.ceph.com' 2024-04-24T15:59:39.789 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-105-generic"... 2024-04-24T15:59:39.790 DEBUG:teuthology.orchestra.run.smithi204:> uname -r 2024-04-24T15:59:39.838 INFO:teuthology.orchestra.run.smithi204.stdout:5.15.0-105-generic 2024-04-24T15:59:39.838 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-105-generic vs 5.15.0-105-generic 2024-04-24T15:59:39.838 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-24T15:59:39.838 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-24T15:59:40.117 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi178.front.sepia.ceph.com' 2024-04-24T15:59:40.117 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-105-generic"... 2024-04-24T15:59:40.117 DEBUG:teuthology.orchestra.run.smithi178:> uname -r 2024-04-24T15:59:40.164 INFO:teuthology.orchestra.run.smithi178.stdout:5.15.0-105-generic 2024-04-24T15:59:40.164 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-105-generic vs 5.15.0-105-generic 2024-04-24T15:59:40.164 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-24T15:59:40.164 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-24T15:59:40.839 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-24T15:59:40.839 DEBUG:teuthology.orchestra.run.smithi204:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-24T15:59:41.165 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-24T15:59:41.165 DEBUG:teuthology.orchestra.run.smithi178:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-24T15:59:41.211 INFO:teuthology.orchestra.run.smithi204.stdout:ttyS1 2024-04-24T15:59:41.237 INFO:teuthology.orchestra.run.smithi178.stdout:ttyS1 2024-04-24T15:59:41.256 DEBUG:teuthology.parallel:result is None 2024-04-24T15:59:41.269 DEBUG:teuthology.parallel:result is None 2024-04-24T15:59:41.269 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-24T15:59:41.276 INFO:teuthology.task.internal:Creating test directory... 2024-04-24T15:59:41.276 DEBUG:teuthology.orchestra.run.smithi178:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-24T15:59:41.278 DEBUG:teuthology.orchestra.run.smithi204:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-24T15:59:41.284 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-24T15:59:41.306 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-24T15:59:41.340 INFO:teuthology.task.internal:Creating archive directory... 2024-04-24T15:59:41.340 DEBUG:teuthology.orchestra.run.smithi178:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-24T15:59:41.343 DEBUG:teuthology.orchestra.run.smithi204:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-24T15:59:41.361 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-24T15:59:41.373 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-24T15:59:41.373 DEBUG:teuthology.orchestra.run.smithi178:> 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-04-24T15:59:41.401 DEBUG:teuthology.orchestra.run.smithi204:> 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-04-24T15:59:41.422 INFO:teuthology.orchestra.run.smithi204.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-24T15:59:41.430 INFO:teuthology.orchestra.run.smithi204.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-24T15:59:41.430 INFO:teuthology.orchestra.run.smithi178.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-24T15:59:41.437 INFO:teuthology.orchestra.run.smithi178.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-24T15:59:41.439 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-24T15:59:41.446 INFO:teuthology.task.internal:Configuring sudo... 2024-04-24T15:59:41.446 DEBUG:teuthology.orchestra.run.smithi178:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-24T15:59:41.489 DEBUG:teuthology.orchestra.run.smithi204:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-24T15:59:41.502 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-24T15:59:41.511 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-24T15:59:41.511 DEBUG:teuthology.orchestra.run.smithi178:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-24T15:59:41.545 DEBUG:teuthology.orchestra.run.smithi204:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-24T15:59:41.550 DEBUG:teuthology.orchestra.run.smithi178:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-24T15:59:41.597 DEBUG:teuthology.orchestra.run.smithi178:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-24T15:59:41.644 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T15:59:41.644 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-24T15:59:41.711 DEBUG:teuthology.orchestra.run.smithi204:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-24T15:59:41.717 DEBUG:teuthology.orchestra.run.smithi204:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-24T15:59:41.766 DEBUG:teuthology.orchestra.run.smithi204:> set -ex 2024-04-24T15:59:41.766 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-24T15:59:41.837 DEBUG:teuthology.orchestra.run.smithi178:> sudo service rsyslog restart 2024-04-24T15:59:41.840 DEBUG:teuthology.orchestra.run.smithi204:> sudo service rsyslog restart 2024-04-24T15:59:41.916 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-24T15:59:41.924 INFO:teuthology.task.internal:Starting timer... 2024-04-24T15:59:41.924 INFO:teuthology.run_tasks:Running task pcp... 2024-04-24T15:59:41.969 INFO:teuthology.run_tasks:Running task selinux... 2024-04-24T15:59:42.001 DEBUG:teuthology.task.selinux:Excluding smithi178: OS 'ubuntu' does not support SELinux 2024-04-24T15:59:42.001 DEBUG:teuthology.task.selinux:Excluding smithi204: OS 'ubuntu' does not support SELinux 2024-04-24T15:59:42.001 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-24T15:59:42.001 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-04-24T15:59:42.002 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-24T15:59:42.002 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-24T15:59:42.034 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-04-24T15:59:42.040 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-04-24T15:59:42.178 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-24T15:59:42.193 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-04-24T15:59:42.194 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi178.front.sepia.ceph.com,smithi204.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-24T16:06:46.820 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi178.front.sepia.ceph.com'), Remote(name='ubuntu@smithi204.front.sepia.ceph.com')] 2024-04-24T16:06:46.821 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi178.front.sepia.ceph.com' 2024-04-24T16:06:46.823 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi178.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T16:06:46.905 DEBUG:teuthology.orchestra.run.smithi178:> true 2024-04-24T16:06:46.982 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi178.front.sepia.ceph.com' 2024-04-24T16:06:46.982 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi204.front.sepia.ceph.com' 2024-04-24T16:06:46.983 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi204.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T16:06:47.063 DEBUG:teuthology.orchestra.run.smithi204:> true 2024-04-24T16:06:47.142 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi204.front.sepia.ceph.com' 2024-04-24T16:06:47.143 INFO:teuthology.run_tasks:Running task clock... 2024-04-24T16:06:47.153 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-24T16:06:47.154 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-24T16:06:47.154 DEBUG:teuthology.orchestra.run.smithi178:> 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-04-24T16:06:47.157 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-24T16:06:47.157 DEBUG:teuthology.orchestra.run.smithi204:> 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-04-24T16:06:47.185 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-24T16:06:47.185 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: Command line: ntpd -gq 2024-04-24T16:06:47.185 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: ---------------------------------------------------- 2024-04-24T16:06:47.185 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: ntp-4 is maintained by Network Time Foundation, 2024-04-24T16:06:47.185 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-24T16:06:47.185 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: corporation. Support and training for ntp-4 are 2024-04-24T16:06:47.186 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: available at https://www.nwtime.org/support 2024-04-24T16:06:47.186 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: ---------------------------------------------------- 2024-04-24T16:06:47.186 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: proto: precision = 0.059 usec (-24) 2024-04-24T16:06:47.186 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: basedate set to 2022-02-04 2024-04-24T16:06:47.186 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: gps base set to 2022-02-06 (week 2196) 2024-04-24T16:06:47.187 INFO:teuthology.orchestra.run.smithi178.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-24T16:06:47.187 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-24T16:06:47.187 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: restrict ::: KOD does nothing without LIMITED. 2024-04-24T16:06:47.187 INFO:teuthology.orchestra.run.smithi178.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-24T16:06:47.188 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: Listen and drop on 0 v6wildcard [::]:123 2024-04-24T16:06:47.189 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-24T16:06:47.189 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: Listen normally on 2 lo 127.0.0.1:123 2024-04-24T16:06:47.189 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: Listen normally on 3 enp3s0f1 172.21.15.178:123 2024-04-24T16:06:47.189 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: Listen normally on 4 lo [::1]:123 2024-04-24T16:06:47.189 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7ef9%5]:123 2024-04-24T16:06:47.189 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:47 ntpd[17209]: Listening on routing socket on fd #22 for interface updates 2024-04-24T16:06:47.217 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-24T16:06:47.217 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: Command line: ntpd -gq 2024-04-24T16:06:47.217 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: ---------------------------------------------------- 2024-04-24T16:06:47.217 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: ntp-4 is maintained by Network Time Foundation, 2024-04-24T16:06:47.217 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-24T16:06:47.217 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: corporation. Support and training for ntp-4 are 2024-04-24T16:06:47.217 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: available at https://www.nwtime.org/support 2024-04-24T16:06:47.217 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: ---------------------------------------------------- 2024-04-24T16:06:47.218 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: proto: precision = 0.044 usec (-24) 2024-04-24T16:06:47.218 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: basedate set to 2022-02-04 2024-04-24T16:06:47.218 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: gps base set to 2022-02-06 (week 2196) 2024-04-24T16:06:47.218 INFO:teuthology.orchestra.run.smithi204.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-24T16:06:47.219 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-24T16:06:47.219 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: restrict ::: KOD does nothing without LIMITED. 2024-04-24T16:06:47.219 INFO:teuthology.orchestra.run.smithi204.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-24T16:06:47.220 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: Listen and drop on 0 v6wildcard [::]:123 2024-04-24T16:06:47.220 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-24T16:06:47.220 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: Listen normally on 2 lo 127.0.0.1:123 2024-04-24T16:06:47.220 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: Listen normally on 3 enp3s0f1 172.21.15.204:123 2024-04-24T16:06:47.221 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: Listen normally on 4 lo [::1]:123 2024-04-24T16:06:47.221 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:77ab%5]:123 2024-04-24T16:06:47.221 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:47 ntpd[17209]: Listening on routing socket on fd #22 for interface updates 2024-04-24T16:06:48.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:48 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:48.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:48 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:48.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:48 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:48.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:48 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:48.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:48 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:48.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:48 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:48.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:48 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:48.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:48 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:48.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:48 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:48.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:48 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:49.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:49 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:49.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:49 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:49.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:49 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:49.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:49 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:49.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:49 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:49.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:49 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:49.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:49 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:49.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:49 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:49.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:49 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:49.188 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:49 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:49.188 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:49 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:49.188 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:49 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:49.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:49 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:49.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:49 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:49.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:49 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:49.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:49 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:49.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:49 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:49.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:49 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:49.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:49 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:49.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:49 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:49.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:49 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:49.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:49 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:49.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:49 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:49.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:49 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:50.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:50 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:50.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:50 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:50.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:50 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:50.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:50 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:50.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:50 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:50.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:50 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:51.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:51 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:51.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:51 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:51.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:51 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:51.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:51 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:51.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:51 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:51.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:51 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:51.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:51 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:51.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:51 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:51.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:51 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:51.188 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:51 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:51.188 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:51 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:51.188 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:51 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:51.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:51 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:51.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:51 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:51.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:51 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:51.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:51 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:51.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:51 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:51.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:51 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:51.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:51 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:51.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:51 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:51.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:51 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:51.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:51 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:51.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:51 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:51.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:51 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:52.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:52 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:52.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:52 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:52.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:52 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:52.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:52 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:52.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:52 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:52.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:52 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:52.217 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:52 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:52.217 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:52 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:52.217 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:52 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:52.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:52 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:52.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:52 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:52.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:52 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:53.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:53 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:53.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:53 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:53.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:53 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:53.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:53 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:53.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:53 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:53.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:53 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:53.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:53 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:53.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:53 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:53.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:53 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:53.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:53 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:53.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:53 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:53.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:53 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:53.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:53 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:53.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:53 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:53.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:53 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:53.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:53 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:53.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:53 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:53.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:53 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:53.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:53 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:53.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:53 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:53.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:53 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:53.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:53 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:53.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:53 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:53.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:53 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:54.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:54 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:54.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:54 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:54.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:54 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:54.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:54 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:54.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:54 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:54.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:54 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:54.217 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:54 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:54.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:54 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:54.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:54 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:54.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:54 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:54.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:54 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:54.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:54 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:55.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:55 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:55.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:55 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:55.186 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:55 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:55.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:55 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:55.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:55 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:55.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:55 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:55.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:55 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:55.187 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:55 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:55.187 INFO:teuthology.orchestra.run.smithi178.stdout:24 Apr 16:06:55 ntpd[17209]: ntpd: time slew -0.001626 s 2024-04-24T16:06:55.187 INFO:teuthology.orchestra.run.smithi178.stdout:ntpd: time slew -0.001626s 2024-04-24T16:06:55.188 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:55 ntpd[17209]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-24T16:06:55.188 INFO:teuthology.orchestra.run.smithi178.stderr:24 Apr 16:06:55 ntpd[17209]: can't open /var/log/ntpstats/loopstats.20240424: Permission denied 2024-04-24T16:06:55.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:55 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:55.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:55 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:55.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:55 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:55.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:55 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:55.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:55 ntpd[17209]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T16:06:55.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:55 ntpd[17209]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T16:06:55.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:55 ntpd[17209]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T16:06:55.218 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:55 ntpd[17209]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T16:06:55.219 INFO:teuthology.orchestra.run.smithi204.stdout:24 Apr 16:06:55 ntpd[17209]: ntpd: time slew -0.001861 s 2024-04-24T16:06:55.219 INFO:teuthology.orchestra.run.smithi204.stdout:ntpd: time slew -0.001861s 2024-04-24T16:06:55.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:55 ntpd[17209]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-24T16:06:55.219 INFO:teuthology.orchestra.run.smithi204.stderr:24 Apr 16:06:55 ntpd[17209]: can't open /var/log/ntpstats/loopstats.20240424: Permission denied 2024-04-24T16:06:55.236 INFO:teuthology.orchestra.run.smithi178.stdout: remote refid st t when poll reach delay offset jitter 2024-04-24T16:06:55.236 INFO:teuthology.orchestra.run.smithi178.stdout:============================================================================== 2024-04-24T16:06:55.236 INFO:teuthology.orchestra.run.smithi178.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T16:06:55.236 INFO:teuthology.orchestra.run.smithi178.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T16:06:55.236 INFO:teuthology.orchestra.run.smithi178.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T16:06:55.236 INFO:teuthology.orchestra.run.smithi178.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T16:06:55.337 INFO:teuthology.orchestra.run.smithi204.stdout: remote refid st t when poll reach delay offset jitter 2024-04-24T16:06:55.338 INFO:teuthology.orchestra.run.smithi204.stdout:============================================================================== 2024-04-24T16:06:55.338 INFO:teuthology.orchestra.run.smithi204.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T16:06:55.338 INFO:teuthology.orchestra.run.smithi204.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T16:06:55.338 INFO:teuthology.orchestra.run.smithi204.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T16:06:55.338 INFO:teuthology.orchestra.run.smithi204.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T16:06:55.339 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-04-24T16:06:55.351 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-04-24T16:06:55.351 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T16:06:55.351 DEBUG:teuthology.orchestra.run.smithi178:> dd if=/scratch_devs of=/dev/stdout 2024-04-24T16:06:55.357 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-04-24T16:06:55.357 DEBUG:teuthology.orchestra.run.smithi178:> stat /dev/vg_nvme/lv_1 2024-04-24T16:06:55.403 INFO:teuthology.orchestra.run.smithi178.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-24T16:06:55.403 INFO:teuthology.orchestra.run.smithi178.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T16:06:55.403 INFO:teuthology.orchestra.run.smithi178.stdout:Device: 5h/5d Inode: 889 Links: 1 2024-04-24T16:06:55.403 INFO:teuthology.orchestra.run.smithi178.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T16:06:55.403 INFO:teuthology.orchestra.run.smithi178.stdout:Access: 2024-04-24 16:03:28.073193764 +0000 2024-04-24T16:06:55.403 INFO:teuthology.orchestra.run.smithi178.stdout:Modify: 2024-04-24 16:03:28.069193800 +0000 2024-04-24T16:06:55.403 INFO:teuthology.orchestra.run.smithi178.stdout:Change: 2024-04-24 16:03:28.069193800 +0000 2024-04-24T16:06:55.403 INFO:teuthology.orchestra.run.smithi178.stdout: Birth: - 2024-04-24T16:06:55.404 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-24T16:06:55.457 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records in 2024-04-24T16:06:55.458 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records out 2024-04-24T16:06:55.458 INFO:teuthology.orchestra.run.smithi178.stderr:512 bytes copied, 0.000321661 s, 1.6 MB/s 2024-04-24T16:06:55.459 DEBUG:teuthology.orchestra.run.smithi178:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-24T16:06:55.508 DEBUG:teuthology.orchestra.run.smithi178:> stat /dev/vg_nvme/lv_2 2024-04-24T16:06:55.554 INFO:teuthology.orchestra.run.smithi178.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-24T16:06:55.555 INFO:teuthology.orchestra.run.smithi178.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T16:06:55.555 INFO:teuthology.orchestra.run.smithi178.stdout:Device: 5h/5d Inode: 906 Links: 1 2024-04-24T16:06:55.555 INFO:teuthology.orchestra.run.smithi178.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T16:06:55.555 INFO:teuthology.orchestra.run.smithi178.stdout:Access: 2024-04-24 16:03:28.813187154 +0000 2024-04-24T16:06:55.555 INFO:teuthology.orchestra.run.smithi178.stdout:Modify: 2024-04-24 16:03:28.557189440 +0000 2024-04-24T16:06:55.555 INFO:teuthology.orchestra.run.smithi178.stdout:Change: 2024-04-24 16:03:28.557189440 +0000 2024-04-24T16:06:55.555 INFO:teuthology.orchestra.run.smithi178.stdout: Birth: - 2024-04-24T16:06:55.555 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-24T16:06:55.609 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records in 2024-04-24T16:06:55.609 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records out 2024-04-24T16:06:55.609 INFO:teuthology.orchestra.run.smithi178.stderr:512 bytes copied, 0.000297005 s, 1.7 MB/s 2024-04-24T16:06:55.610 DEBUG:teuthology.orchestra.run.smithi178:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-24T16:06:55.660 DEBUG:teuthology.orchestra.run.smithi178:> stat /dev/vg_nvme/lv_3 2024-04-24T16:06:55.707 INFO:teuthology.orchestra.run.smithi178.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-24T16:06:55.707 INFO:teuthology.orchestra.run.smithi178.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T16:06:55.707 INFO:teuthology.orchestra.run.smithi178.stdout:Device: 5h/5d Inode: 918 Links: 1 2024-04-24T16:06:55.707 INFO:teuthology.orchestra.run.smithi178.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T16:06:55.707 INFO:teuthology.orchestra.run.smithi178.stdout:Access: 2024-04-24 16:03:29.025185260 +0000 2024-04-24T16:06:55.707 INFO:teuthology.orchestra.run.smithi178.stdout:Modify: 2024-04-24 16:03:29.021185296 +0000 2024-04-24T16:06:55.707 INFO:teuthology.orchestra.run.smithi178.stdout:Change: 2024-04-24 16:03:29.021185296 +0000 2024-04-24T16:06:55.707 INFO:teuthology.orchestra.run.smithi178.stdout: Birth: - 2024-04-24T16:06:55.707 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-24T16:06:55.760 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records in 2024-04-24T16:06:55.760 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records out 2024-04-24T16:06:55.761 INFO:teuthology.orchestra.run.smithi178.stderr:512 bytes copied, 0.000293514 s, 1.7 MB/s 2024-04-24T16:06:55.762 DEBUG:teuthology.orchestra.run.smithi178:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-24T16:06:55.815 DEBUG:teuthology.orchestra.run.smithi178:> stat /dev/vg_nvme/lv_4 2024-04-24T16:06:55.862 INFO:teuthology.orchestra.run.smithi178.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-24T16:06:55.862 INFO:teuthology.orchestra.run.smithi178.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T16:06:55.862 INFO:teuthology.orchestra.run.smithi178.stdout:Device: 5h/5d Inode: 941 Links: 1 2024-04-24T16:06:55.862 INFO:teuthology.orchestra.run.smithi178.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T16:06:55.862 INFO:teuthology.orchestra.run.smithi178.stdout:Access: 2024-04-24 16:03:29.865177757 +0000 2024-04-24T16:06:55.862 INFO:teuthology.orchestra.run.smithi178.stdout:Modify: 2024-04-24 16:03:29.573180366 +0000 2024-04-24T16:06:55.863 INFO:teuthology.orchestra.run.smithi178.stdout:Change: 2024-04-24 16:03:29.573180366 +0000 2024-04-24T16:06:55.863 INFO:teuthology.orchestra.run.smithi178.stdout: Birth: - 2024-04-24T16:06:55.863 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-24T16:06:55.916 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records in 2024-04-24T16:06:55.916 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records out 2024-04-24T16:06:55.916 INFO:teuthology.orchestra.run.smithi178.stderr:512 bytes copied, 0.000293634 s, 1.7 MB/s 2024-04-24T16:06:55.917 DEBUG:teuthology.orchestra.run.smithi178:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-24T16:06:55.968 DEBUG:teuthology.orchestra.run.smithi178:> 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-04-24T16:06:56.106 INFO:teuthology.orchestra.run.smithi178.stdout:loop 2024-04-24T16:06:56.108 INFO:tasks.nvme_loop:Connecting nvme_loop smithi178:/dev/vg_nvme/lv_1... 2024-04-24T16:06:56.108 DEBUG:teuthology.orchestra.run.smithi178:> 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-04-24T16:06:56.124 INFO:teuthology.orchestra.run.smithi178.stdout:1 2024-04-24T16:06:56.144 INFO:teuthology.orchestra.run.smithi178.stdout:/dev/vg_nvme/lv_11 2024-04-24T16:06:56.160 INFO:tasks.nvme_loop:Connecting nvme_loop smithi178:/dev/vg_nvme/lv_2... 2024-04-24T16:06:56.161 DEBUG:teuthology.orchestra.run.smithi178:> 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-04-24T16:06:56.223 INFO:teuthology.orchestra.run.smithi178.stdout:1 2024-04-24T16:06:56.244 INFO:teuthology.orchestra.run.smithi178.stdout:/dev/vg_nvme/lv_21 2024-04-24T16:06:56.261 INFO:tasks.nvme_loop:Connecting nvme_loop smithi178:/dev/vg_nvme/lv_3... 2024-04-24T16:06:56.261 DEBUG:teuthology.orchestra.run.smithi178:> 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-04-24T16:06:56.323 INFO:teuthology.orchestra.run.smithi178.stdout:1 2024-04-24T16:06:56.345 INFO:teuthology.orchestra.run.smithi178.stdout:/dev/vg_nvme/lv_31 2024-04-24T16:06:56.364 INFO:tasks.nvme_loop:Connecting nvme_loop smithi178:/dev/vg_nvme/lv_4... 2024-04-24T16:06:56.364 DEBUG:teuthology.orchestra.run.smithi178:> 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-04-24T16:06:56.422 INFO:teuthology.orchestra.run.smithi178.stdout:1 2024-04-24T16:06:56.443 INFO:teuthology.orchestra.run.smithi178.stdout:/dev/vg_nvme/lv_41 2024-04-24T16:06:56.460 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T16:06:56.460 DEBUG:teuthology.orchestra.run.smithi178:> dd if=/scratch_devs of=/dev/stdout 2024-04-24T16:06:56.512 DEBUG:teuthology.orchestra.run.smithi178:> sudo nvme list 2024-04-24T16:06:56.564 INFO:teuthology.orchestra.run.smithi178.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-24T16:06:56.565 INFO:teuthology.orchestra.run.smithi178.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-24T16:06:56.565 INFO:teuthology.orchestra.run.smithi178.stdout:/dev/nvme0n1 PHMB75130029480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-04-24T16:06:56.565 INFO:teuthology.orchestra.run.smithi178.stdout:/dev/nvme1n1 794523b85be65f6238de Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T16:06:56.565 INFO:teuthology.orchestra.run.smithi178.stdout:/dev/nvme2n1 6e0e60657eaf115c957a Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T16:06:56.565 INFO:teuthology.orchestra.run.smithi178.stdout:/dev/nvme3n1 ea513e27681167d333ec Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T16:06:56.565 INFO:teuthology.orchestra.run.smithi178.stdout:/dev/nvme4n1 86519d89f097fd6ac32f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T16:06:56.566 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-24T16:06:56.566 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T16:06:56.566 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd of=/scratch_devs 2024-04-24T16:06:56.622 DEBUG:teuthology.orchestra.run.smithi204:> set -ex 2024-04-24T16:06:56.622 DEBUG:teuthology.orchestra.run.smithi204:> dd if=/scratch_devs of=/dev/stdout 2024-04-24T16:06:56.628 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-04-24T16:06:56.628 DEBUG:teuthology.orchestra.run.smithi204:> stat /dev/vg_nvme/lv_1 2024-04-24T16:06:56.675 INFO:teuthology.orchestra.run.smithi204.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-24T16:06:56.676 INFO:teuthology.orchestra.run.smithi204.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T16:06:56.676 INFO:teuthology.orchestra.run.smithi204.stdout:Device: 5h/5d Inode: 879 Links: 1 2024-04-24T16:06:56.676 INFO:teuthology.orchestra.run.smithi204.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T16:06:56.676 INFO:teuthology.orchestra.run.smithi204.stdout:Access: 2024-04-24 16:03:28.506961700 +0000 2024-04-24T16:06:56.676 INFO:teuthology.orchestra.run.smithi204.stdout:Modify: 2024-04-24 16:03:28.250963983 +0000 2024-04-24T16:06:56.676 INFO:teuthology.orchestra.run.smithi204.stdout:Change: 2024-04-24 16:03:28.250963983 +0000 2024-04-24T16:06:56.676 INFO:teuthology.orchestra.run.smithi204.stdout: Birth: - 2024-04-24T16:06:56.676 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-24T16:06:56.730 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records in 2024-04-24T16:06:56.730 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records out 2024-04-24T16:06:56.730 INFO:teuthology.orchestra.run.smithi204.stderr:512 bytes copied, 0.000440046 s, 1.2 MB/s 2024-04-24T16:06:56.731 DEBUG:teuthology.orchestra.run.smithi204:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-24T16:06:56.780 DEBUG:teuthology.orchestra.run.smithi204:> stat /dev/vg_nvme/lv_2 2024-04-24T16:06:56.827 INFO:teuthology.orchestra.run.smithi204.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-24T16:06:56.827 INFO:teuthology.orchestra.run.smithi204.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T16:06:56.827 INFO:teuthology.orchestra.run.smithi204.stdout:Device: 5h/5d Inode: 897 Links: 1 2024-04-24T16:06:56.827 INFO:teuthology.orchestra.run.smithi204.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T16:06:56.827 INFO:teuthology.orchestra.run.smithi204.stdout:Access: 2024-04-24 16:03:28.990957383 +0000 2024-04-24T16:06:56.828 INFO:teuthology.orchestra.run.smithi204.stdout:Modify: 2024-04-24 16:03:28.734959665 +0000 2024-04-24T16:06:56.828 INFO:teuthology.orchestra.run.smithi204.stdout:Change: 2024-04-24 16:03:28.734959665 +0000 2024-04-24T16:06:56.828 INFO:teuthology.orchestra.run.smithi204.stdout: Birth: - 2024-04-24T16:06:56.828 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-24T16:06:56.881 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records in 2024-04-24T16:06:56.882 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records out 2024-04-24T16:06:56.882 INFO:teuthology.orchestra.run.smithi204.stderr:512 bytes copied, 0.000441033 s, 1.2 MB/s 2024-04-24T16:06:56.883 DEBUG:teuthology.orchestra.run.smithi204:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-24T16:06:56.933 DEBUG:teuthology.orchestra.run.smithi204:> stat /dev/vg_nvme/lv_3 2024-04-24T16:06:56.979 INFO:teuthology.orchestra.run.smithi204.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-24T16:06:56.979 INFO:teuthology.orchestra.run.smithi204.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T16:06:56.979 INFO:teuthology.orchestra.run.smithi204.stdout:Device: 5h/5d Inode: 912 Links: 1 2024-04-24T16:06:56.979 INFO:teuthology.orchestra.run.smithi204.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T16:06:56.979 INFO:teuthology.orchestra.run.smithi204.stdout:Access: 2024-04-24 16:03:29.502952815 +0000 2024-04-24T16:06:56.980 INFO:teuthology.orchestra.run.smithi204.stdout:Modify: 2024-04-24 16:03:29.222955313 +0000 2024-04-24T16:06:56.980 INFO:teuthology.orchestra.run.smithi204.stdout:Change: 2024-04-24 16:03:29.222955313 +0000 2024-04-24T16:06:56.980 INFO:teuthology.orchestra.run.smithi204.stdout: Birth: - 2024-04-24T16:06:56.980 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-24T16:06:57.034 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records in 2024-04-24T16:06:57.034 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records out 2024-04-24T16:06:57.034 INFO:teuthology.orchestra.run.smithi204.stderr:512 bytes copied, 0.000414049 s, 1.2 MB/s 2024-04-24T16:06:57.035 DEBUG:teuthology.orchestra.run.smithi204:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-24T16:06:57.085 DEBUG:teuthology.orchestra.run.smithi204:> stat /dev/vg_nvme/lv_4 2024-04-24T16:06:57.131 INFO:teuthology.orchestra.run.smithi204.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-24T16:06:57.131 INFO:teuthology.orchestra.run.smithi204.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T16:06:57.131 INFO:teuthology.orchestra.run.smithi204.stdout:Device: 5h/5d Inode: 930 Links: 1 2024-04-24T16:06:57.131 INFO:teuthology.orchestra.run.smithi204.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T16:06:57.131 INFO:teuthology.orchestra.run.smithi204.stdout:Access: 2024-04-24 16:03:30.002948354 +0000 2024-04-24T16:06:57.131 INFO:teuthology.orchestra.run.smithi204.stdout:Modify: 2024-04-24 16:03:29.718950888 +0000 2024-04-24T16:06:57.131 INFO:teuthology.orchestra.run.smithi204.stdout:Change: 2024-04-24 16:03:29.718950888 +0000 2024-04-24T16:06:57.131 INFO:teuthology.orchestra.run.smithi204.stdout: Birth: - 2024-04-24T16:06:57.132 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-24T16:06:57.186 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records in 2024-04-24T16:06:57.186 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records out 2024-04-24T16:06:57.186 INFO:teuthology.orchestra.run.smithi204.stderr:512 bytes copied, 0.000390425 s, 1.3 MB/s 2024-04-24T16:06:57.187 DEBUG:teuthology.orchestra.run.smithi204:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-24T16:06:57.236 DEBUG:teuthology.orchestra.run.smithi204:> 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-04-24T16:06:57.435 INFO:teuthology.orchestra.run.smithi204.stdout:loop 2024-04-24T16:06:57.436 INFO:tasks.nvme_loop:Connecting nvme_loop smithi204:/dev/vg_nvme/lv_1... 2024-04-24T16:06:57.436 DEBUG:teuthology.orchestra.run.smithi204:> 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-04-24T16:06:57.453 INFO:teuthology.orchestra.run.smithi204.stdout:1 2024-04-24T16:06:57.472 INFO:teuthology.orchestra.run.smithi204.stdout:/dev/vg_nvme/lv_11 2024-04-24T16:06:57.489 INFO:tasks.nvme_loop:Connecting nvme_loop smithi204:/dev/vg_nvme/lv_2... 2024-04-24T16:06:57.489 DEBUG:teuthology.orchestra.run.smithi204:> 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-04-24T16:06:57.547 INFO:teuthology.orchestra.run.smithi204.stdout:1 2024-04-24T16:06:57.567 INFO:teuthology.orchestra.run.smithi204.stdout:/dev/vg_nvme/lv_21 2024-04-24T16:06:57.584 INFO:tasks.nvme_loop:Connecting nvme_loop smithi204:/dev/vg_nvme/lv_3... 2024-04-24T16:06:57.584 DEBUG:teuthology.orchestra.run.smithi204:> 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-04-24T16:06:57.643 INFO:teuthology.orchestra.run.smithi204.stdout:1 2024-04-24T16:06:57.664 INFO:teuthology.orchestra.run.smithi204.stdout:/dev/vg_nvme/lv_31 2024-04-24T16:06:57.680 INFO:tasks.nvme_loop:Connecting nvme_loop smithi204:/dev/vg_nvme/lv_4... 2024-04-24T16:06:57.680 DEBUG:teuthology.orchestra.run.smithi204:> 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-04-24T16:06:57.739 INFO:teuthology.orchestra.run.smithi204.stdout:1 2024-04-24T16:06:57.759 INFO:teuthology.orchestra.run.smithi204.stdout:/dev/vg_nvme/lv_41 2024-04-24T16:06:57.775 DEBUG:teuthology.orchestra.run.smithi204:> set -ex 2024-04-24T16:06:57.775 DEBUG:teuthology.orchestra.run.smithi204:> dd if=/scratch_devs of=/dev/stdout 2024-04-24T16:06:57.824 DEBUG:teuthology.orchestra.run.smithi204:> sudo nvme list 2024-04-24T16:06:57.881 INFO:teuthology.orchestra.run.smithi204.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-24T16:06:57.882 INFO:teuthology.orchestra.run.smithi204.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-24T16:06:57.882 INFO:teuthology.orchestra.run.smithi204.stdout:/dev/nvme0n1 CVFT623300GD400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-04-24T16:06:57.882 INFO:teuthology.orchestra.run.smithi204.stdout:/dev/nvme1n1 125ee8c7ac42947e558a Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T16:06:57.882 INFO:teuthology.orchestra.run.smithi204.stdout:/dev/nvme2n1 41ae665521c0bdffecd8 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T16:06:57.882 INFO:teuthology.orchestra.run.smithi204.stdout:/dev/nvme3n1 3800c19c0ce2186bd0ea Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T16:06:57.882 INFO:teuthology.orchestra.run.smithi204.stdout:/dev/nvme4n1 d05ed29f1c0ac314c0b2 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T16:06:57.883 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-24T16:06:57.883 DEBUG:teuthology.orchestra.run.smithi204:> set -ex 2024-04-24T16:06:57.883 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd of=/scratch_devs 2024-04-24T16:06:57.938 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-24T16:06:58.036 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\\)'], 'log-only-match': ['CEPHADM_'], 'sha1': '5904d29475f5be602879d9fb26280e89b808d5cc'} 2024-04-24T16:06:58.036 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc 2024-04-24T16:06:58.037 INFO:tasks.cephadm:Cluster fsid is ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:06:58.037 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-24T16:06:58.037 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-04-24T16:06:58.037 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi178': '172.21.15.178', 'mon.smithi204': '172.21.15.204'} 2024-04-24T16:06:58.037 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-24T16:06:58.038 DEBUG:teuthology.orchestra.run.smithi178:> sudo hostname $(hostname -s) 2024-04-24T16:06:58.052 DEBUG:teuthology.orchestra.run.smithi204:> sudo hostname $(hostname -s) 2024-04-24T16:06:58.066 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-24T16:06:58.067 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=5904d29475f5be602879d9fb26280e89b808d5cc 2024-04-24T16:06:58.213 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '5904d29475f5be602879d9fb26280e89b808d5cc', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic/78851/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-3285-g5904d294', 'node_name': '172.21.2.13+braggi13', 'job_name': 'ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-3285-g5904d294-1jammy'}, 'url': 'https://1.chacra.ceph.com/r/ceph/wip-adk-testing-2024-04-24-0937/5904d29475f5be602879d9fb26280e89b808d5cc/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-04-24 15:35:30.146514', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-adk-testing-2024-04-24-0937', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/wip-adk-testing-2024-04-24-0937/5904d29475f5be602879d9fb26280e89b808d5cc/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-04-24T16:06:58.434 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref wip-adk-testing-2024-04-24-0937, sha1 5904d29475f5be602879d9fb26280e89b808d5cc from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=5904d29475f5be602879d9fb26280e89b808d5cc 2024-04-24T16:06:58.436 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-04-24-0937/5904d29475f5be602879d9fb26280e89b808d5cc/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-04-24T16:06:58.436 DEBUG:teuthology.orchestra.run.smithi178:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-04-24-0937/5904d29475f5be602879d9fb26280e89b808d5cc/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-24T16:06:58.971 INFO:teuthology.orchestra.run.smithi178.stdout:-rw-rw-r-- 1 ubuntu ubuntu 789946 Apr 24 16:06 /home/ubuntu/cephtest/cephadm 2024-04-24T16:06:58.971 DEBUG:teuthology.orchestra.run.smithi204:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-04-24-0937/5904d29475f5be602879d9fb26280e89b808d5cc/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-24T16:07:00.047 INFO:teuthology.orchestra.run.smithi204.stdout:-rw-rw-r-- 1 ubuntu ubuntu 789946 Apr 24 16:07 /home/ubuntu/cephtest/cephadm 2024-04-24T16:07:00.048 DEBUG:teuthology.orchestra.run.smithi178:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-24T16:07:00.055 DEBUG:teuthology.orchestra.run.smithi204:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-24T16:07:00.071 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc on all hosts... 2024-04-24T16:07:00.071 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc pull 2024-04-24T16:07:00.101 DEBUG:teuthology.orchestra.run.smithi204:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc pull 2024-04-24T16:07:00.263 INFO:teuthology.orchestra.run.smithi178.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc... 2024-04-24T16:07:00.270 INFO:teuthology.orchestra.run.smithi204.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc... 2024-04-24T16:08:08.144 INFO:teuthology.orchestra.run.smithi204.stdout:{ 2024-04-24T16:08:08.145 INFO:teuthology.orchestra.run.smithi204.stdout: "ceph_version": "ceph version 19.0.0-3285-g5904d294 (5904d29475f5be602879d9fb26280e89b808d5cc) squid (dev)", 2024-04-24T16:08:08.145 INFO:teuthology.orchestra.run.smithi204.stdout: "image_id": "8bb2087275ff8b3edc22adaa46e72c303749ca6355b50780fa41551d025b2f8d", 2024-04-24T16:08:08.145 INFO:teuthology.orchestra.run.smithi204.stdout: "repo_digests": [ 2024-04-24T16:08:08.145 INFO:teuthology.orchestra.run.smithi204.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a" 2024-04-24T16:08:08.145 INFO:teuthology.orchestra.run.smithi204.stdout: ] 2024-04-24T16:08:08.145 INFO:teuthology.orchestra.run.smithi204.stdout:} 2024-04-24T16:08:11.109 INFO:teuthology.orchestra.run.smithi178.stdout:{ 2024-04-24T16:08:11.109 INFO:teuthology.orchestra.run.smithi178.stdout: "ceph_version": "ceph version 19.0.0-3285-g5904d294 (5904d29475f5be602879d9fb26280e89b808d5cc) squid (dev)", 2024-04-24T16:08:11.109 INFO:teuthology.orchestra.run.smithi178.stdout: "image_id": "8bb2087275ff8b3edc22adaa46e72c303749ca6355b50780fa41551d025b2f8d", 2024-04-24T16:08:11.110 INFO:teuthology.orchestra.run.smithi178.stdout: "repo_digests": [ 2024-04-24T16:08:11.110 INFO:teuthology.orchestra.run.smithi178.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a" 2024-04-24T16:08:11.110 INFO:teuthology.orchestra.run.smithi178.stdout: ] 2024-04-24T16:08:11.110 INFO:teuthology.orchestra.run.smithi178.stdout:} 2024-04-24T16:08:11.157 DEBUG:teuthology.orchestra.run.smithi178:> sudo mkdir -p /etc/ceph 2024-04-24T16:08:11.172 DEBUG:teuthology.orchestra.run.smithi204:> sudo mkdir -p /etc/ceph 2024-04-24T16:08:11.189 DEBUG:teuthology.orchestra.run.smithi178:> sudo chmod 777 /etc/ceph 2024-04-24T16:08:11.230 DEBUG:teuthology.orchestra.run.smithi204:> sudo chmod 777 /etc/ceph 2024-04-24T16:08:11.244 INFO:tasks.cephadm:Writing seed config... 2024-04-24T16:08:11.245 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-24T16:08:11.245 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-24T16:08:11.245 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-24T16:08:11.245 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-24T16:08:11.246 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-24T16:08:11.246 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-24T16:08:11.246 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-24T16:08:11.246 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-04-24T16:08:11.246 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T16:08:11.246 DEBUG:teuthology.orchestra.run.smithi178:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-24T16:08:11.275 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 = ad55ec96-0254-11ef-bc93-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-04-24T16:08:11.275 DEBUG:teuthology.orchestra.run.smithi178:mon.smithi178> sudo journalctl -f -n 0 -u ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mon.smithi178.service 2024-04-24T16:08:11.320 INFO:tasks.cephadm:Bootstrapping... 2024-04-24T16:08:11.321 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc -v bootstrap --fsid ad55ec96-0254-11ef-bc93-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.178 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-24T16:08:11.529 INFO:teuthology.orchestra.run.smithi178.stdout:-------------------------------------------------------------------------------- 2024-04-24T16:08:11.529 INFO:teuthology.orchestra.run.smithi178.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc', '-v', 'bootstrap', '--fsid', 'ad55ec96-0254-11ef-bc93-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.178', '--skip-admin-label'] 2024-04-24T16:08:11.529 INFO:teuthology.orchestra.run.smithi178.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-24T16:08:11.530 INFO:teuthology.orchestra.run.smithi178.stdout:Verifying podman|docker is present... 2024-04-24T16:08:11.530 INFO:teuthology.orchestra.run.smithi178.stdout:Verifying lvm2 is present... 2024-04-24T16:08:11.530 INFO:teuthology.orchestra.run.smithi178.stdout:Verifying time synchronization is in place... 2024-04-24T16:08:11.535 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-24T16:08:11.536 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-24T16:08:11.539 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-24T16:08:11.539 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout inactive 2024-04-24T16:08:11.543 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-04-24T16:08:11.543 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-04-24T16:08:11.547 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-04-24T16:08:11.547 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout inactive 2024-04-24T16:08:11.551 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-04-24T16:08:11.551 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout masked 2024-04-24T16:08:11.554 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-04-24T16:08:11.554 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout inactive 2024-04-24T16:08:11.558 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-04-24T16:08:11.558 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-04-24T16:08:11.561 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-04-24T16:08:11.561 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout inactive 2024-04-24T16:08:11.565 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout enabled 2024-04-24T16:08:11.568 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout active 2024-04-24T16:08:11.568 INFO:teuthology.orchestra.run.smithi178.stdout:Unit ntp.service is enabled and running 2024-04-24T16:08:11.569 INFO:teuthology.orchestra.run.smithi178.stdout:Repeating the final host check... 2024-04-24T16:08:11.569 INFO:teuthology.orchestra.run.smithi178.stdout:docker (/usr/bin/docker) is present 2024-04-24T16:08:11.569 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl is present 2024-04-24T16:08:11.569 INFO:teuthology.orchestra.run.smithi178.stdout:lvcreate is present 2024-04-24T16:08:11.572 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-24T16:08:11.572 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-24T16:08:11.575 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-24T16:08:11.575 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout inactive 2024-04-24T16:08:11.578 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-04-24T16:08:11.578 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-04-24T16:08:11.582 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-04-24T16:08:11.583 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout inactive 2024-04-24T16:08:11.585 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-04-24T16:08:11.585 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout masked 2024-04-24T16:08:11.588 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-04-24T16:08:11.588 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout inactive 2024-04-24T16:08:11.591 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-04-24T16:08:11.591 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-04-24T16:08:11.595 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-04-24T16:08:11.595 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout inactive 2024-04-24T16:08:11.598 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout enabled 2024-04-24T16:08:11.602 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stdout active 2024-04-24T16:08:11.602 INFO:teuthology.orchestra.run.smithi178.stdout:Unit ntp.service is enabled and running 2024-04-24T16:08:11.602 INFO:teuthology.orchestra.run.smithi178.stdout:Host looks OK 2024-04-24T16:08:11.602 INFO:teuthology.orchestra.run.smithi178.stdout:Cluster fsid: ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:11.602 INFO:teuthology.orchestra.run.smithi178.stdout:Acquiring lock 139905375791392 on /run/cephadm/ad55ec96-0254-11ef-bc93-c7b262605968.lock 2024-04-24T16:08:11.602 INFO:teuthology.orchestra.run.smithi178.stdout:Lock 139905375791392 acquired on /run/cephadm/ad55ec96-0254-11ef-bc93-c7b262605968.lock 2024-04-24T16:08:11.602 INFO:teuthology.orchestra.run.smithi178.stdout:Verifying IP 172.21.15.178 port 3300 ... 2024-04-24T16:08:11.602 INFO:teuthology.orchestra.run.smithi178.stdout:Verifying IP 172.21.15.178 port 6789 ... 2024-04-24T16:08:11.602 INFO:teuthology.orchestra.run.smithi178.stdout:Base mon IP(s) is [172.21.15.178:3300, 172.21.15.178:6789], mon addrv is [v2:172.21.15.178:3300,v1:172.21.15.178:6789] 2024-04-24T16:08:11.604 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 2024-04-24T16:08:11.604 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.178 metric 100 2024-04-24T16:08:11.605 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout 158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.178 metric 100 2024-04-24T16:08:11.605 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-04-24T16:08:11.605 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.178 metric 100 2024-04-24T16:08:11.605 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout 172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.178 metric 100 2024-04-24T16:08:11.605 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout 172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.178 metric 100 2024-04-24T16:08:11.605 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.178 metric 100 2024-04-24T16:08:11.606 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-24T16:08:11.606 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-04-24T16:08:11.606 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 expires 1795sec pref medium 2024-04-24T16:08:11.608 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-24T16:08:11.608 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-24T16:08:11.608 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-24T16:08:11.608 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-04-24T16:08:11.608 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:fe88:7ef9/64 scope link 2024-04-24T16:08:11.608 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-24T16:08:11.610 INFO:teuthology.orchestra.run.smithi178.stdout:Mon IP `172.21.15.178` is in CIDR network `172.21.0.0/20` 2024-04-24T16:08:11.610 INFO:teuthology.orchestra.run.smithi178.stdout:Mon IP `172.21.15.178` is in CIDR network `172.21.0.0/20` 2024-04-24T16:08:11.610 INFO:teuthology.orchestra.run.smithi178.stdout:Mon IP `172.21.15.178` is in CIDR network `172.21.0.1/32` 2024-04-24T16:08:11.610 INFO:teuthology.orchestra.run.smithi178.stdout:Mon IP `172.21.15.178` is in CIDR network `172.21.0.1/32` 2024-04-24T16:08:11.610 INFO:teuthology.orchestra.run.smithi178.stdout:Mon IP `172.21.15.178` is in CIDR network `172.21.0.2/32` 2024-04-24T16:08:11.610 INFO:teuthology.orchestra.run.smithi178.stdout:Mon IP `172.21.15.178` is in CIDR network `172.21.0.2/32` 2024-04-24T16:08:11.610 INFO:teuthology.orchestra.run.smithi178.stdout:Mon IP `172.21.15.178` is in CIDR network `172.21.15.254/32` 2024-04-24T16:08:11.610 INFO:teuthology.orchestra.run.smithi178.stdout:Mon IP `172.21.15.178` is in CIDR network `172.21.15.254/32` 2024-04-24T16:08:11.610 INFO:teuthology.orchestra.run.smithi178.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20', '172.21.0.1/32', '172.21.0.1/32', '172.21.0.2/32', '172.21.0.2/32', '172.21.15.254/32', '172.21.15.254/32'] 2024-04-24T16:08:11.610 INFO:teuthology.orchestra.run.smithi178.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-24T16:08:11.611 INFO:teuthology.orchestra.run.smithi178.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc... 2024-04-24T16:08:11.849 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/docker: stdout 5904d29475f5be602879d9fb26280e89b808d5cc: Pulling from ceph-ci/ceph 2024-04-24T16:08:11.849 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/docker: stdout Digest: sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a 2024-04-24T16:08:11.849 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc 2024-04-24T16:08:11.849 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc 2024-04-24T16:08:13.139 INFO:teuthology.orchestra.run.smithi178.stdout:ceph: stdout ceph version 19.0.0-3285-g5904d294 (5904d29475f5be602879d9fb26280e89b808d5cc) squid (dev) 2024-04-24T16:08:13.139 INFO:teuthology.orchestra.run.smithi178.stdout:Ceph version: ceph version 19.0.0-3285-g5904d294 (5904d29475f5be602879d9fb26280e89b808d5cc) squid (dev) 2024-04-24T16:08:13.139 INFO:teuthology.orchestra.run.smithi178.stdout:Extracting ceph user uid/gid from container image... 2024-04-24T16:08:14.377 INFO:teuthology.orchestra.run.smithi178.stdout:stat: stdout 167 167 2024-04-24T16:08:14.377 INFO:teuthology.orchestra.run.smithi178.stdout:Creating initial keys... 2024-04-24T16:08:15.539 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-authtool: stdout AQBvLilmi7+9ARAAmrKJzFgefhtf717lNm+Q4g== 2024-04-24T16:08:16.778 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-authtool: stdout AQBwLilm6EIwDRAAAK21Af6XkGNW3CUjv/c9ug== 2024-04-24T16:08:17.941 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-authtool: stdout AQBxLilm7FdCGxAAfclTKJIktUp3Z9hVqKwKRg== 2024-04-24T16:08:17.942 INFO:teuthology.orchestra.run.smithi178.stdout:Creating initial monmap... 2024-04-24T16:08:19.188 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-24T16:08:19.188 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-24T16:08:19.188 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:19.188 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-24T16:08:19.188 INFO:teuthology.orchestra.run.smithi178.stdout:monmaptool for smithi178 [v2:172.21.15.178:3300,v1:172.21.15.178:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-24T16:08:19.188 INFO:teuthology.orchestra.run.smithi178.stdout:setting min_mon_release = quincy 2024-04-24T16:08:19.188 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/monmaptool: set fsid to ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:19.188 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-24T16:08:19.188 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:08:19.189 INFO:teuthology.orchestra.run.smithi178.stdout:Creating mon... 2024-04-24T16:08:20.430 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.914+0000 7f6ecfaf5c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-24T16:08:20.430 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.914+0000 7f6ecfaf5c80 1 imported monmap: 2024-04-24T16:08:20.430 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-04-24T16:08:20.430 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:20.430 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-04-24T16:08:18.679257+0000 2024-04-24T16:08:20.430 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr created 2024-04-24T16:08:18.679257+0000 2024-04-24T16:08:20.430 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-04-24T16:08:20.430 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-04-24T16:08:20.430 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.178:3300/0,v1:172.21.15.178:6789/0] mon.smithi178 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.914+0000 7f6ecfaf5c80 0 /usr/bin/ceph-mon: set fsid to ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: RocksDB version: 7.9.2 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Git sha 0 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Compile date 2024-04-24 13:56:12 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: DB SUMMARY 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: DB Session ID: J26OR5X94MP3WAUXA2RK 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi178/store.db dir, Total Num: 0, files: 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi178/store.db: 2024-04-24T16:08:20.431 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.error_if_exists: 0 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.create_if_missing: 1 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.paranoid_checks: 1 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.env: 0x55f42d5aecc0 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.info_log: 0x55f42fa2ef00 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.statistics: (nil) 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.use_fsync: 0 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_log_file_size: 0 2024-04-24T16:08:20.432 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.allow_fallocate: 1 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.use_direct_reads: 0 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.db_log_dir: 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.wal_dir: 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-24T16:08:20.433 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.write_buffer_manager: 0x55f42f9feaa0 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-24T16:08:20.434 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.unordered_write: 0 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.row_cache: None 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.wal_filter: None 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.two_write_queues: 0 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.wal_compression: 0 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.atomic_flush: 0 2024-04-24T16:08:20.435 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.log_readahead_size: 0 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_background_jobs: 2 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_background_compactions: -1 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_subcompactions: 1 2024-04-24T16:08:20.436 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_open_files: -1 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_background_flushes: -1 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Compression algorithms supported: 2024-04-24T16:08:20.437 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: kZSTD supported: 0 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: kXpressCompression supported: 0 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: kZlibCompression supported: 1 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: kSnappyCompression supported: 1 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: kLZ4Compression supported: 1 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: kBZip2Compression supported: 0 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi178/store.db/MANIFEST-000001 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.438 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.merge_operator: 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_filter: None 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55f42fa2f0e0) 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-04-24T16:08:20.439 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x55f42fa311f0 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-04-24T16:08:20.440 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-04-24T16:08:20.441 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compression: NoCompression 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.num_levels: 7 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-24T16:08:20.442 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-24T16:08:20.443 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-24T16:08:20.444 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-24T16:08:20.445 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.inplace_update_support: 0 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-24T16:08:20.446 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.bloom_locality: 0 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.max_successive_merges: 0 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.ttl: 2592000 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.enable_blob_files: false 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.min_blob_size: 0 2024-04-24T16:08:20.447 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi178/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, 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-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: f672b01d-26b3-4f9e-ac76-d631cdaad3d0 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.918+0000 7f6ecfaf5c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.448 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.922+0000 7f6ecfaf5c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55f42fb28000 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.922+0000 7f6ecfaf5c80 4 rocksdb: DB pointer 0x55f42fb18000 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.922+0000 7f6ebfc55700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.922+0000 7f6ebfc55700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 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-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-24T16:08:20.449 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 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-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-04-24T16:08:20.450 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-04-24T16:08:20.451 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-24T16:08:20.451 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-24T16:08:20.451 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 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-04-24T16:08:20.451 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x55f42fa311f0#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.5e-05 secs_since: 0 2024-04-24T16:08:20.451 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-04-24T16:08:20.451 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.451 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-04-24T16:08:20.451 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T16:08:20.451 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.922+0000 7f6ecfaf5c80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-04-24T16:08:20.451 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.922+0000 7f6ecfaf5c80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-04-24T16:08:20.451 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T16:08:19.922+0000 7f6ecfaf5c80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi178 for mon.smithi178 2024-04-24T16:08:20.451 INFO:teuthology.orchestra.run.smithi178.stdout:create mon.smithi178 on 2024-04-24T16:08:20.855 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-04-24T16:08:21.098 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-ad55ec96-0254-11ef-bc93-c7b262605968.target -> /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968.target. 2024-04-24T16:08:21.098 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-ad55ec96-0254-11ef-bc93-c7b262605968.target -> /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968.target. 2024-04-24T16:08:21.421 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mon.smithi178 2024-04-24T16:08:21.421 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Failed to reset failed state of unit ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mon.smithi178.service: Unit ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mon.smithi178.service not loaded. 2024-04-24T16:08:21.610 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968.target.wants/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mon.smithi178.service -> /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service. 2024-04-24T16:08:21.620 INFO:teuthology.orchestra.run.smithi178.stdout:firewalld does not appear to be present 2024-04-24T16:08:21.620 INFO:teuthology.orchestra.run.smithi178.stdout:Not possible to enable service . firewalld.service is not available 2024-04-24T16:08:21.620 INFO:teuthology.orchestra.run.smithi178.stdout:Waiting for mon to start... 2024-04-24T16:08:21.620 INFO:teuthology.orchestra.run.smithi178.stdout:Waiting for mon... 2024-04-24T16:08:23.074 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:22 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.858231+0000 mon.smithi178 (mon.0) 1 : cluster [INF] mon.smithi178 is new leader, mons smithi178 in quorum (ranks 0) 2024-04-24T16:08:23.630 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout cluster: 2024-04-24T16:08:23.630 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout id: ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:23.630 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-24T16:08:23.630 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:23.630 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout services: 2024-04-24T16:08:23.630 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi178 (age 0.186376s) 2024-04-24T16:08:23.630 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-24T16:08:23.631 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-24T16:08:23.631 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:23.631 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout data: 2024-04-24T16:08:23.631 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-24T16:08:23.631 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-24T16:08:23.631 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-24T16:08:23.631 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout pgs: 2024-04-24T16:08:23.631 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:23.631 INFO:teuthology.orchestra.run.smithi178.stdout:mon is available 2024-04-24T16:08:23.631 INFO:teuthology.orchestra.run.smithi178.stdout:Assimilating anything we can from ceph.conf... 2024-04-24T16:08:24.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878183+0000 mon.smithi178 (mon.0) 2 : cluster [INF] mon.smithi178 is new leader, mons smithi178 in quorum (ranks 0) 2024-04-24T16:08:24.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878183+0000 mon.smithi178 (mon.0) 2 : cluster [INF] mon.smithi178 is new leader, mons smithi178 in quorum (ranks 0) 2024-04-24T16:08:24.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878361+0000 mon.smithi178 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-04-24T16:08:24.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878361+0000 mon.smithi178 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-04-24T16:08:24.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878381+0000 mon.smithi178 (mon.0) 4 : cluster [DBG] fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:24.090 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878381+0000 mon.smithi178 (mon.0) 4 : cluster [DBG] fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:24.090 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878390+0000 mon.smithi178 (mon.0) 5 : cluster [DBG] last_changed 2024-04-24T16:08:18.679257+0000 2024-04-24T16:08:24.090 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878390+0000 mon.smithi178 (mon.0) 5 : cluster [DBG] last_changed 2024-04-24T16:08:18.679257+0000 2024-04-24T16:08:24.090 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878398+0000 mon.smithi178 (mon.0) 6 : cluster [DBG] created 2024-04-24T16:08:18.679257+0000 2024-04-24T16:08:24.090 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878398+0000 mon.smithi178 (mon.0) 6 : cluster [DBG] created 2024-04-24T16:08:18.679257+0000 2024-04-24T16:08:24.090 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878407+0000 mon.smithi178 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T16:08:24.090 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878407+0000 mon.smithi178 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T16:08:24.090 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878414+0000 mon.smithi178 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-04-24T16:08:24.090 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878414+0000 mon.smithi178 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-04-24T16:08:24.090 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878422+0000 mon.smithi178 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.178:3300/0,v1:172.21.15.178:6789/0] mon.smithi178 2024-04-24T16:08:24.090 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.878422+0000 mon.smithi178 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.178:3300/0,v1:172.21.15.178:6789/0] mon.smithi178 2024-04-24T16:08:24.090 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.880612+0000 mon.smithi178 (mon.0) 10 : cluster [DBG] fsmap 2024-04-24T16:08:24.091 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.880612+0000 mon.smithi178 (mon.0) 10 : cluster [DBG] fsmap 2024-04-24T16:08:24.091 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.883197+0000 mon.smithi178 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-04-24T16:08:24.091 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.883197+0000 mon.smithi178 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-04-24T16:08:24.091 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.883704+0000 mon.smithi178 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-04-24T16:08:24.091 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: cluster 2024-04-24T16:08:22.883704+0000 mon.smithi178 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-04-24T16:08:24.091 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: audit 2024-04-24T16:08:23.064523+0000 mon.smithi178 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.178:0/4011702020' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-24T16:08:24.091 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:23 smithi178 bash[18278]: audit 2024-04-24T16:08:23.064523+0000 mon.smithi178 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.178:0/4011702020' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-24T16:08:25.094 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout [global] 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout fsid = ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.178:3300,v1:172.21.15.178:6789] 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout [osd] 2024-04-24T16:08:25.095 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-24T16:08:25.096 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-24T16:08:25.096 INFO:teuthology.orchestra.run.smithi178.stdout:Generating new minimal ceph.conf... 2024-04-24T16:08:25.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:24 smithi178 bash[18278]: audit 2024-04-24T16:08:24.583548+0000 mon.smithi178 (mon.0) 14 : audit [INF] from='client.? 172.21.15.178:0/1521127965' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-24T16:08:25.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:24 smithi178 bash[18278]: audit 2024-04-24T16:08:24.583548+0000 mon.smithi178 (mon.0) 14 : audit [INF] from='client.? 172.21.15.178:0/1521127965' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-24T16:08:25.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:24 smithi178 bash[18278]: audit 2024-04-24T16:08:24.586368+0000 mon.smithi178 (mon.0) 15 : audit [INF] from='client.? 172.21.15.178:0/1521127965' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-24T16:08:25.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:24 smithi178 bash[18278]: audit 2024-04-24T16:08:24.586368+0000 mon.smithi178 (mon.0) 15 : audit [INF] from='client.? 172.21.15.178:0/1521127965' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-24T16:08:26.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:26 smithi178 bash[18278]: audit 2024-04-24T16:08:26.086468+0000 mon.smithi178 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.178:0/3605660516' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:08:26.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:26 smithi178 bash[18278]: audit 2024-04-24T16:08:26.086468+0000 mon.smithi178 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.178:0/3605660516' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:08:26.648 INFO:teuthology.orchestra.run.smithi178.stdout:Restarting the monitor... 2024-04-24T16:08:26.937 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:26 smithi178 systemd[1]: Stopping Ceph mon.smithi178 for ad55ec96-0254-11ef-bc93-c7b262605968... 2024-04-24T16:08:26.937 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:26 smithi178 bash[18278]: debug 2024-04-24T16:08:26.762+0000 7fb7e7a34700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi178 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-04-24T16:08:26.937 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:26 smithi178 bash[18278]: debug 2024-04-24T16:08:26.762+0000 7fb7e7a34700 -1 mon.smithi178@0(leader) e1 *** Got Signal Terminated *** 2024-04-24T16:08:27.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:27 smithi178 bash[18665]: ceph-ad55ec96-0254-11ef-bc93-c7b262605968-mon-smithi178 2024-04-24T16:08:27.351 INFO:teuthology.orchestra.run.smithi178.stdout:Setting public_network to 172.21.0.1/32,172.21.0.0/20,172.21.15.254/32,172.21.0.2/32 in mon config section 2024-04-24T16:08:27.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:27 smithi178 bash[18726]: Error response from daemon: No such container: ceph-ad55ec96-0254-11ef-bc93-c7b262605968-mon-smithi178 2024-04-24T16:08:27.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:27 smithi178 systemd[1]: ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mon.smithi178.service: Deactivated successfully. 2024-04-24T16:08:27.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:27 smithi178 systemd[1]: Stopped Ceph mon.smithi178 for ad55ec96-0254-11ef-bc93-c7b262605968. 2024-04-24T16:08:27.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:27 smithi178 systemd[1]: Started Ceph mon.smithi178 for ad55ec96-0254-11ef-bc93-c7b262605968. 2024-04-24T16:08:28.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.398+0000 7f20fe807c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-24T16:08:28.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.398+0000 7f20fe807c80 0 ceph version 19.0.0-3285-g5904d294 (5904d29475f5be602879d9fb26280e89b808d5cc) squid (dev), process ceph-mon, pid 7 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.398+0000 7f20fe807c80 0 pidfile_write: ignore empty --pid-file 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 0 load: jerasure load: lrc 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: RocksDB version: 7.9.2 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Git sha 0 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Compile date 2024-04-24 13:56:12 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: DB SUMMARY 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: DB Session ID: YF9HT1K43A8JULAGYNL2 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: CURRENT file: CURRENT 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: IDENTITY file: IDENTITY 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi178/store.db dir, Total Num: 1, files: 000008.sst 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi178/store.db: 000009.log size: 88847 ; 2024-04-24T16:08:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.error_if_exists: 0 2024-04-24T16:08:28.589 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.create_if_missing: 0 2024-04-24T16:08:28.589 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.paranoid_checks: 1 2024-04-24T16:08:28.589 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-24T16:08:28.589 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-24T16:08:28.589 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-24T16:08:28.589 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.env: 0x5555befd3cc0 2024-04-24T16:08:28.589 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-24T16:08:28.589 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.info_log: 0x5555bfec9ca0 2024-04-24T16:08:28.589 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-24T16:08:28.589 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.statistics: (nil) 2024-04-24T16:08:28.589 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.use_fsync: 0 2024-04-24T16:08:28.589 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_log_file_size: 0 2024-04-24T16:08:28.590 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-24T16:08:28.590 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.allow_fallocate: 1 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.use_direct_reads: 0 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.db_log_dir: 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.wal_dir: 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-24T16:08:28.591 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-24T16:08:28.592 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-24T16:08:28.592 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-24T16:08:28.592 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-24T16:08:28.592 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-24T16:08:28.592 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-24T16:08:28.592 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.write_buffer_manager: 0x5555bfe9b0e0 2024-04-24T16:08:28.592 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-24T16:08:28.592 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-24T16:08:28.592 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-24T16:08:28.593 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-24T16:08:28.593 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-24T16:08:28.593 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-24T16:08:28.593 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-24T16:08:28.593 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-24T16:08:28.593 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.unordered_write: 0 2024-04-24T16:08:28.593 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-24T16:08:28.593 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-24T16:08:28.593 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-24T16:08:28.593 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-24T16:08:28.593 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.row_cache: None 2024-04-24T16:08:28.593 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.wal_filter: None 2024-04-24T16:08:28.594 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-24T16:08:28.594 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-24T16:08:28.594 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.two_write_queues: 0 2024-04-24T16:08:28.594 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-24T16:08:28.594 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.wal_compression: 0 2024-04-24T16:08:28.594 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.atomic_flush: 0 2024-04-24T16:08:28.594 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-24T16:08:28.594 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-24T16:08:28.594 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-24T16:08:28.594 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.log_readahead_size: 0 2024-04-24T16:08:28.595 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-24T16:08:28.595 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-24T16:08:28.595 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-24T16:08:28.595 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-24T16:08:28.595 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-24T16:08:28.595 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-24T16:08:28.595 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-24T16:08:28.595 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_background_jobs: 2 2024-04-24T16:08:28.595 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_background_compactions: -1 2024-04-24T16:08:28.595 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_subcompactions: 1 2024-04-24T16:08:28.595 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-24T16:08:28.596 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-24T16:08:28.596 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-24T16:08:28.596 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-24T16:08:28.596 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-24T16:08:28.596 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-24T16:08:28.596 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-24T16:08:28.596 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-24T16:08:28.596 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_open_files: -1 2024-04-24T16:08:28.596 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-24T16:08:28.596 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-24T16:08:28.596 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-24T16:08:28.597 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-24T16:08:28.597 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_background_flushes: -1 2024-04-24T16:08:28.597 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Compression algorithms supported: 2024-04-24T16:08:28.597 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-24T16:08:28.597 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: kZSTD supported: 0 2024-04-24T16:08:28.597 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: kXpressCompression supported: 0 2024-04-24T16:08:28.597 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-24T16:08:28.597 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: kZlibCompression supported: 1 2024-04-24T16:08:28.597 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: kSnappyCompression supported: 1 2024-04-24T16:08:28.597 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: kLZ4Compression supported: 1 2024-04-24T16:08:28.597 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: kBZip2Compression supported: 0 2024-04-24T16:08:28.598 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-24T16:08:28.598 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-24T16:08:28.598 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi178/store.db/MANIFEST-000010 2024-04-24T16:08:28.598 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-24T16:08:28.598 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-24T16:08:28.598 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.merge_operator: 2024-04-24T16:08:28.598 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_filter: None 2024-04-24T16:08:28.598 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-24T16:08:28.598 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-24T16:08:28.598 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5555bfec9e60) 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: cache_index_and_filter_blocks: 1 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: pin_top_level_index_and_filter: 1 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: index_type: 0 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: data_block_index_type: 0 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: index_shortening: 1 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: data_block_hash_table_util_ratio: 0.750000 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: checksum: 4 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: no_block_cache: 0 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: block_cache: 0x5555bfecb1f0 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: block_cache_name: BinnedLRUCache 2024-04-24T16:08:28.599 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: block_cache_options: 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: capacity : 536870912 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: num_shard_bits : 4 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: strict_capacity_limit : 0 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: high_pri_pool_ratio: 0.000 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: block_cache_compressed: (nil) 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: persistent_cache: (nil) 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: block_size: 4096 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: block_size_deviation: 10 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: block_restart_interval: 16 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: index_block_restart_interval: 1 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: metadata_block_size: 4096 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: partition_filters: 0 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: use_delta_encoding: 1 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: filter_policy: bloomfilter 2024-04-24T16:08:28.600 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: whole_key_filtering: 1 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: verify_compression: 0 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: read_amp_bytes_per_bit: 0 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: format_version: 5 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: enable_index_compression: 1 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: block_align: 0 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: max_auto_readahead_size: 262144 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: prepopulate_block_cache: 0 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: initial_auto_readahead_size: 8192 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: num_file_reads_for_auto_readahead: 2 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compression: NoCompression 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-24T16:08:28.601 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.num_levels: 7 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-24T16:08:28.602 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-24T16:08:28.603 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-24T16:08:28.603 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-24T16:08:28.603 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-24T16:08:28.603 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-24T16:08:28.603 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-24T16:08:28.603 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-24T16:08:28.603 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-24T16:08:28.603 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-24T16:08:28.605 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-24T16:08:28.605 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-24T16:08:28.605 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-24T16:08:28.605 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-24T16:08:28.605 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-24T16:08:28.605 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-24T16:08:28.605 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-24T16:08:28.605 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-24T16:08:28.606 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-24T16:08:28.606 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-24T16:08:28.606 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-24T16:08:28.606 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-24T16:08:28.606 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-24T16:08:28.606 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-24T16:08:28.606 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-24T16:08:28.606 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-24T16:08:28.606 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-24T16:08:28.607 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-24T16:08:28.607 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-24T16:08:28.607 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-24T16:08:28.607 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-24T16:08:28.607 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-24T16:08:28.607 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-24T16:08:28.607 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-24T16:08:28.607 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-24T16:08:28.607 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-24T16:08:28.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-24T16:08:28.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-24T16:08:28.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-24T16:08:28.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-24T16:08:28.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-24T16:08:28.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-24T16:08:28.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-24T16:08:28.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.inplace_update_support: 0 2024-04-24T16:08:28.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-24T16:08:28.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-24T16:08:28.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-24T16:08:28.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.bloom_locality: 0 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.max_successive_merges: 0 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.ttl: 2592000 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.enable_blob_files: false 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.min_blob_size: 0 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-24T16:08:28.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.406+0000 7f20fe807c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20fe807c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi178/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-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20fe807c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20fe807c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: f672b01d-26b3-4f9e-ac76-d631cdaad3d0 2024-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20fe807c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713974908413956, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20fe807c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20fe807c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713974908415009, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85617, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 254, "table_properties": {"data_size": 83757, "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": 9921, "raw_average_key_size": 46, "raw_value_size": 78078, "raw_average_value_size": 366, "num_data_blocks": 11, "num_entries": 213, "num_filter_entries": 213, "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": 1713974908, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "f672b01d-26b3-4f9e-ac76-d631cdaad3d0", "db_session_id": "YF9HT1K43A8JULAGYNL2", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-24T16:08:28.610 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20fe807c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713974908415115, "job": 1, "event": "recovery_finished"} 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20fe807c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20fe807c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi178/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20fe807c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5555bffec000 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20fe807c80 4 rocksdb: DB pointer 0x5555bffd6000 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20ecf5f700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20ecf5f700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: ** DB Stats ** 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-24T16:08:28.611 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: ** Compaction Stats [default] ** 2024-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: 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-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: L0 2/0 85.51 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 124.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Sum 2/0 85.51 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 124.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 124.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: ** Compaction Stats [default] ** 2024-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: 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-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 124.1 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-24T16:08:28.612 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Flush(GB): cumulative 0.000, interval 0.000 2024-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: AddFile(Total Files): cumulative 0, interval 0 2024-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: AddFile(L0 Files): cumulative 0, interval 0 2024-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: AddFile(Keys): cumulative 0, interval 0 2024-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Cumulative compaction: 0.00 GB write, 15.62 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Interval compaction: 0.00 GB write, 15.62 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: 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-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: Block cache BinnedLRUCache@0x5555bfecb1f0#7 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: 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-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: ** File Read Latency Histogram By Level [default] ** 2024-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.410+0000 7f20fe807c80 0 starting mon.smithi178 rank 0 at public addrs [v2:172.21.15.178:3300/0,v1:172.21.15.178:6789/0] at bind addrs [v2:172.21.15.178:3300/0,v1:172.21.15.178:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi178 fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.414+0000 7f20fe807c80 1 mon.smithi178@-1(???) e1 preinit fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:28.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.414+0000 7f20fe807c80 0 mon.smithi178@-1(???).mds e1 new map 2024-04-24T16:08:28.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.414+0000 7f20fe807c80 0 mon.smithi178@-1(???).mds e1 print_map 2024-04-24T16:08:28.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: e1 2024-04-24T16:08:28.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: enable_multiple, ever_enabled_multiple: 1,1 2024-04-24T16:08:28.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: 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-04-24T16:08:28.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: legacy client fscid: -1 2024-04-24T16:08:28.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: 2024-04-24T16:08:28.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: No filesystems configured 2024-04-24T16:08:28.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.414+0000 7f20fe807c80 0 mon.smithi178@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-24T16:08:28.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.414+0000 7f20fe807c80 0 mon.smithi178@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-24T16:08:28.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.414+0000 7f20fe807c80 0 mon.smithi178@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-24T16:08:28.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.414+0000 7f20fe807c80 0 mon.smithi178@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-24T16:08:28.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:28 smithi178 bash[18765]: debug 2024-04-24T16:08:28.414+0000 7f20fe807c80 1 mon.smithi178@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-24T16:08:29.310 INFO:teuthology.orchestra.run.smithi178.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-24T16:08:29.336 INFO:teuthology.orchestra.run.smithi178.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-24T16:08:29.336 INFO:teuthology.orchestra.run.smithi178.stdout:Creating mgr... 2024-04-24T16:08:29.337 INFO:teuthology.orchestra.run.smithi178.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-24T16:08:29.337 INFO:teuthology.orchestra.run.smithi178.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-24T16:08:29.337 INFO:teuthology.orchestra.run.smithi178.stdout:Verifying port 0.0.0.0:8443 ... 2024-04-24T16:08:29.669 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442338+0000 mon.smithi178 (mon.0) 1 : cluster [INF] mon.smithi178 is new leader, mons smithi178 in quorum (ranks 0) 2024-04-24T16:08:29.670 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442338+0000 mon.smithi178 (mon.0) 1 : cluster [INF] mon.smithi178 is new leader, mons smithi178 in quorum (ranks 0) 2024-04-24T16:08:29.670 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442442+0000 mon.smithi178 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-04-24T16:08:29.670 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442442+0000 mon.smithi178 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-04-24T16:08:29.670 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442459+0000 mon.smithi178 (mon.0) 3 : cluster [DBG] fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:29.670 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442459+0000 mon.smithi178 (mon.0) 3 : cluster [DBG] fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:29.670 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442482+0000 mon.smithi178 (mon.0) 4 : cluster [DBG] last_changed 2024-04-24T16:08:18.679257+0000 2024-04-24T16:08:29.670 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442482+0000 mon.smithi178 (mon.0) 4 : cluster [DBG] last_changed 2024-04-24T16:08:18.679257+0000 2024-04-24T16:08:29.670 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442498+0000 mon.smithi178 (mon.0) 5 : cluster [DBG] created 2024-04-24T16:08:18.679257+0000 2024-04-24T16:08:29.670 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442498+0000 mon.smithi178 (mon.0) 5 : cluster [DBG] created 2024-04-24T16:08:18.679257+0000 2024-04-24T16:08:29.670 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442514+0000 mon.smithi178 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T16:08:29.670 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442514+0000 mon.smithi178 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T16:08:29.670 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442533+0000 mon.smithi178 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-04-24T16:08:29.671 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442533+0000 mon.smithi178 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-04-24T16:08:29.671 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442555+0000 mon.smithi178 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.178:3300/0,v1:172.21.15.178:6789/0] mon.smithi178 2024-04-24T16:08:29.671 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442555+0000 mon.smithi178 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.178:3300/0,v1:172.21.15.178:6789/0] mon.smithi178 2024-04-24T16:08:29.671 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442995+0000 mon.smithi178 (mon.0) 9 : cluster [DBG] fsmap 2024-04-24T16:08:29.671 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.442995+0000 mon.smithi178 (mon.0) 9 : cluster [DBG] fsmap 2024-04-24T16:08:29.671 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.443039+0000 mon.smithi178 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-04-24T16:08:29.671 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.443039+0000 mon.smithi178 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-04-24T16:08:29.671 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.443440+0000 mon.smithi178 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-04-24T16:08:29.671 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: cluster 2024-04-24T16:08:28.443440+0000 mon.smithi178 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-04-24T16:08:29.671 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: audit 2024-04-24T16:08:28.689036+0000 mon.smithi178 (mon.0) 12 : audit [INF] from='client.? 172.21.15.178:0/856450337' entity='client.admin' 2024-04-24T16:08:29.671 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 bash[18765]: audit 2024-04-24T16:08:28.689036+0000 mon.smithi178 (mon.0) 12 : audit [INF] from='client.? 172.21.15.178:0/856450337' entity='client.admin' 2024-04-24T16:08:29.671 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:08:29.675 INFO:teuthology.orchestra.run.smithi178.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mgr.smithi178.tjvcci 2024-04-24T16:08:29.675 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Failed to reset failed state of unit ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mgr.smithi178.tjvcci.service: Unit ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mgr.smithi178.tjvcci.service not loaded. 2024-04-24T16:08:29.896 INFO:teuthology.orchestra.run.smithi178.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968.target.wants/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mgr.smithi178.tjvcci.service -> /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service. 2024-04-24T16:08:29.905 INFO:teuthology.orchestra.run.smithi178.stdout:firewalld does not appear to be present 2024-04-24T16:08:29.905 INFO:teuthology.orchestra.run.smithi178.stdout:Not possible to enable service . firewalld.service is not available 2024-04-24T16:08:29.905 INFO:teuthology.orchestra.run.smithi178.stdout:firewalld does not appear to be present 2024-04-24T16:08:29.905 INFO:teuthology.orchestra.run.smithi178.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-04-24T16:08:29.905 INFO:teuthology.orchestra.run.smithi178.stdout:Waiting for mgr to start... 2024-04-24T16:08:29.905 INFO:teuthology.orchestra.run.smithi178.stdout:Waiting for mgr... 2024-04-24T16:08:29.919 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:29 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:08:31.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:31 smithi178 bash[18765]: audit 2024-04-24T16:08:31.299533+0000 mon.smithi178 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.178:0/1827452964' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T16:08:31.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:31 smithi178 bash[18765]: audit 2024-04-24T16:08:31.299533+0000 mon.smithi178 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.178:0/1827452964' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T16:08:31.859 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:31.859 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout { 2024-04-24T16:08:31.859 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "fsid": "ad55ec96-0254-11ef-bc93-c7b262605968", 2024-04-24T16:08:31.860 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "health": { 2024-04-24T16:08:31.860 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-24T16:08:31.860 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-24T16:08:31.860 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-24T16:08:31.860 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:31.860 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-24T16:08:31.860 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-24T16:08:31.860 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 0 2024-04-24T16:08:31.860 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ], 2024-04-24T16:08:31.860 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-24T16:08:31.861 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "smithi178" 2024-04-24T16:08:31.861 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ], 2024-04-24T16:08:31.861 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-04-24T16:08:31.861 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-24T16:08:31.861 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:31.861 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-24T16:08:31.861 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-24T16:08:31.861 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:31.861 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-24T16:08:31.861 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:31.862 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-24T16:08:31.862 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-24T16:08:31.862 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-24T16:08:31.862 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-24T16:08:31.862 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-24T16:08:31.862 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-24T16:08:31.862 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:31.862 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-24T16:08:31.862 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-24T16:08:31.863 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-24T16:08:31.863 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-24T16:08:31.863 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-24T16:08:31.863 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-24T16:08:31.863 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-24T16:08:31.863 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-24T16:08:31.863 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-24T16:08:31.863 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:31.863 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-24T16:08:31.863 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:31.863 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "restful" 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ], 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:31.864 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "modified": "2024-04-24T16:08:22.879538+0000", 2024-04-24T16:08:31.865 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T16:08:31.865 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:31.865 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-24T16:08:31.865 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout } 2024-04-24T16:08:31.865 INFO:teuthology.orchestra.run.smithi178.stdout:mgr not available, waiting (1/15)... 2024-04-24T16:08:35.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:34 smithi178 bash[18765]: audit 2024-04-24T16:08:34.941966+0000 mon.smithi178 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.178:0/3057726476' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T16:08:35.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:34 smithi178 bash[18765]: audit 2024-04-24T16:08:34.941966+0000 mon.smithi178 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.178:0/3057726476' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T16:08:35.592 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:35.592 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout { 2024-04-24T16:08:35.592 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "fsid": "ad55ec96-0254-11ef-bc93-c7b262605968", 2024-04-24T16:08:35.593 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "health": { 2024-04-24T16:08:35.593 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-24T16:08:35.593 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-24T16:08:35.593 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-24T16:08:35.593 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:35.593 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-24T16:08:35.593 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-24T16:08:35.593 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 0 2024-04-24T16:08:35.593 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ], 2024-04-24T16:08:35.593 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-24T16:08:35.593 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "smithi178" 2024-04-24T16:08:35.593 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ], 2024-04-24T16:08:35.594 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-04-24T16:08:35.594 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-24T16:08:35.594 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:35.594 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-24T16:08:35.594 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-24T16:08:35.594 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:35.594 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-24T16:08:35.594 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:35.594 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-24T16:08:35.594 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-24T16:08:35.594 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-24T16:08:35.594 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-24T16:08:35.595 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "restful" 2024-04-24T16:08:35.596 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ], 2024-04-24T16:08:35.597 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T16:08:35.597 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:35.597 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-24T16:08:35.597 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:35.597 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "modified": "2024-04-24T16:08:22.879538+0000", 2024-04-24T16:08:35.597 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T16:08:35.597 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:35.597 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-24T16:08:35.597 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout } 2024-04-24T16:08:35.597 INFO:teuthology.orchestra.run.smithi178.stdout:mgr not available, waiting (2/15)... 2024-04-24T16:08:38.784 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:38 smithi178 bash[18765]: audit 2024-04-24T16:08:38.572957+0000 mon.smithi178 (mon.0) 15 : audit [DBG] from='client.? 172.21.15.178:0/4015353706' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T16:08:38.785 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:38 smithi178 bash[18765]: audit 2024-04-24T16:08:38.572957+0000 mon.smithi178 (mon.0) 15 : audit [DBG] from='client.? 172.21.15.178:0/4015353706' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T16:08:39.179 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:39.179 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout { 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "fsid": "ad55ec96-0254-11ef-bc93-c7b262605968", 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "health": { 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 0 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ], 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "smithi178" 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ], 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-04-24T16:08:39.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-24T16:08:39.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:39.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-24T16:08:39.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-24T16:08:39.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:39.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-24T16:08:39.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:39.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-24T16:08:39.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-24T16:08:39.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-24T16:08:39.185 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-24T16:08:39.185 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-24T16:08:39.185 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-24T16:08:39.185 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:39.185 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-24T16:08:39.185 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-24T16:08:39.185 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-24T16:08:39.185 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-24T16:08:39.185 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-24T16:08:39.185 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-24T16:08:39.185 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-24T16:08:39.185 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-24T16:08:39.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-24T16:08:39.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "restful" 2024-04-24T16:08:39.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ], 2024-04-24T16:08:39.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T16:08:39.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:39.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-24T16:08:39.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:39.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "modified": "2024-04-24T16:08:22.879538+0000", 2024-04-24T16:08:39.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T16:08:39.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:39.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-24T16:08:39.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout } 2024-04-24T16:08:39.187 INFO:teuthology.orchestra.run.smithi178.stdout:mgr not available, waiting (3/15)... 2024-04-24T16:08:40.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: cluster 2024-04-24T16:08:39.160535+0000 mon.smithi178 (mon.0) 16 : cluster [INF] Activating manager daemon smithi178.tjvcci 2024-04-24T16:08:40.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: cluster 2024-04-24T16:08:39.160535+0000 mon.smithi178 (mon.0) 16 : cluster [INF] Activating manager daemon smithi178.tjvcci 2024-04-24T16:08:40.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: cluster 2024-04-24T16:08:39.167563+0000 mon.smithi178 (mon.0) 17 : cluster [DBG] mgrmap e2: smithi178.tjvcci(active, starting, since 0.00755722s) 2024-04-24T16:08:40.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: cluster 2024-04-24T16:08:39.167563+0000 mon.smithi178 (mon.0) 17 : cluster [DBG] mgrmap e2: smithi178.tjvcci(active, starting, since 0.00755722s) 2024-04-24T16:08:40.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.168756+0000 mon.smithi178 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T16:08:40.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.168756+0000 mon.smithi178 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T16:08:40.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.168869+0000 mon.smithi178 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T16:08:40.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.168869+0000 mon.smithi178 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T16:08:40.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.168973+0000 mon.smithi178 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T16:08:40.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.168973+0000 mon.smithi178 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T16:08:40.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.169096+0000 mon.smithi178 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi178"}]: dispatch 2024-04-24T16:08:40.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.169096+0000 mon.smithi178 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi178"}]: dispatch 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.169949+0000 mon.smithi178 (mon.0) 22 : audit [DBG] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr metadata", "who": "smithi178.tjvcci", "id": "smithi178.tjvcci"}]: dispatch 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.169949+0000 mon.smithi178 (mon.0) 22 : audit [DBG] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr metadata", "who": "smithi178.tjvcci", "id": "smithi178.tjvcci"}]: dispatch 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: cluster 2024-04-24T16:08:39.200005+0000 mon.smithi178 (mon.0) 23 : cluster [INF] Manager daemon smithi178.tjvcci is now available 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: cluster 2024-04-24T16:08:39.200005+0000 mon.smithi178 (mon.0) 23 : cluster [INF] Manager daemon smithi178.tjvcci is now available 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.212354+0000 mon.smithi178 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/mirror_snapshot_schedule"}]: dispatch 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.212354+0000 mon.smithi178 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/mirror_snapshot_schedule"}]: dispatch 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.215197+0000 mon.smithi178 (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/trash_purge_schedule"}]: dispatch 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.215197+0000 mon.smithi178 (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/trash_purge_schedule"}]: dispatch 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.219300+0000 mon.smithi178 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.219300+0000 mon.smithi178 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.221201+0000 mon.smithi178 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.221201+0000 mon.smithi178 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.222986+0000 mon.smithi178 (mon.0) 28 : audit [INF] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:40.089 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:39 smithi178 bash[18765]: audit 2024-04-24T16:08:39.222986+0000 mon.smithi178 (mon.0) 28 : audit [INF] from='mgr.14100 172.21.15.178:0/201731103' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:41.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:41 smithi178 bash[18765]: cluster 2024-04-24T16:08:40.174132+0000 mon.smithi178 (mon.0) 29 : cluster [DBG] mgrmap e3: smithi178.tjvcci(active, since 1.01413s) 2024-04-24T16:08:41.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:41 smithi178 bash[18765]: cluster 2024-04-24T16:08:40.174132+0000 mon.smithi178 (mon.0) 29 : cluster [DBG] mgrmap e3: smithi178.tjvcci(active, since 1.01413s) 2024-04-24T16:08:43.180 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout { 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "fsid": "ad55ec96-0254-11ef-bc93-c7b262605968", 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "health": { 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 0 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ], 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "smithi178" 2024-04-24T16:08:43.181 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ], 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "quorum_age": 14, 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-24T16:08:43.182 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-24T16:08:43.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:43.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-24T16:08:43.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-24T16:08:43.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-24T16:08:43.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-24T16:08:43.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-24T16:08:43.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-24T16:08:43.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-24T16:08:43.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-24T16:08:43.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-24T16:08:43.186 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:43.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-24T16:08:43.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:43.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-24T16:08:43.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-24T16:08:43.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:43.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-24T16:08:43.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-24T16:08:43.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-24T16:08:43.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-24T16:08:43.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-24T16:08:43.187 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-24T16:08:43.188 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "restful" 2024-04-24T16:08:43.188 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ], 2024-04-24T16:08:43.188 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T16:08:43.189 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:43.189 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-24T16:08:43.189 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T16:08:43.189 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "modified": "2024-04-24T16:08:22.879538+0000", 2024-04-24T16:08:43.189 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T16:08:43.189 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout }, 2024-04-24T16:08:43.189 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-24T16:08:43.189 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout } 2024-04-24T16:08:43.189 INFO:teuthology.orchestra.run.smithi178.stdout:mgr is available 2024-04-24T16:08:43.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:43 smithi178 bash[18765]: cluster 2024-04-24T16:08:42.174432+0000 mon.smithi178 (mon.0) 30 : cluster [DBG] mgrmap e4: smithi178.tjvcci(active, since 3s) 2024-04-24T16:08:43.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:43 smithi178 bash[18765]: cluster 2024-04-24T16:08:42.174432+0000 mon.smithi178 (mon.0) 30 : cluster [DBG] mgrmap e4: smithi178.tjvcci(active, since 3s) 2024-04-24T16:08:43.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:43 smithi178 bash[18765]: audit 2024-04-24T16:08:42.603159+0000 mon.smithi178 (mon.0) 31 : audit [DBG] from='client.? 172.21.15.178:0/486980179' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T16:08:43.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:43 smithi178 bash[18765]: audit 2024-04-24T16:08:42.603159+0000 mon.smithi178 (mon.0) 31 : audit [DBG] from='client.? 172.21.15.178:0/486980179' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T16:08:44.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:44 smithi178 bash[18765]: audit 2024-04-24T16:08:44.406763+0000 mon.smithi178 (mon.0) 32 : audit [INF] from='client.? 172.21.15.178:0/1538265418' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-24T16:08:44.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:44 smithi178 bash[18765]: audit 2024-04-24T16:08:44.406763+0000 mon.smithi178 (mon.0) 32 : audit [INF] from='client.? 172.21.15.178:0/1538265418' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-24T16:08:45.026 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:45.026 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout [global] 2024-04-24T16:08:45.026 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout fsid = ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:08:45.026 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-04-24T16:08:45.026 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-24T16:08:45.026 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-24T16:08:45.026 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-24T16:08:45.026 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-24T16:08:45.026 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:45.027 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-24T16:08:45.027 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-24T16:08:45.027 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 2024-04-24T16:08:45.027 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout [osd] 2024-04-24T16:08:45.027 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-24T16:08:45.027 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-24T16:08:45.027 INFO:teuthology.orchestra.run.smithi178.stdout:Enabling cephadm module... 2024-04-24T16:08:46.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:46 smithi178 bash[18765]: audit 2024-04-24T16:08:46.349060+0000 mon.smithi178 (mon.0) 33 : audit [INF] from='client.? 172.21.15.178:0/2327871757' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-24T16:08:46.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:46 smithi178 bash[18765]: audit 2024-04-24T16:08:46.349060+0000 mon.smithi178 (mon.0) 33 : audit [INF] from='client.? 172.21.15.178:0/2327871757' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-24T16:08:47.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:47 smithi178 bash[18765]: audit 2024-04-24T16:08:46.400869+0000 mon.smithi178 (mon.0) 34 : audit [INF] from='client.? 172.21.15.178:0/2327871757' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-04-24T16:08:47.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:47 smithi178 bash[18765]: audit 2024-04-24T16:08:46.400869+0000 mon.smithi178 (mon.0) 34 : audit [INF] from='client.? 172.21.15.178:0/2327871757' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-04-24T16:08:47.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:47 smithi178 bash[18765]: cluster 2024-04-24T16:08:46.405836+0000 mon.smithi178 (mon.0) 35 : cluster [DBG] mgrmap e5: smithi178.tjvcci(active, since 7s) 2024-04-24T16:08:47.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:47 smithi178 bash[18765]: cluster 2024-04-24T16:08:46.405836+0000 mon.smithi178 (mon.0) 35 : cluster [DBG] mgrmap e5: smithi178.tjvcci(active, since 7s) 2024-04-24T16:08:48.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:48 smithi178 bash[18765]: audit 2024-04-24T16:08:48.210244+0000 mon.smithi178 (mon.0) 36 : audit [DBG] from='client.? 172.21.15.178:0/2991218477' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-24T16:08:48.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:48 smithi178 bash[18765]: audit 2024-04-24T16:08:48.210244+0000 mon.smithi178 (mon.0) 36 : audit [DBG] from='client.? 172.21.15.178:0/2991218477' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-24T16:08:48.944 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout { 2024-04-24T16:08:48.944 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-04-24T16:08:48.944 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-24T16:08:48.944 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "active_name": "smithi178.tjvcci", 2024-04-24T16:08:48.944 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-24T16:08:48.944 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout } 2024-04-24T16:08:48.944 INFO:teuthology.orchestra.run.smithi178.stdout:Waiting for the mgr to restart... 2024-04-24T16:08:48.945 INFO:teuthology.orchestra.run.smithi178.stdout:Waiting for mgr epoch 5... 2024-04-24T16:08:54.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: cluster 2024-04-24T16:08:54.487909+0000 mon.smithi178 (mon.0) 37 : cluster [INF] Active manager daemon smithi178.tjvcci restarted 2024-04-24T16:08:54.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: cluster 2024-04-24T16:08:54.487909+0000 mon.smithi178 (mon.0) 37 : cluster [INF] Active manager daemon smithi178.tjvcci restarted 2024-04-24T16:08:54.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: cluster 2024-04-24T16:08:54.488730+0000 mon.smithi178 (mon.0) 38 : cluster [INF] Activating manager daemon smithi178.tjvcci 2024-04-24T16:08:54.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: cluster 2024-04-24T16:08:54.488730+0000 mon.smithi178 (mon.0) 38 : cluster [INF] Activating manager daemon smithi178.tjvcci 2024-04-24T16:08:54.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: cluster 2024-04-24T16:08:54.496298+0000 mon.smithi178 (mon.0) 39 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-04-24T16:08:54.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: cluster 2024-04-24T16:08:54.496298+0000 mon.smithi178 (mon.0) 39 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-04-24T16:08:54.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: cluster 2024-04-24T16:08:54.496568+0000 mon.smithi178 (mon.0) 40 : cluster [DBG] mgrmap e6: smithi178.tjvcci(active, starting, since 0.00820573s) 2024-04-24T16:08:54.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: cluster 2024-04-24T16:08:54.496568+0000 mon.smithi178 (mon.0) 40 : cluster [DBG] mgrmap e6: smithi178.tjvcci(active, starting, since 0.00820573s) 2024-04-24T16:08:54.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: audit 2024-04-24T16:08:54.497365+0000 mon.smithi178 (mon.0) 41 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi178"}]: dispatch 2024-04-24T16:08:54.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: audit 2024-04-24T16:08:54.497365+0000 mon.smithi178 (mon.0) 41 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi178"}]: dispatch 2024-04-24T16:08:54.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: audit 2024-04-24T16:08:54.498318+0000 mon.smithi178 (mon.0) 42 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr metadata", "who": "smithi178.tjvcci", "id": "smithi178.tjvcci"}]: dispatch 2024-04-24T16:08:54.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: audit 2024-04-24T16:08:54.498318+0000 mon.smithi178 (mon.0) 42 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr metadata", "who": "smithi178.tjvcci", "id": "smithi178.tjvcci"}]: dispatch 2024-04-24T16:08:54.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: audit 2024-04-24T16:08:54.499159+0000 mon.smithi178 (mon.0) 43 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T16:08:54.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: audit 2024-04-24T16:08:54.499159+0000 mon.smithi178 (mon.0) 43 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T16:08:54.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: audit 2024-04-24T16:08:54.499334+0000 mon.smithi178 (mon.0) 44 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T16:08:54.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: audit 2024-04-24T16:08:54.499334+0000 mon.smithi178 (mon.0) 44 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T16:08:54.839 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: audit 2024-04-24T16:08:54.499459+0000 mon.smithi178 (mon.0) 45 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T16:08:54.839 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: audit 2024-04-24T16:08:54.499459+0000 mon.smithi178 (mon.0) 45 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T16:08:54.839 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: cluster 2024-04-24T16:08:54.524163+0000 mon.smithi178 (mon.0) 46 : cluster [INF] Manager daemon smithi178.tjvcci is now available 2024-04-24T16:08:54.839 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:54 smithi178 bash[18765]: cluster 2024-04-24T16:08:54.524163+0000 mon.smithi178 (mon.0) 46 : cluster [INF] Manager daemon smithi178.tjvcci is now available 2024-04-24T16:08:55.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: cephadm 2024-04-24T16:08:54.542768+0000 mgr.smithi178.tjvcci (mgr.14120) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-04-24T16:08:55.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: cephadm 2024-04-24T16:08:54.542768+0000 mgr.smithi178.tjvcci (mgr.14120) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-04-24T16:08:55.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.545503+0000 mon.smithi178 (mon.0) 47 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:55.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.545503+0000 mon.smithi178 (mon.0) 47 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:55.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.548250+0000 mon.smithi178 (mon.0) 48 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:55.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.548250+0000 mon.smithi178 (mon.0) 48 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:55.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.551870+0000 mon.smithi178 (mon.0) 49 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:08:55.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.551870+0000 mon.smithi178 (mon.0) 49 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:08:55.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.555304+0000 mon.smithi178 (mon.0) 50 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:08:55.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.555304+0000 mon.smithi178 (mon.0) 50 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:08:55.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.565598+0000 mon.smithi178 (mon.0) 51 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/mirror_snapshot_schedule"}]: dispatch 2024-04-24T16:08:55.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.565598+0000 mon.smithi178 (mon.0) 51 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/mirror_snapshot_schedule"}]: dispatch 2024-04-24T16:08:55.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.568671+0000 mon.smithi178 (mon.0) 52 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/trash_purge_schedule"}]: dispatch 2024-04-24T16:08:55.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.568671+0000 mon.smithi178 (mon.0) 52 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/trash_purge_schedule"}]: dispatch 2024-04-24T16:08:55.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.817094+0000 mon.smithi178 (mon.0) 53 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:55.839 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.817094+0000 mon.smithi178 (mon.0) 53 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:55.839 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.822725+0000 mon.smithi178 (mon.0) 54 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:55.839 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: audit 2024-04-24T16:08:54.822725+0000 mon.smithi178 (mon.0) 54 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:55.839 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: cluster 2024-04-24T16:08:55.501761+0000 mon.smithi178 (mon.0) 55 : cluster [DBG] mgrmap e7: smithi178.tjvcci(active, since 1.01339s) 2024-04-24T16:08:55.839 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:55 smithi178 bash[18765]: cluster 2024-04-24T16:08:55.501761+0000 mon.smithi178 (mon.0) 55 : cluster [DBG] mgrmap e7: smithi178.tjvcci(active, since 1.01339s) 2024-04-24T16:08:56.157 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout { 2024-04-24T16:08:56.157 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-04-24T16:08:56.157 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-24T16:08:56.157 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout } 2024-04-24T16:08:56.158 INFO:teuthology.orchestra.run.smithi178.stdout:mgr epoch 5 is available 2024-04-24T16:08:56.158 INFO:teuthology.orchestra.run.smithi178.stdout:Setting orchestrator backend to cephadm... 2024-04-24T16:08:56.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:56 smithi178 bash[18765]: audit 2024-04-24T16:08:55.499233+0000 mgr.smithi178.tjvcci (mgr.14120) 2 : audit [DBG] from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-24T16:08:56.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:56 smithi178 bash[18765]: audit 2024-04-24T16:08:55.499233+0000 mgr.smithi178.tjvcci (mgr.14120) 2 : audit [DBG] from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-24T16:08:56.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:56 smithi178 bash[18765]: audit 2024-04-24T16:08:55.515410+0000 mgr.smithi178.tjvcci (mgr.14120) 3 : audit [DBG] from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-24T16:08:56.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:56 smithi178 bash[18765]: audit 2024-04-24T16:08:55.515410+0000 mgr.smithi178.tjvcci (mgr.14120) 3 : audit [DBG] from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-24T16:08:57.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: cluster 2024-04-24T16:08:56.551835+0000 mon.smithi178 (mon.0) 56 : cluster [DBG] mgrmap e8: smithi178.tjvcci(active, since 2s) 2024-04-24T16:08:57.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: cluster 2024-04-24T16:08:56.551835+0000 mon.smithi178 (mon.0) 56 : cluster [DBG] mgrmap e8: smithi178.tjvcci(active, since 2s) 2024-04-24T16:08:57.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: cephadm 2024-04-24T16:08:56.615920+0000 mgr.smithi178.tjvcci (mgr.14120) 4 : cephadm [INF] [24/Apr/2024:16:08:56] ENGINE Bus STARTING 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: cephadm 2024-04-24T16:08:56.615920+0000 mgr.smithi178.tjvcci (mgr.14120) 4 : cephadm [INF] [24/Apr/2024:16:08:56] ENGINE Bus STARTING 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: cephadm 2024-04-24T16:08:56.717937+0000 mgr.smithi178.tjvcci (mgr.14120) 5 : cephadm [INF] [24/Apr/2024:16:08:56] ENGINE Serving on http://172.21.15.178:8765 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: cephadm 2024-04-24T16:08:56.717937+0000 mgr.smithi178.tjvcci (mgr.14120) 5 : cephadm [INF] [24/Apr/2024:16:08:56] ENGINE Serving on http://172.21.15.178:8765 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: cephadm 2024-04-24T16:08:56.836135+0000 mgr.smithi178.tjvcci (mgr.14120) 6 : cephadm [INF] [24/Apr/2024:16:08:56] ENGINE Serving on https://172.21.15.178:7150 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: cephadm 2024-04-24T16:08:56.836135+0000 mgr.smithi178.tjvcci (mgr.14120) 6 : cephadm [INF] [24/Apr/2024:16:08:56] ENGINE Serving on https://172.21.15.178:7150 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: cephadm 2024-04-24T16:08:56.836328+0000 mgr.smithi178.tjvcci (mgr.14120) 7 : cephadm [INF] [24/Apr/2024:16:08:56] ENGINE Bus STARTED 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: cephadm 2024-04-24T16:08:56.836328+0000 mgr.smithi178.tjvcci (mgr.14120) 7 : cephadm [INF] [24/Apr/2024:16:08:56] ENGINE Bus STARTED 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: audit 2024-04-24T16:08:56.878427+0000 mon.smithi178 (mon.0) 57 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: audit 2024-04-24T16:08:56.878427+0000 mon.smithi178 (mon.0) 57 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: audit 2024-04-24T16:08:57.329099+0000 mgr.smithi178.tjvcci (mgr.14120) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: audit 2024-04-24T16:08:57.329099+0000 mgr.smithi178.tjvcci (mgr.14120) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: audit 2024-04-24T16:08:57.337593+0000 mon.smithi178 (mon.0) 58 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:57.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: audit 2024-04-24T16:08:57.337593+0000 mon.smithi178 (mon.0) 58 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:08:57.839 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: audit 2024-04-24T16:08:57.396842+0000 mon.smithi178 (mon.0) 59 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:08:57.839 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:57 smithi178 bash[18765]: audit 2024-04-24T16:08:57.396842+0000 mon.smithi178 (mon.0) 59 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:08:59.819 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout value unchanged 2024-04-24T16:08:59.820 INFO:teuthology.orchestra.run.smithi178.stdout:Generating ssh key... 2024-04-24T16:08:59.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:59 smithi178 bash[18765]: audit 2024-04-24T16:08:59.231621+0000 mgr.smithi178.tjvcci (mgr.14120) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:08:59.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:08:59 smithi178 bash[18765]: audit 2024-04-24T16:08:59.231621+0000 mgr.smithi178.tjvcci (mgr.14120) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:02.379 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:02 smithi178 bash[18765]: audit 2024-04-24T16:09:01.035439+0000 mgr.smithi178.tjvcci (mgr.14120) 10 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:02.379 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:02 smithi178 bash[18765]: audit 2024-04-24T16:09:01.035439+0000 mgr.smithi178.tjvcci (mgr.14120) 10 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:02.379 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:02 smithi178 bash[18765]: cephadm 2024-04-24T16:09:01.035691+0000 mgr.smithi178.tjvcci (mgr.14120) 11 : cephadm [INF] Generating ssh key... 2024-04-24T16:09:02.380 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:02 smithi178 bash[18765]: cephadm 2024-04-24T16:09:01.035691+0000 mgr.smithi178.tjvcci (mgr.14120) 11 : cephadm [INF] Generating ssh key... 2024-04-24T16:09:02.380 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:02 smithi178 bash[18765]: audit 2024-04-24T16:09:01.107631+0000 mon.smithi178 (mon.0) 60 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:02.380 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:02 smithi178 bash[18765]: audit 2024-04-24T16:09:01.107631+0000 mon.smithi178 (mon.0) 60 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:02.380 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:02 smithi178 bash[18765]: audit 2024-04-24T16:09:01.112563+0000 mon.smithi178 (mon.0) 61 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:02.380 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:02 smithi178 bash[18765]: audit 2024-04-24T16:09:01.112563+0000 mon.smithi178 (mon.0) 61 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:03.522 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCxvNUq6HpApDNEyAo0nj2zhJgbK2tlkvXzG29eYyEnzmh8U7eP+zCcIqGeKeqcxnxGFSh8d7kivZWlrbOp9jQpnljOGcG6H/Y3kCx2NufhcwG35TVxzhp/tWyt3l6vNdk9Zy3wR29RfOpFgWVgSQADpDCwzBq6zwuMkhCBuhJHGKWPfGY7+qagdU8+3osL2AuGJcJuk6zfDZqPctpv8FrQ7Ulu/nFtWAV7xZs+UWDnes+a0KVjam8NLGcTrRXA5RiowiVuaiodPnzecuQiuAONaSh2OHzZLYDFWRsAUVeTqc5wZ7u4/km/6qJs4V0eVgWVYU823vHSmmvpQZLdTg2RZ6ka8SMYZ7XNsEwGB4z3EQxKO0NU0Y6fT+D5KxgPKdujPjq2mi9Mgs3lOklEcBfpsMqPE47of2S+z127CpwfBQ9sFI5P3ddpYf2DfxFUHgZgTXSxIHSR6WzLVoJ5gKiZXKeSwEIqp+O97xK4MnPC7Hngz34rp+Kh4qZw0HIN4Tk= ceph-ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:09:03.522 INFO:teuthology.orchestra.run.smithi178.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-04-24T16:09:03.522 INFO:teuthology.orchestra.run.smithi178.stdout:Adding key to root@localhost authorized_keys... 2024-04-24T16:09:03.522 INFO:teuthology.orchestra.run.smithi178.stdout:Adding host smithi178... 2024-04-24T16:09:03.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:03 smithi178 bash[18765]: audit 2024-04-24T16:09:02.963731+0000 mgr.smithi178.tjvcci (mgr.14120) 12 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:03.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:03 smithi178 bash[18765]: audit 2024-04-24T16:09:02.963731+0000 mgr.smithi178.tjvcci (mgr.14120) 12 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:05.680 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:05 smithi178 bash[18765]: audit 2024-04-24T16:09:04.777311+0000 mgr.smithi178.tjvcci (mgr.14120) 13 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi178", "addr": "172.21.15.178", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:05.681 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:05 smithi178 bash[18765]: audit 2024-04-24T16:09:04.777311+0000 mgr.smithi178.tjvcci (mgr.14120) 13 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi178", "addr": "172.21.15.178", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:05.681 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:05 smithi178 bash[18765]: cephadm 2024-04-24T16:09:05.368251+0000 mgr.smithi178.tjvcci (mgr.14120) 14 : cephadm [INF] Deploying cephadm binary to smithi178 2024-04-24T16:09:05.681 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:05 smithi178 bash[18765]: cephadm 2024-04-24T16:09:05.368251+0000 mgr.smithi178.tjvcci (mgr.14120) 14 : cephadm [INF] Deploying cephadm binary to smithi178 2024-04-24T16:09:11.119 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout Added host 'smithi178' with addr '172.21.15.178' 2024-04-24T16:09:11.120 INFO:teuthology.orchestra.run.smithi178.stdout:Deploying mon service with default placement... 2024-04-24T16:09:11.398 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:11 smithi178 bash[18765]: audit 2024-04-24T16:09:10.255923+0000 mon.smithi178 (mon.0) 62 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:11.398 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:11 smithi178 bash[18765]: audit 2024-04-24T16:09:10.255923+0000 mon.smithi178 (mon.0) 62 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:11.398 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:11 smithi178 bash[18765]: cephadm 2024-04-24T16:09:10.256369+0000 mgr.smithi178.tjvcci (mgr.14120) 15 : cephadm [INF] Added host smithi178 2024-04-24T16:09:11.398 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:11 smithi178 bash[18765]: cephadm 2024-04-24T16:09:10.256369+0000 mgr.smithi178.tjvcci (mgr.14120) 15 : cephadm [INF] Added host smithi178 2024-04-24T16:09:11.398 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:11 smithi178 bash[18765]: audit 2024-04-24T16:09:10.291838+0000 mon.smithi178 (mon.0) 63 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:09:11.399 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:11 smithi178 bash[18765]: audit 2024-04-24T16:09:10.291838+0000 mon.smithi178 (mon.0) 63 : audit [DBG] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:09:13.831 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-04-24T16:09:13.832 INFO:teuthology.orchestra.run.smithi178.stdout:Deploying mgr service with default placement... 2024-04-24T16:09:14.513 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:14 smithi178 bash[18765]: audit 2024-04-24T16:09:13.257024+0000 mgr.smithi178.tjvcci (mgr.14120) 16 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:14.514 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:14 smithi178 bash[18765]: audit 2024-04-24T16:09:13.257024+0000 mgr.smithi178.tjvcci (mgr.14120) 16 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:14.514 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:14 smithi178 bash[18765]: cephadm 2024-04-24T16:09:13.260070+0000 mgr.smithi178.tjvcci (mgr.14120) 17 : cephadm [INF] Saving service mon spec with placement count:5 2024-04-24T16:09:14.514 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:14 smithi178 bash[18765]: cephadm 2024-04-24T16:09:13.260070+0000 mgr.smithi178.tjvcci (mgr.14120) 17 : cephadm [INF] Saving service mon spec with placement count:5 2024-04-24T16:09:14.514 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:14 smithi178 bash[18765]: audit 2024-04-24T16:09:13.264793+0000 mon.smithi178 (mon.0) 64 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:14.514 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:14 smithi178 bash[18765]: audit 2024-04-24T16:09:13.264793+0000 mon.smithi178 (mon.0) 64 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:14.514 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:14 smithi178 bash[18765]: audit 2024-04-24T16:09:13.518521+0000 mon.smithi178 (mon.0) 65 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:14.514 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:14 smithi178 bash[18765]: audit 2024-04-24T16:09:13.518521+0000 mon.smithi178 (mon.0) 65 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:14.514 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:14 smithi178 bash[18765]: audit 2024-04-24T16:09:14.061374+0000 mon.smithi178 (mon.0) 66 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:14.514 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:14 smithi178 bash[18765]: audit 2024-04-24T16:09:14.061374+0000 mon.smithi178 (mon.0) 66 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:15.723 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-04-24T16:09:15.723 INFO:teuthology.orchestra.run.smithi178.stdout:Deploying crash service with default placement... 2024-04-24T16:09:16.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:16 smithi178 bash[18765]: cluster 2024-04-24T16:09:14.500749+0000 mgr.smithi178.tjvcci (mgr.14120) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:16.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:16 smithi178 bash[18765]: cluster 2024-04-24T16:09:14.500749+0000 mgr.smithi178.tjvcci (mgr.14120) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:16.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:16 smithi178 bash[18765]: audit 2024-04-24T16:09:15.080754+0000 mgr.smithi178.tjvcci (mgr.14120) 19 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:16.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:16 smithi178 bash[18765]: audit 2024-04-24T16:09:15.080754+0000 mgr.smithi178.tjvcci (mgr.14120) 19 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:16.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:16 smithi178 bash[18765]: cephadm 2024-04-24T16:09:15.083185+0000 mgr.smithi178.tjvcci (mgr.14120) 20 : cephadm [INF] Saving service mgr spec with placement count:2 2024-04-24T16:09:16.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:16 smithi178 bash[18765]: cephadm 2024-04-24T16:09:15.083185+0000 mgr.smithi178.tjvcci (mgr.14120) 20 : cephadm [INF] Saving service mgr spec with placement count:2 2024-04-24T16:09:16.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:16 smithi178 bash[18765]: audit 2024-04-24T16:09:15.086895+0000 mon.smithi178 (mon.0) 67 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:16.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:16 smithi178 bash[18765]: audit 2024-04-24T16:09:15.086895+0000 mon.smithi178 (mon.0) 67 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:17.586 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-04-24T16:09:17.586 INFO:teuthology.orchestra.run.smithi178.stdout:Deploying ceph-exporter service with default placement... 2024-04-24T16:09:18.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:17 smithi178 bash[18765]: cluster 2024-04-24T16:09:16.501024+0000 mgr.smithi178.tjvcci (mgr.14120) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:18.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:17 smithi178 bash[18765]: cluster 2024-04-24T16:09:16.501024+0000 mgr.smithi178.tjvcci (mgr.14120) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:18.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:17 smithi178 bash[18765]: audit 2024-04-24T16:09:16.987819+0000 mgr.smithi178.tjvcci (mgr.14120) 22 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:18.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:17 smithi178 bash[18765]: audit 2024-04-24T16:09:16.987819+0000 mgr.smithi178.tjvcci (mgr.14120) 22 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:18.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:17 smithi178 bash[18765]: cephadm 2024-04-24T16:09:16.990227+0000 mgr.smithi178.tjvcci (mgr.14120) 23 : cephadm [INF] Saving service crash spec with placement * 2024-04-24T16:09:18.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:17 smithi178 bash[18765]: cephadm 2024-04-24T16:09:16.990227+0000 mgr.smithi178.tjvcci (mgr.14120) 23 : cephadm [INF] Saving service crash spec with placement * 2024-04-24T16:09:18.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:17 smithi178 bash[18765]: audit 2024-04-24T16:09:16.993697+0000 mon.smithi178 (mon.0) 68 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:18.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:17 smithi178 bash[18765]: audit 2024-04-24T16:09:16.993697+0000 mon.smithi178 (mon.0) 68 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:19.391 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-04-24T16:09:19.392 INFO:teuthology.orchestra.run.smithi178.stdout:Deploying prometheus service with default placement... 2024-04-24T16:09:20.076 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:19 smithi178 bash[18765]: cluster 2024-04-24T16:09:18.501395+0000 mgr.smithi178.tjvcci (mgr.14120) 24 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:20.076 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:19 smithi178 bash[18765]: cluster 2024-04-24T16:09:18.501395+0000 mgr.smithi178.tjvcci (mgr.14120) 24 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:20.076 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:19 smithi178 bash[18765]: audit 2024-04-24T16:09:18.808024+0000 mgr.smithi178.tjvcci (mgr.14120) 25 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:20.077 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:19 smithi178 bash[18765]: audit 2024-04-24T16:09:18.808024+0000 mgr.smithi178.tjvcci (mgr.14120) 25 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:20.077 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:19 smithi178 bash[18765]: cephadm 2024-04-24T16:09:18.811155+0000 mgr.smithi178.tjvcci (mgr.14120) 26 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-04-24T16:09:20.077 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:19 smithi178 bash[18765]: cephadm 2024-04-24T16:09:18.811155+0000 mgr.smithi178.tjvcci (mgr.14120) 26 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-04-24T16:09:20.077 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:19 smithi178 bash[18765]: audit 2024-04-24T16:09:18.814898+0000 mon.smithi178 (mon.0) 69 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:20.077 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:19 smithi178 bash[18765]: audit 2024-04-24T16:09:18.814898+0000 mon.smithi178 (mon.0) 69 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:21.197 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-04-24T16:09:21.198 INFO:teuthology.orchestra.run.smithi178.stdout:Deploying grafana service with default placement... 2024-04-24T16:09:22.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:21 smithi178 bash[18765]: cluster 2024-04-24T16:09:20.501841+0000 mgr.smithi178.tjvcci (mgr.14120) 27 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:22.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:21 smithi178 bash[18765]: cluster 2024-04-24T16:09:20.501841+0000 mgr.smithi178.tjvcci (mgr.14120) 27 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:22.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:21 smithi178 bash[18765]: audit 2024-04-24T16:09:20.690566+0000 mgr.smithi178.tjvcci (mgr.14120) 28 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:22.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:21 smithi178 bash[18765]: audit 2024-04-24T16:09:20.690566+0000 mgr.smithi178.tjvcci (mgr.14120) 28 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:22.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:21 smithi178 bash[18765]: cephadm 2024-04-24T16:09:20.692243+0000 mgr.smithi178.tjvcci (mgr.14120) 29 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-04-24T16:09:22.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:21 smithi178 bash[18765]: cephadm 2024-04-24T16:09:20.692243+0000 mgr.smithi178.tjvcci (mgr.14120) 29 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-04-24T16:09:22.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:21 smithi178 bash[18765]: audit 2024-04-24T16:09:20.695549+0000 mon.smithi178 (mon.0) 70 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:22.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:21 smithi178 bash[18765]: audit 2024-04-24T16:09:20.695549+0000 mon.smithi178 (mon.0) 70 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:23.062 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-04-24T16:09:23.062 INFO:teuthology.orchestra.run.smithi178.stdout:Deploying node-exporter service with default placement... 2024-04-24T16:09:23.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:22 smithi178 bash[18765]: audit 2024-04-24T16:09:21.946740+0000 mon.smithi178 (mon.0) 71 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:23.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:22 smithi178 bash[18765]: audit 2024-04-24T16:09:21.946740+0000 mon.smithi178 (mon.0) 71 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:23.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:22 smithi178 bash[18765]: audit 2024-04-24T16:09:22.438110+0000 mgr.smithi178.tjvcci (mgr.14120) 30 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:23.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:22 smithi178 bash[18765]: audit 2024-04-24T16:09:22.438110+0000 mgr.smithi178.tjvcci (mgr.14120) 30 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:23.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:22 smithi178 bash[18765]: cephadm 2024-04-24T16:09:22.446307+0000 mgr.smithi178.tjvcci (mgr.14120) 31 : cephadm [INF] Saving service grafana spec with placement count:1 2024-04-24T16:09:23.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:22 smithi178 bash[18765]: cephadm 2024-04-24T16:09:22.446307+0000 mgr.smithi178.tjvcci (mgr.14120) 31 : cephadm [INF] Saving service grafana spec with placement count:1 2024-04-24T16:09:23.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:22 smithi178 bash[18765]: audit 2024-04-24T16:09:22.449544+0000 mon.smithi178 (mon.0) 72 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:23.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:22 smithi178 bash[18765]: audit 2024-04-24T16:09:22.449544+0000 mon.smithi178 (mon.0) 72 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:23.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:22 smithi178 bash[18765]: audit 2024-04-24T16:09:22.938144+0000 mon.smithi178 (mon.0) 73 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:23.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:22 smithi178 bash[18765]: audit 2024-04-24T16:09:22.938144+0000 mon.smithi178 (mon.0) 73 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:24 smithi178 bash[18765]: cluster 2024-04-24T16:09:22.502142+0000 mgr.smithi178.tjvcci (mgr.14120) 32 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:24 smithi178 bash[18765]: cluster 2024-04-24T16:09:22.502142+0000 mgr.smithi178.tjvcci (mgr.14120) 32 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:24 smithi178 bash[18765]: audit 2024-04-24T16:09:24.395693+0000 mon.smithi178 (mon.0) 74 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:24 smithi178 bash[18765]: audit 2024-04-24T16:09:24.395693+0000 mon.smithi178 (mon.0) 74 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:24.935 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-04-24T16:09:24.935 INFO:teuthology.orchestra.run.smithi178.stdout:Deploying alertmanager service with default placement... 2024-04-24T16:09:25.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:25 smithi178 bash[18765]: audit 2024-04-24T16:09:24.390086+0000 mgr.smithi178.tjvcci (mgr.14120) 33 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:25.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:25 smithi178 bash[18765]: audit 2024-04-24T16:09:24.390086+0000 mgr.smithi178.tjvcci (mgr.14120) 33 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:25.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:25 smithi178 bash[18765]: cephadm 2024-04-24T16:09:24.391274+0000 mgr.smithi178.tjvcci (mgr.14120) 34 : cephadm [INF] Saving service node-exporter spec with placement * 2024-04-24T16:09:25.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:25 smithi178 bash[18765]: cephadm 2024-04-24T16:09:24.391274+0000 mgr.smithi178.tjvcci (mgr.14120) 34 : cephadm [INF] Saving service node-exporter spec with placement * 2024-04-24T16:09:26.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:26 smithi178 bash[18765]: cluster 2024-04-24T16:09:24.502435+0000 mgr.smithi178.tjvcci (mgr.14120) 35 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:26.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:26 smithi178 bash[18765]: cluster 2024-04-24T16:09:24.502435+0000 mgr.smithi178.tjvcci (mgr.14120) 35 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:26.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:26 smithi178 bash[18765]: audit 2024-04-24T16:09:26.222945+0000 mon.smithi178 (mon.0) 75 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:26.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:26 smithi178 bash[18765]: audit 2024-04-24T16:09:26.222945+0000 mon.smithi178 (mon.0) 75 : audit [INF] from='mgr.14120 172.21.15.178:0/1377889603' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:26.857 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-04-24T16:09:27.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:27 smithi178 bash[18765]: audit 2024-04-24T16:09:26.215324+0000 mgr.smithi178.tjvcci (mgr.14120) 36 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:27.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:27 smithi178 bash[18765]: audit 2024-04-24T16:09:26.215324+0000 mgr.smithi178.tjvcci (mgr.14120) 36 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:27.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:27 smithi178 bash[18765]: cephadm 2024-04-24T16:09:26.217753+0000 mgr.smithi178.tjvcci (mgr.14120) 37 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-04-24T16:09:27.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:27 smithi178 bash[18765]: cephadm 2024-04-24T16:09:26.217753+0000 mgr.smithi178.tjvcci (mgr.14120) 37 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-04-24T16:09:28.732 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:28 smithi178 bash[18765]: cluster 2024-04-24T16:09:26.502872+0000 mgr.smithi178.tjvcci (mgr.14120) 38 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:28.732 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:28 smithi178 bash[18765]: cluster 2024-04-24T16:09:26.502872+0000 mgr.smithi178.tjvcci (mgr.14120) 38 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:28.732 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:28 smithi178 bash[18765]: audit 2024-04-24T16:09:28.134670+0000 mon.smithi178 (mon.0) 76 : audit [INF] from='client.? 172.21.15.178:0/564848046' entity='client.admin' 2024-04-24T16:09:28.733 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:28 smithi178 bash[18765]: audit 2024-04-24T16:09:28.134670+0000 mon.smithi178 (mon.0) 76 : audit [INF] from='client.? 172.21.15.178:0/564848046' entity='client.admin' 2024-04-24T16:09:30.563 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:30 smithi178 bash[18765]: cluster 2024-04-24T16:09:28.503321+0000 mgr.smithi178.tjvcci (mgr.14120) 39 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:30.563 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:30 smithi178 bash[18765]: cluster 2024-04-24T16:09:28.503321+0000 mgr.smithi178.tjvcci (mgr.14120) 39 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:31.249 INFO:teuthology.orchestra.run.smithi178.stdout:Enabling the dashboard module... 2024-04-24T16:09:31.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:31 smithi178 bash[18765]: cluster 2024-04-24T16:09:30.503694+0000 mgr.smithi178.tjvcci (mgr.14120) 40 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:31.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:31 smithi178 bash[18765]: cluster 2024-04-24T16:09:30.503694+0000 mgr.smithi178.tjvcci (mgr.14120) 40 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:31.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:31 smithi178 bash[18765]: audit 2024-04-24T16:09:30.550312+0000 mon.smithi178 (mon.0) 77 : audit [INF] from='client.? 172.21.15.178:0/3728127324' entity='client.admin' 2024-04-24T16:09:31.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:31 smithi178 bash[18765]: audit 2024-04-24T16:09:30.550312+0000 mon.smithi178 (mon.0) 77 : audit [INF] from='client.? 172.21.15.178:0/3728127324' entity='client.admin' 2024-04-24T16:09:33.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:33 smithi178 bash[18765]: cluster 2024-04-24T16:09:32.504098+0000 mgr.smithi178.tjvcci (mgr.14120) 41 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:33.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:33 smithi178 bash[18765]: cluster 2024-04-24T16:09:32.504098+0000 mgr.smithi178.tjvcci (mgr.14120) 41 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:09:33.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:33 smithi178 bash[18765]: audit 2024-04-24T16:09:32.643342+0000 mon.smithi178 (mon.0) 78 : audit [INF] from='client.? 172.21.15.178:0/273091953' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-04-24T16:09:33.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:33 smithi178 bash[18765]: audit 2024-04-24T16:09:32.643342+0000 mon.smithi178 (mon.0) 78 : audit [INF] from='client.? 172.21.15.178:0/273091953' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-04-24T16:09:34.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:34 smithi178 bash[18765]: audit 2024-04-24T16:09:33.556205+0000 mon.smithi178 (mon.0) 79 : audit [INF] from='client.? 172.21.15.178:0/273091953' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-04-24T16:09:34.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:34 smithi178 bash[18765]: audit 2024-04-24T16:09:33.556205+0000 mon.smithi178 (mon.0) 79 : audit [INF] from='client.? 172.21.15.178:0/273091953' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-04-24T16:09:34.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:34 smithi178 bash[18765]: cluster 2024-04-24T16:09:33.561918+0000 mon.smithi178 (mon.0) 80 : cluster [DBG] mgrmap e9: smithi178.tjvcci(active, since 39s) 2024-04-24T16:09:34.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:34 smithi178 bash[18765]: cluster 2024-04-24T16:09:33.561918+0000 mon.smithi178 (mon.0) 80 : cluster [DBG] mgrmap e9: smithi178.tjvcci(active, since 39s) 2024-04-24T16:09:35.702 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:35 smithi178 bash[18765]: audit 2024-04-24T16:09:35.529447+0000 mon.smithi178 (mon.0) 81 : audit [DBG] from='client.? 172.21.15.178:0/2268853567' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-24T16:09:35.702 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:35 smithi178 bash[18765]: audit 2024-04-24T16:09:35.529447+0000 mon.smithi178 (mon.0) 81 : audit [DBG] from='client.? 172.21.15.178:0/2268853567' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-24T16:09:36.169 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout { 2024-04-24T16:09:36.170 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-04-24T16:09:36.170 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-24T16:09:36.170 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "active_name": "smithi178.tjvcci", 2024-04-24T16:09:36.170 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-24T16:09:36.170 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout } 2024-04-24T16:09:36.170 INFO:teuthology.orchestra.run.smithi178.stdout:Waiting for the mgr to restart... 2024-04-24T16:09:36.170 INFO:teuthology.orchestra.run.smithi178.stdout:Waiting for mgr epoch 9... 2024-04-24T16:09:41.858 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: cluster 2024-04-24T16:09:41.736321+0000 mon.smithi178 (mon.0) 82 : cluster [INF] Active manager daemon smithi178.tjvcci restarted 2024-04-24T16:09:41.859 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: cluster 2024-04-24T16:09:41.736321+0000 mon.smithi178 (mon.0) 82 : cluster [INF] Active manager daemon smithi178.tjvcci restarted 2024-04-24T16:09:41.859 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: cluster 2024-04-24T16:09:41.736783+0000 mon.smithi178 (mon.0) 83 : cluster [INF] Activating manager daemon smithi178.tjvcci 2024-04-24T16:09:41.859 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: cluster 2024-04-24T16:09:41.736783+0000 mon.smithi178 (mon.0) 83 : cluster [INF] Activating manager daemon smithi178.tjvcci 2024-04-24T16:09:41.859 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: cluster 2024-04-24T16:09:41.740181+0000 mon.smithi178 (mon.0) 84 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-04-24T16:09:41.859 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: cluster 2024-04-24T16:09:41.740181+0000 mon.smithi178 (mon.0) 84 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-04-24T16:09:41.859 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: cluster 2024-04-24T16:09:41.740302+0000 mon.smithi178 (mon.0) 85 : cluster [DBG] mgrmap e10: smithi178.tjvcci(active, starting, since 0.00372328s) 2024-04-24T16:09:41.859 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: cluster 2024-04-24T16:09:41.740302+0000 mon.smithi178 (mon.0) 85 : cluster [DBG] mgrmap e10: smithi178.tjvcci(active, starting, since 0.00372328s) 2024-04-24T16:09:41.859 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: audit 2024-04-24T16:09:41.743155+0000 mon.smithi178 (mon.0) 86 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi178"}]: dispatch 2024-04-24T16:09:41.859 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: audit 2024-04-24T16:09:41.743155+0000 mon.smithi178 (mon.0) 86 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi178"}]: dispatch 2024-04-24T16:09:41.859 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: audit 2024-04-24T16:09:41.745238+0000 mon.smithi178 (mon.0) 87 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr metadata", "who": "smithi178.tjvcci", "id": "smithi178.tjvcci"}]: dispatch 2024-04-24T16:09:41.859 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: audit 2024-04-24T16:09:41.745238+0000 mon.smithi178 (mon.0) 87 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr metadata", "who": "smithi178.tjvcci", "id": "smithi178.tjvcci"}]: dispatch 2024-04-24T16:09:41.860 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: audit 2024-04-24T16:09:41.746135+0000 mon.smithi178 (mon.0) 88 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T16:09:41.860 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: audit 2024-04-24T16:09:41.746135+0000 mon.smithi178 (mon.0) 88 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T16:09:41.860 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: audit 2024-04-24T16:09:41.746322+0000 mon.smithi178 (mon.0) 89 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T16:09:41.860 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: audit 2024-04-24T16:09:41.746322+0000 mon.smithi178 (mon.0) 89 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T16:09:41.860 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: audit 2024-04-24T16:09:41.746495+0000 mon.smithi178 (mon.0) 90 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T16:09:41.860 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: audit 2024-04-24T16:09:41.746495+0000 mon.smithi178 (mon.0) 90 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T16:09:41.860 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: cluster 2024-04-24T16:09:41.771715+0000 mon.smithi178 (mon.0) 91 : cluster [INF] Manager daemon smithi178.tjvcci is now available 2024-04-24T16:09:41.860 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:41 smithi178 bash[18765]: cluster 2024-04-24T16:09:41.771715+0000 mon.smithi178 (mon.0) 91 : cluster [INF] Manager daemon smithi178.tjvcci is now available 2024-04-24T16:09:43.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:42 smithi178 bash[18765]: audit 2024-04-24T16:09:41.797173+0000 mon.smithi178 (mon.0) 92 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:09:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:42 smithi178 bash[18765]: audit 2024-04-24T16:09:41.797173+0000 mon.smithi178 (mon.0) 92 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:09:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:42 smithi178 bash[18765]: audit 2024-04-24T16:09:41.815400+0000 mon.smithi178 (mon.0) 93 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/mirror_snapshot_schedule"}]: dispatch 2024-04-24T16:09:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:42 smithi178 bash[18765]: audit 2024-04-24T16:09:41.815400+0000 mon.smithi178 (mon.0) 93 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/mirror_snapshot_schedule"}]: dispatch 2024-04-24T16:09:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:42 smithi178 bash[18765]: audit 2024-04-24T16:09:41.819030+0000 mon.smithi178 (mon.0) 94 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/trash_purge_schedule"}]: dispatch 2024-04-24T16:09:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:42 smithi178 bash[18765]: audit 2024-04-24T16:09:41.819030+0000 mon.smithi178 (mon.0) 94 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/trash_purge_schedule"}]: dispatch 2024-04-24T16:09:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:42 smithi178 bash[18765]: cluster 2024-04-24T16:09:42.745151+0000 mon.smithi178 (mon.0) 95 : cluster [DBG] mgrmap e11: smithi178.tjvcci(active, since 1.00857s) 2024-04-24T16:09:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:42 smithi178 bash[18765]: cluster 2024-04-24T16:09:42.745151+0000 mon.smithi178 (mon.0) 95 : cluster [DBG] mgrmap e11: smithi178.tjvcci(active, since 1.00857s) 2024-04-24T16:09:43.458 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout { 2024-04-24T16:09:43.458 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-04-24T16:09:43.458 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-24T16:09:43.459 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout } 2024-04-24T16:09:43.459 INFO:teuthology.orchestra.run.smithi178.stdout:mgr epoch 9 is available 2024-04-24T16:09:43.459 INFO:teuthology.orchestra.run.smithi178.stdout:Generating a dashboard self-signed certificate... 2024-04-24T16:09:44.079 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:43 smithi178 bash[18765]: cephadm 2024-04-24T16:09:43.356698+0000 mgr.smithi178.tjvcci (mgr.14164) 3 : cephadm [INF] [24/Apr/2024:16:09:43] ENGINE Bus STARTING 2024-04-24T16:09:44.079 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:43 smithi178 bash[18765]: cephadm 2024-04-24T16:09:43.356698+0000 mgr.smithi178.tjvcci (mgr.14164) 3 : cephadm [INF] [24/Apr/2024:16:09:43] ENGINE Bus STARTING 2024-04-24T16:09:44.079 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:43 smithi178 bash[18765]: cephadm 2024-04-24T16:09:43.459386+0000 mgr.smithi178.tjvcci (mgr.14164) 4 : cephadm [INF] [24/Apr/2024:16:09:43] ENGINE Serving on http://172.21.15.178:8765 2024-04-24T16:09:44.080 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:43 smithi178 bash[18765]: cephadm 2024-04-24T16:09:43.459386+0000 mgr.smithi178.tjvcci (mgr.14164) 4 : cephadm [INF] [24/Apr/2024:16:09:43] ENGINE Serving on http://172.21.15.178:8765 2024-04-24T16:09:44.080 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:43 smithi178 bash[18765]: cephadm 2024-04-24T16:09:43.577088+0000 mgr.smithi178.tjvcci (mgr.14164) 5 : cephadm [INF] [24/Apr/2024:16:09:43] ENGINE Serving on https://172.21.15.178:7150 2024-04-24T16:09:44.080 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:43 smithi178 bash[18765]: cephadm 2024-04-24T16:09:43.577088+0000 mgr.smithi178.tjvcci (mgr.14164) 5 : cephadm [INF] [24/Apr/2024:16:09:43] ENGINE Serving on https://172.21.15.178:7150 2024-04-24T16:09:44.080 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:43 smithi178 bash[18765]: cephadm 2024-04-24T16:09:43.577293+0000 mgr.smithi178.tjvcci (mgr.14164) 6 : cephadm [INF] [24/Apr/2024:16:09:43] ENGINE Bus STARTED 2024-04-24T16:09:44.080 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:43 smithi178 bash[18765]: cephadm 2024-04-24T16:09:43.577293+0000 mgr.smithi178.tjvcci (mgr.14164) 6 : cephadm [INF] [24/Apr/2024:16:09:43] ENGINE Bus STARTED 2024-04-24T16:09:45.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:44 smithi178 bash[18765]: cluster 2024-04-24T16:09:43.797309+0000 mon.smithi178 (mon.0) 96 : cluster [DBG] mgrmap e12: smithi178.tjvcci(active, since 2s) 2024-04-24T16:09:45.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:44 smithi178 bash[18765]: cluster 2024-04-24T16:09:43.797309+0000 mon.smithi178 (mon.0) 96 : cluster [DBG] mgrmap e12: smithi178.tjvcci(active, since 2s) 2024-04-24T16:09:45.422 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-04-24T16:09:45.422 INFO:teuthology.orchestra.run.smithi178.stdout:Creating initial admin user... 2024-04-24T16:09:46.055 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:45 smithi178 bash[18765]: audit 2024-04-24T16:09:44.645123+0000 mgr.smithi178.tjvcci (mgr.14164) 7 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:46.055 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:45 smithi178 bash[18765]: audit 2024-04-24T16:09:44.645123+0000 mgr.smithi178.tjvcci (mgr.14164) 7 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:09:46.055 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:45 smithi178 bash[18765]: audit 2024-04-24T16:09:44.798572+0000 mon.smithi178 (mon.0) 97 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:46.055 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:45 smithi178 bash[18765]: audit 2024-04-24T16:09:44.798572+0000 mon.smithi178 (mon.0) 97 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:46.055 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:45 smithi178 bash[18765]: audit 2024-04-24T16:09:44.807421+0000 mon.smithi178 (mon.0) 98 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:46.055 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:45 smithi178 bash[18765]: audit 2024-04-24T16:09:44.807421+0000 mon.smithi178 (mon.0) 98 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:47.554 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$1KDW2JOq1FDqG3aRSEyqCusKIKW2Sf5xaDvY7QHXNw7n5s7GWQ7oi", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1713974986, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-04-24T16:09:47.554 INFO:teuthology.orchestra.run.smithi178.stdout:Fetching dashboard port number... 2024-04-24T16:09:48.262 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:47 smithi178 bash[18765]: audit 2024-04-24T16:09:46.646142+0000 mgr.smithi178.tjvcci (mgr.14164) 8 : audit [DBG] from='client.14178 -' 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-04-24T16:09:48.263 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:47 smithi178 bash[18765]: audit 2024-04-24T16:09:46.646142+0000 mgr.smithi178.tjvcci (mgr.14164) 8 : audit [DBG] from='client.14178 -' 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-04-24T16:09:48.263 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:47 smithi178 bash[18765]: audit 2024-04-24T16:09:46.894420+0000 mon.smithi178 (mon.0) 99 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:48.263 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:47 smithi178 bash[18765]: audit 2024-04-24T16:09:46.894420+0000 mon.smithi178 (mon.0) 99 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:49.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:48 smithi178 bash[18765]: cluster 2024-04-24T16:09:47.899322+0000 mon.smithi178 (mon.0) 100 : cluster [DBG] mgrmap e13: smithi178.tjvcci(active, since 6s) 2024-04-24T16:09:49.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:48 smithi178 bash[18765]: cluster 2024-04-24T16:09:47.899322+0000 mon.smithi178 (mon.0) 100 : cluster [DBG] mgrmap e13: smithi178.tjvcci(active, since 6s) 2024-04-24T16:09:49.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:48 smithi178 bash[18765]: audit 2024-04-24T16:09:48.661695+0000 mon.smithi178 (mon.0) 101 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:49.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:48 smithi178 bash[18765]: audit 2024-04-24T16:09:48.661695+0000 mon.smithi178 (mon.0) 101 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:49.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:48 smithi178 bash[18765]: audit 2024-04-24T16:09:48.863580+0000 mon.smithi178 (mon.0) 102 : audit [DBG] from='client.? 172.21.15.178:0/2013504399' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-04-24T16:09:49.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:48 smithi178 bash[18765]: audit 2024-04-24T16:09:48.863580+0000 mon.smithi178 (mon.0) 102 : audit [DBG] from='client.? 172.21.15.178:0/2013504399' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-04-24T16:09:49.468 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stdout 8443 2024-04-24T16:09:49.468 INFO:teuthology.orchestra.run.smithi178.stdout:firewalld does not appear to be present 2024-04-24T16:09:49.468 INFO:teuthology.orchestra.run.smithi178.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-04-24T16:09:49.470 INFO:teuthology.orchestra.run.smithi178.stdout:Ceph Dashboard is now available at: 2024-04-24T16:09:49.470 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:09:49.470 INFO:teuthology.orchestra.run.smithi178.stdout: URL: https://smithi178.front.sepia.ceph.com:8443/ 2024-04-24T16:09:49.470 INFO:teuthology.orchestra.run.smithi178.stdout: User: admin 2024-04-24T16:09:49.470 INFO:teuthology.orchestra.run.smithi178.stdout: Password: xa342qb5es 2024-04-24T16:09:49.471 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:09:49.471 INFO:teuthology.orchestra.run.smithi178.stdout:Saving cluster configuration to /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config directory 2024-04-24T16:09:49.471 INFO:teuthology.orchestra.run.smithi178.stdout:Enabling autotune for osd_memory_target 2024-04-24T16:09:51.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:50 smithi178 bash[18765]: audit 2024-04-24T16:09:49.703803+0000 mon.smithi178 (mon.0) 103 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:51.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:50 smithi178 bash[18765]: audit 2024-04-24T16:09:49.703803+0000 mon.smithi178 (mon.0) 103 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:53.172 INFO:teuthology.orchestra.run.smithi178.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-04-24T16:09:53.172 INFO:teuthology.orchestra.run.smithi178.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-04-24T16:09:53.172 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:09:53.172 INFO:teuthology.orchestra.run.smithi178.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout:Or, if you are only running a single cluster on this host: 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout:Please consider enabling telemetry to help improve Ceph: 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout: ceph telemetry on 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout:For more information see: 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:09:53.173 INFO:teuthology.orchestra.run.smithi178.stdout:Bootstrap complete. 2024-04-24T16:09:53.223 INFO:tasks.cephadm:Fetching config... 2024-04-24T16:09:53.223 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T16:09:53.224 DEBUG:teuthology.orchestra.run.smithi178:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-04-24T16:09:53.229 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-04-24T16:09:53.229 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T16:09:53.229 DEBUG:teuthology.orchestra.run.smithi178:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-04-24T16:09:53.274 INFO:tasks.cephadm:Fetching mon keyring... 2024-04-24T16:09:53.274 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T16:09:53.274 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd if=/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/keyring of=/dev/stdout 2024-04-24T16:09:53.334 INFO:tasks.cephadm:Fetching pub ssh key... 2024-04-24T16:09:53.334 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T16:09:53.334 DEBUG:teuthology.orchestra.run.smithi178:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-04-24T16:09:53.383 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-04-24T16:09:53.383 DEBUG:teuthology.orchestra.run.smithi178:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCxvNUq6HpApDNEyAo0nj2zhJgbK2tlkvXzG29eYyEnzmh8U7eP+zCcIqGeKeqcxnxGFSh8d7kivZWlrbOp9jQpnljOGcG6H/Y3kCx2NufhcwG35TVxzhp/tWyt3l6vNdk9Zy3wR29RfOpFgWVgSQADpDCwzBq6zwuMkhCBuhJHGKWPfGY7+qagdU8+3osL2AuGJcJuk6zfDZqPctpv8FrQ7Ulu/nFtWAV7xZs+UWDnes+a0KVjam8NLGcTrRXA5RiowiVuaiodPnzecuQiuAONaSh2OHzZLYDFWRsAUVeTqc5wZ7u4/km/6qJs4V0eVgWVYU823vHSmmvpQZLdTg2RZ6ka8SMYZ7XNsEwGB4z3EQxKO0NU0Y6fT+D5KxgPKdujPjq2mi9Mgs3lOklEcBfpsMqPE47of2S+z127CpwfBQ9sFI5P3ddpYf2DfxFUHgZgTXSxIHSR6WzLVoJ5gKiZXKeSwEIqp+O97xK4MnPC7Hngz34rp+Kh4qZw0HIN4Tk= ceph-ad55ec96-0254-11ef-bc93-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-24T16:09:53.443 INFO:teuthology.orchestra.run.smithi178.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCxvNUq6HpApDNEyAo0nj2zhJgbK2tlkvXzG29eYyEnzmh8U7eP+zCcIqGeKeqcxnxGFSh8d7kivZWlrbOp9jQpnljOGcG6H/Y3kCx2NufhcwG35TVxzhp/tWyt3l6vNdk9Zy3wR29RfOpFgWVgSQADpDCwzBq6zwuMkhCBuhJHGKWPfGY7+qagdU8+3osL2AuGJcJuk6zfDZqPctpv8FrQ7Ulu/nFtWAV7xZs+UWDnes+a0KVjam8NLGcTrRXA5RiowiVuaiodPnzecuQiuAONaSh2OHzZLYDFWRsAUVeTqc5wZ7u4/km/6qJs4V0eVgWVYU823vHSmmvpQZLdTg2RZ6ka8SMYZ7XNsEwGB4z3EQxKO0NU0Y6fT+D5KxgPKdujPjq2mi9Mgs3lOklEcBfpsMqPE47of2S+z127CpwfBQ9sFI5P3ddpYf2DfxFUHgZgTXSxIHSR6WzLVoJ5gKiZXKeSwEIqp+O97xK4MnPC7Hngz34rp+Kh4qZw0HIN4Tk= ceph-ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:09:53.452 DEBUG:teuthology.orchestra.run.smithi204:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCxvNUq6HpApDNEyAo0nj2zhJgbK2tlkvXzG29eYyEnzmh8U7eP+zCcIqGeKeqcxnxGFSh8d7kivZWlrbOp9jQpnljOGcG6H/Y3kCx2NufhcwG35TVxzhp/tWyt3l6vNdk9Zy3wR29RfOpFgWVgSQADpDCwzBq6zwuMkhCBuhJHGKWPfGY7+qagdU8+3osL2AuGJcJuk6zfDZqPctpv8FrQ7Ulu/nFtWAV7xZs+UWDnes+a0KVjam8NLGcTrRXA5RiowiVuaiodPnzecuQiuAONaSh2OHzZLYDFWRsAUVeTqc5wZ7u4/km/6qJs4V0eVgWVYU823vHSmmvpQZLdTg2RZ6ka8SMYZ7XNsEwGB4z3EQxKO0NU0Y6fT+D5KxgPKdujPjq2mi9Mgs3lOklEcBfpsMqPE47of2S+z127CpwfBQ9sFI5P3ddpYf2DfxFUHgZgTXSxIHSR6WzLVoJ5gKiZXKeSwEIqp+O97xK4MnPC7Hngz34rp+Kh4qZw0HIN4Tk= ceph-ad55ec96-0254-11ef-bc93-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-24T16:09:53.477 INFO:teuthology.orchestra.run.smithi204.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCxvNUq6HpApDNEyAo0nj2zhJgbK2tlkvXzG29eYyEnzmh8U7eP+zCcIqGeKeqcxnxGFSh8d7kivZWlrbOp9jQpnljOGcG6H/Y3kCx2NufhcwG35TVxzhp/tWyt3l6vNdk9Zy3wR29RfOpFgWVgSQADpDCwzBq6zwuMkhCBuhJHGKWPfGY7+qagdU8+3osL2AuGJcJuk6zfDZqPctpv8FrQ7Ulu/nFtWAV7xZs+UWDnes+a0KVjam8NLGcTrRXA5RiowiVuaiodPnzecuQiuAONaSh2OHzZLYDFWRsAUVeTqc5wZ7u4/km/6qJs4V0eVgWVYU823vHSmmvpQZLdTg2RZ6ka8SMYZ7XNsEwGB4z3EQxKO0NU0Y6fT+D5KxgPKdujPjq2mi9Mgs3lOklEcBfpsMqPE47of2S+z127CpwfBQ9sFI5P3ddpYf2DfxFUHgZgTXSxIHSR6WzLVoJ5gKiZXKeSwEIqp+O97xK4MnPC7Hngz34rp+Kh4qZw0HIN4Tk= ceph-ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:09:53.486 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-04-24T16:09:53.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:53 smithi178 bash[18765]: audit 2024-04-24T16:09:52.639518+0000 mon.smithi178 (mon.0) 104 : audit [INF] from='client.? 172.21.15.178:0/3115005426' entity='client.admin' 2024-04-24T16:09:53.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:53 smithi178 bash[18765]: audit 2024-04-24T16:09:52.639518+0000 mon.smithi178 (mon.0) 104 : audit [INF] from='client.? 172.21.15.178:0/3115005426' entity='client.admin' 2024-04-24T16:09:58.160 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:09:58.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:57 smithi178 bash[18765]: audit 2024-04-24T16:09:57.939346+0000 mon.smithi178 (mon.0) 105 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi178", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:09:58.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:57 smithi178 bash[18765]: audit 2024-04-24T16:09:57.939346+0000 mon.smithi178 (mon.0) 105 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi178", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:09:58.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:57 smithi178 bash[18765]: audit 2024-04-24T16:09:57.948337+0000 mon.smithi178 (mon.0) 106 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:58.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:57 smithi178 bash[18765]: audit 2024-04-24T16:09:57.948337+0000 mon.smithi178 (mon.0) 106 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:09:58.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:57 smithi178 bash[18765]: audit 2024-04-24T16:09:57.951767+0000 mon.smithi178 (mon.0) 107 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi178", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T16:09:58.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:57 smithi178 bash[18765]: audit 2024-04-24T16:09:57.951767+0000 mon.smithi178 (mon.0) 107 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi178", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T16:09:58.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:57 smithi178 bash[18765]: audit 2024-04-24T16:09:57.953414+0000 mon.smithi178 (mon.0) 108 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi178", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-24T16:09:58.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:57 smithi178 bash[18765]: audit 2024-04-24T16:09:57.953414+0000 mon.smithi178 (mon.0) 108 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi178", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-24T16:09:58.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:57 smithi178 bash[18765]: audit 2024-04-24T16:09:57.957970+0000 mon.smithi178 (mon.0) 109 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:09:58.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:57 smithi178 bash[18765]: audit 2024-04-24T16:09:57.957970+0000 mon.smithi178 (mon.0) 109 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:09:59.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:58 smithi178 bash[18765]: cephadm 2024-04-24T16:09:57.960141+0000 mgr.smithi178.tjvcci (mgr.14164) 9 : cephadm [INF] Deploying daemon ceph-exporter.smithi178 on smithi178 2024-04-24T16:09:59.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:09:58 smithi178 bash[18765]: cephadm 2024-04-24T16:09:57.960141+0000 mgr.smithi178.tjvcci (mgr.14164) 9 : cephadm [INF] Deploying daemon ceph-exporter.smithi178 on smithi178 2024-04-24T16:10:00.696 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-04-24T16:10:00.697 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-04-24T16:10:00.870 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:00 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:10:00.870 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:00 smithi178 bash[18765]: audit 2024-04-24T16:09:59.840687+0000 mon.smithi178 (mon.0) 110 : audit [INF] from='client.? 172.21.15.178:0/2934396490' entity='client.admin' 2024-04-24T16:10:00.870 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:00 smithi178 bash[18765]: audit 2024-04-24T16:09:59.840687+0000 mon.smithi178 (mon.0) 110 : audit [INF] from='client.? 172.21.15.178:0/2934396490' entity='client.admin' 2024-04-24T16:10:01.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:01 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:10:02.444 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.145895+0000 mon.smithi178 (mon.0) 111 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:02.445 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.145895+0000 mon.smithi178 (mon.0) 111 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:02.445 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.184791+0000 mon.smithi178 (mon.0) 112 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:02.445 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.184791+0000 mon.smithi178 (mon.0) 112 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:02.445 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.186975+0000 mon.smithi178 (mon.0) 113 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:02.445 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.186975+0000 mon.smithi178 (mon.0) 113 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:02.445 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.188330+0000 mon.smithi178 (mon.0) 114 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi178", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T16:10:02.445 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.188330+0000 mon.smithi178 (mon.0) 114 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi178", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T16:10:02.445 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.188921+0000 mon.smithi178 (mon.0) 115 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi178", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-24T16:10:02.445 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.188921+0000 mon.smithi178 (mon.0) 115 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi178", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-24T16:10:02.445 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.190549+0000 mon.smithi178 (mon.0) 116 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:10:02.445 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.190549+0000 mon.smithi178 (mon.0) 116 : audit [DBG] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:10:02.446 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: cephadm 2024-04-24T16:10:01.191351+0000 mgr.smithi178.tjvcci (mgr.14164) 10 : cephadm [INF] Deploying daemon crash.smithi178 on smithi178 2024-04-24T16:10:02.446 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: cephadm 2024-04-24T16:10:01.191351+0000 mgr.smithi178.tjvcci (mgr.14164) 10 : cephadm [INF] Deploying daemon crash.smithi178 on smithi178 2024-04-24T16:10:02.446 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.817160+0000 mon.smithi178 (mon.0) 117 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:02.446 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:02 smithi178 bash[18765]: audit 2024-04-24T16:10:01.817160+0000 mon.smithi178 (mon.0) 117 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:03.419 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:03 smithi178 bash[18765]: cluster 2024-04-24T16:10:01.942700+0000 mgr.smithi178.tjvcci (mgr.14164) 11 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:03.419 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:03 smithi178 bash[18765]: cluster 2024-04-24T16:10:01.942700+0000 mgr.smithi178.tjvcci (mgr.14164) 11 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:03.419 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:03 smithi178 bash[18765]: cluster 2024-04-24T16:10:02.813975+0000 mon.smithi178 (mon.0) 118 : cluster [WRN] Health check failed: failed to probe daemons or devices (CEPHADM_REFRESH_FAILED) 2024-04-24T16:10:03.419 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:03 smithi178 bash[18765]: cluster 2024-04-24T16:10:02.813975+0000 mon.smithi178 (mon.0) 118 : cluster [WRN] Health check failed: failed to probe daemons or devices (CEPHADM_REFRESH_FAILED) 2024-04-24T16:10:03.679 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:03 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:10:03.974 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:03 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:10:04.993 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:04 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:10:04.993 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:04 smithi178 bash[18765]: cluster 2024-04-24T16:10:03.943078+0000 mgr.smithi178.tjvcci (mgr.14164) 12 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:04.993 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:04 smithi178 bash[18765]: cluster 2024-04-24T16:10:03.943078+0000 mgr.smithi178.tjvcci (mgr.14164) 12 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:04.993 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:04 smithi178 bash[18765]: audit 2024-04-24T16:10:03.971538+0000 mon.smithi178 (mon.0) 119 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:04.993 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:04 smithi178 bash[18765]: audit 2024-04-24T16:10:03.971538+0000 mon.smithi178 (mon.0) 119 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:04.993 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:04 smithi178 bash[18765]: audit 2024-04-24T16:10:04.013540+0000 mon.smithi178 (mon.0) 120 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:04.993 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:04 smithi178 bash[18765]: audit 2024-04-24T16:10:04.013540+0000 mon.smithi178 (mon.0) 120 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:04.993 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:04 smithi178 bash[18765]: audit 2024-04-24T16:10:04.017786+0000 mon.smithi178 (mon.0) 121 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:04.993 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:04 smithi178 bash[18765]: audit 2024-04-24T16:10:04.017786+0000 mon.smithi178 (mon.0) 121 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:04.993 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:04 smithi178 bash[18765]: cephadm 2024-04-24T16:10:04.019416+0000 mgr.smithi178.tjvcci (mgr.14164) 13 : cephadm [INF] Deploying daemon node-exporter.smithi178 on smithi178 2024-04-24T16:10:04.994 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:04 smithi178 bash[18765]: cephadm 2024-04-24T16:10:04.019416+0000 mgr.smithi178.tjvcci (mgr.14164) 13 : cephadm [INF] Deploying daemon node-exporter.smithi178 on smithi178 2024-04-24T16:10:04.994 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:04 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:10:06.408 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:06 smithi178 bash[18765]: audit 2024-04-24T16:10:05.135217+0000 mon.smithi178 (mon.0) 122 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:06.409 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:06 smithi178 bash[18765]: audit 2024-04-24T16:10:05.135217+0000 mon.smithi178 (mon.0) 122 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:06.409 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:06 smithi178 bash[18765]: audit 2024-04-24T16:10:05.189388+0000 mon.smithi178 (mon.0) 123 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:06.409 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:06 smithi178 bash[18765]: audit 2024-04-24T16:10:05.189388+0000 mon.smithi178 (mon.0) 123 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:06.409 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:06 smithi178 bash[18765]: audit 2024-04-24T16:10:05.194016+0000 mon.smithi178 (mon.0) 124 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:06.409 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:06 smithi178 bash[18765]: audit 2024-04-24T16:10:05.194016+0000 mon.smithi178 (mon.0) 124 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:06.409 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:06 smithi178 bash[18765]: cephadm 2024-04-24T16:10:05.218180+0000 mgr.smithi178.tjvcci (mgr.14164) 14 : cephadm [INF] Deploying daemon alertmanager.smithi178 on smithi178 2024-04-24T16:10:06.409 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:06 smithi178 bash[18765]: cephadm 2024-04-24T16:10:05.218180+0000 mgr.smithi178.tjvcci (mgr.14164) 14 : cephadm [INF] Deploying daemon alertmanager.smithi178 on smithi178 2024-04-24T16:10:07.419 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:10:07.446 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:07 smithi178 bash[18765]: cluster 2024-04-24T16:10:05.943694+0000 mgr.smithi178.tjvcci (mgr.14164) 15 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:07.446 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:07 smithi178 bash[18765]: cluster 2024-04-24T16:10:05.943694+0000 mgr.smithi178.tjvcci (mgr.14164) 15 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:07.446 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:07 smithi178 bash[18765]: audit 2024-04-24T16:10:06.821209+0000 mon.smithi178 (mon.0) 125 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:07.446 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:07 smithi178 bash[18765]: audit 2024-04-24T16:10:06.821209+0000 mon.smithi178 (mon.0) 125 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:09.608 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:09 smithi178 bash[18765]: cluster 2024-04-24T16:10:07.944381+0000 mgr.smithi178.tjvcci (mgr.14164) 16 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:09.609 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:09 smithi178 bash[18765]: cluster 2024-04-24T16:10:07.944381+0000 mgr.smithi178.tjvcci (mgr.14164) 16 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:11.639 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:11 smithi178 bash[18765]: cluster 2024-04-24T16:10:09.945077+0000 mgr.smithi178.tjvcci (mgr.14164) 17 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:11.639 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:11 smithi178 bash[18765]: cluster 2024-04-24T16:10:09.945077+0000 mgr.smithi178.tjvcci (mgr.14164) 17 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:11.640 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:11 smithi178 bash[18765]: audit 2024-04-24T16:10:10.708758+0000 mon.smithi178 (mon.0) 126 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:11.640 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:11 smithi178 bash[18765]: audit 2024-04-24T16:10:10.708758+0000 mon.smithi178 (mon.0) 126 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:12.185 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi204 2024-04-24T16:10:12.186 DEBUG:teuthology.orchestra.run.smithi204:> set -ex 2024-04-24T16:10:12.186 DEBUG:teuthology.orchestra.run.smithi204:> dd of=/etc/ceph/ceph.conf 2024-04-24T16:10:12.192 DEBUG:teuthology.orchestra.run.smithi204:> set -ex 2024-04-24T16:10:12.192 DEBUG:teuthology.orchestra.run.smithi204:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-24T16:10:12.240 INFO:tasks.cephadm:Adding host smithi204 to orchestrator... 2024-04-24T16:10:12.240 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph orch host add smithi204 2024-04-24T16:10:12.504 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:12 smithi178 bash[18765]: audit 2024-04-24T16:10:10.703930+0000 mgr.smithi178.tjvcci (mgr.14164) 18 : audit [DBG] from='client.14189 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:10:12.504 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:12 smithi178 bash[18765]: audit 2024-04-24T16:10:10.703930+0000 mgr.smithi178.tjvcci (mgr.14164) 18 : audit [DBG] from='client.14189 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:10:13.507 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:13 smithi178 bash[18765]: cluster 2024-04-24T16:10:11.945802+0000 mgr.smithi178.tjvcci (mgr.14164) 19 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:13.508 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:13 smithi178 bash[18765]: cluster 2024-04-24T16:10:11.945802+0000 mgr.smithi178.tjvcci (mgr.14164) 19 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:15.317 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:15 smithi178 bash[18765]: cluster 2024-04-24T16:10:13.946490+0000 mgr.smithi178.tjvcci (mgr.14164) 20 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:15.317 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:15 smithi178 bash[18765]: cluster 2024-04-24T16:10:13.946490+0000 mgr.smithi178.tjvcci (mgr.14164) 20 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:16.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:15 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:10:16.344 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:16 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:10:16.978 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:10:17.698 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: cluster 2024-04-24T16:10:15.946909+0000 mgr.smithi178.tjvcci (mgr.14164) 21 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:17.698 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: cluster 2024-04-24T16:10:15.946909+0000 mgr.smithi178.tjvcci (mgr.14164) 21 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:17.698 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.387528+0000 mon.smithi178 (mon.0) 127 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.698 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.387528+0000 mon.smithi178 (mon.0) 127 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.698 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.409568+0000 mon.smithi178 (mon.0) 128 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.409568+0000 mon.smithi178 (mon.0) 128 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.411947+0000 mon.smithi178 (mon.0) 129 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.411947+0000 mon.smithi178 (mon.0) 129 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.414655+0000 mon.smithi178 (mon.0) 130 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.414655+0000 mon.smithi178 (mon.0) 130 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.416333+0000 mon.smithi178 (mon.0) 131 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.416333+0000 mon.smithi178 (mon.0) 131 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: cephadm 2024-04-24T16:10:16.426609+0000 mgr.smithi178.tjvcci (mgr.14164) 22 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: cephadm 2024-04-24T16:10:16.426609+0000 mgr.smithi178.tjvcci (mgr.14164) 22 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.476680+0000 mon.smithi178 (mon.0) 132 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.476680+0000 mon.smithi178 (mon.0) 132 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.480051+0000 mon.smithi178 (mon.0) 133 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.699 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.480051+0000 mon.smithi178 (mon.0) 133 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.700 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.748934+0000 mon.smithi178 (mon.0) 134 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-04-24T16:10:17.700 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.748934+0000 mon.smithi178 (mon.0) 134 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-04-24T16:10:17.700 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.751736+0000 mon.smithi178 (mon.0) 135 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.700 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.751736+0000 mon.smithi178 (mon.0) 135 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.700 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.828558+0000 mon.smithi178 (mon.0) 136 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:17.700 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:17 smithi178 bash[18765]: audit 2024-04-24T16:10:16.828558+0000 mon.smithi178 (mon.0) 136 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:18.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:18 smithi178 bash[18765]: audit 2024-04-24T16:10:16.749409+0000 mgr.smithi178.tjvcci (mgr.14164) 23 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-04-24T16:10:18.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:18 smithi178 bash[18765]: audit 2024-04-24T16:10:16.749409+0000 mgr.smithi178.tjvcci (mgr.14164) 23 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-04-24T16:10:18.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:18 smithi178 bash[18765]: cephadm 2024-04-24T16:10:16.765997+0000 mgr.smithi178.tjvcci (mgr.14164) 24 : cephadm [INF] Deploying daemon grafana.smithi178 on smithi178 2024-04-24T16:10:18.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:18 smithi178 bash[18765]: cephadm 2024-04-24T16:10:16.765997+0000 mgr.smithi178.tjvcci (mgr.14164) 24 : cephadm [INF] Deploying daemon grafana.smithi178 on smithi178 2024-04-24T16:10:19.788 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:19 smithi178 bash[18765]: cluster 2024-04-24T16:10:17.947599+0000 mgr.smithi178.tjvcci (mgr.14164) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:19.788 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:19 smithi178 bash[18765]: cluster 2024-04-24T16:10:17.947599+0000 mgr.smithi178.tjvcci (mgr.14164) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:19.788 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:19 smithi178 bash[18765]: audit 2024-04-24T16:10:18.474680+0000 mgr.smithi178.tjvcci (mgr.14164) 26 : audit [DBG] from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi204", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:10:19.788 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:19 smithi178 bash[18765]: audit 2024-04-24T16:10:18.474680+0000 mgr.smithi178.tjvcci (mgr.14164) 26 : audit [DBG] from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi204", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:10:20.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:20 smithi178 bash[18765]: cephadm 2024-04-24T16:10:19.219688+0000 mgr.smithi178.tjvcci (mgr.14164) 27 : cephadm [INF] Deploying cephadm binary to smithi204 2024-04-24T16:10:20.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:20 smithi178 bash[18765]: cephadm 2024-04-24T16:10:19.219688+0000 mgr.smithi178.tjvcci (mgr.14164) 27 : cephadm [INF] Deploying cephadm binary to smithi204 2024-04-24T16:10:21.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:21 smithi178 bash[18765]: cluster 2024-04-24T16:10:19.948023+0000 mgr.smithi178.tjvcci (mgr.14164) 28 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:21.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:21 smithi178 bash[18765]: cluster 2024-04-24T16:10:19.948023+0000 mgr.smithi178.tjvcci (mgr.14164) 28 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:23.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:23 smithi178 bash[18765]: cluster 2024-04-24T16:10:21.948391+0000 mgr.smithi178.tjvcci (mgr.14164) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:23.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:23 smithi178 bash[18765]: cluster 2024-04-24T16:10:21.948391+0000 mgr.smithi178.tjvcci (mgr.14164) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:24.709 INFO:teuthology.orchestra.run.smithi178.stdout:Added host 'smithi204' with addr '172.21.15.204' 2024-04-24T16:10:25.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:25 smithi178 bash[18765]: cluster 2024-04-24T16:10:23.948738+0000 mgr.smithi178.tjvcci (mgr.14164) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:25.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:25 smithi178 bash[18765]: cluster 2024-04-24T16:10:23.948738+0000 mgr.smithi178.tjvcci (mgr.14164) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:25.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:25 smithi178 bash[18765]: audit 2024-04-24T16:10:24.709872+0000 mon.smithi178 (mon.0) 137 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:25.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:25 smithi178 bash[18765]: audit 2024-04-24T16:10:24.709872+0000 mon.smithi178 (mon.0) 137 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:26.684 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:26 smithi178 bash[18765]: cephadm 2024-04-24T16:10:24.710778+0000 mgr.smithi178.tjvcci (mgr.14164) 31 : cephadm [INF] Added host smithi204 2024-04-24T16:10:26.684 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:26 smithi178 bash[18765]: cephadm 2024-04-24T16:10:24.710778+0000 mgr.smithi178.tjvcci (mgr.14164) 31 : cephadm [INF] Added host smithi204 2024-04-24T16:10:27.228 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph orch host ls --format=json 2024-04-24T16:10:27.519 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:27 smithi178 bash[18765]: cluster 2024-04-24T16:10:25.949445+0000 mgr.smithi178.tjvcci (mgr.14164) 32 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:27.519 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:27 smithi178 bash[18765]: cluster 2024-04-24T16:10:25.949445+0000 mgr.smithi178.tjvcci (mgr.14164) 32 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:29.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:29 smithi178 bash[18765]: cluster 2024-04-24T16:10:27.950269+0000 mgr.smithi178.tjvcci (mgr.14164) 33 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:29.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:29 smithi178 bash[18765]: cluster 2024-04-24T16:10:27.950269+0000 mgr.smithi178.tjvcci (mgr.14164) 33 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:29.916 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:29 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:10:30.169 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:30 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:10:31.451 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: cluster 2024-04-24T16:10:29.950826+0000 mgr.smithi178.tjvcci (mgr.14164) 34 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:31.451 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: cluster 2024-04-24T16:10:29.950826+0000 mgr.smithi178.tjvcci (mgr.14164) 34 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:31.451 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.215131+0000 mon.smithi178 (mon.0) 138 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.215131+0000 mon.smithi178 (mon.0) 138 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.231992+0000 mon.smithi178 (mon.0) 139 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.231992+0000 mon.smithi178 (mon.0) 139 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.234371+0000 mon.smithi178 (mon.0) 140 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.234371+0000 mon.smithi178 (mon.0) 140 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.236886+0000 mon.smithi178 (mon.0) 141 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.236886+0000 mon.smithi178 (mon.0) 141 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.239743+0000 mon.smithi178 (mon.0) 142 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.239743+0000 mon.smithi178 (mon.0) 142 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.242539+0000 mon.smithi178 (mon.0) 143 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.242539+0000 mon.smithi178 (mon.0) 143 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.244263+0000 mon.smithi178 (mon.0) 144 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: audit 2024-04-24T16:10:30.244263+0000 mon.smithi178 (mon.0) 144 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:31.452 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: cephadm 2024-04-24T16:10:30.497841+0000 mgr.smithi178.tjvcci (mgr.14164) 35 : cephadm [INF] Deploying daemon prometheus.smithi178 on smithi178 2024-04-24T16:10:31.453 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:31 smithi178 bash[18765]: cephadm 2024-04-24T16:10:30.497841+0000 mgr.smithi178.tjvcci (mgr.14164) 35 : cephadm [INF] Deploying daemon prometheus.smithi178 on smithi178 2024-04-24T16:10:32.979 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:10:33.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:32 smithi178 bash[18765]: audit 2024-04-24T16:10:31.838875+0000 mon.smithi178 (mon.0) 145 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:33.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:32 smithi178 bash[18765]: audit 2024-04-24T16:10:31.838875+0000 mon.smithi178 (mon.0) 145 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:33.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:32 smithi178 bash[18765]: cluster 2024-04-24T16:10:31.951644+0000 mgr.smithi178.tjvcci (mgr.14164) 36 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:33.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:32 smithi178 bash[18765]: cluster 2024-04-24T16:10:31.951644+0000 mgr.smithi178.tjvcci (mgr.14164) 36 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:35.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:35 smithi178 bash[18765]: cluster 2024-04-24T16:10:33.952104+0000 mgr.smithi178.tjvcci (mgr.14164) 37 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:35.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:35 smithi178 bash[18765]: cluster 2024-04-24T16:10:33.952104+0000 mgr.smithi178.tjvcci (mgr.14164) 37 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:36.744 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:10:36.744 INFO:teuthology.orchestra.run.smithi178.stdout:[{"addr": "172.21.15.178", "hostname": "smithi178", "labels": [], "status": ""}, {"addr": "172.21.15.204", "hostname": "smithi204", "labels": [], "status": ""}] 2024-04-24T16:10:37.145 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:37 smithi178 bash[18765]: cluster 2024-04-24T16:10:35.952739+0000 mgr.smithi178.tjvcci (mgr.14164) 38 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:37.145 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:37 smithi178 bash[18765]: cluster 2024-04-24T16:10:35.952739+0000 mgr.smithi178.tjvcci (mgr.14164) 38 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:38.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:38 smithi178 bash[18765]: audit 2024-04-24T16:10:36.747456+0000 mgr.smithi178.tjvcci (mgr.14164) 39 : audit [DBG] from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-24T16:10:38.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:38 smithi178 bash[18765]: audit 2024-04-24T16:10:36.747456+0000 mgr.smithi178.tjvcci (mgr.14164) 39 : audit [DBG] from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-24T16:10:38.790 INFO:tasks.cephadm:Setting crush tunables to default 2024-04-24T16:10:38.790 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd crush tunables default 2024-04-24T16:10:39.068 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:39 smithi178 bash[18765]: cluster 2024-04-24T16:10:37.953424+0000 mgr.smithi178.tjvcci (mgr.14164) 40 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:39.068 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:39 smithi178 bash[18765]: cluster 2024-04-24T16:10:37.953424+0000 mgr.smithi178.tjvcci (mgr.14164) 40 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:41.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:41 smithi178 bash[18765]: cluster 2024-04-24T16:10:39.954140+0000 mgr.smithi178.tjvcci (mgr.14164) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:41.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:41 smithi178 bash[18765]: cluster 2024-04-24T16:10:39.954140+0000 mgr.smithi178.tjvcci (mgr.14164) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:43.247 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:43 smithi178 bash[18765]: cluster 2024-04-24T16:10:41.954796+0000 mgr.smithi178.tjvcci (mgr.14164) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:43.247 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:43 smithi178 bash[18765]: cluster 2024-04-24T16:10:41.954796+0000 mgr.smithi178.tjvcci (mgr.14164) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:43.836 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:10:45.296 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:45 smithi178 bash[18765]: cluster 2024-04-24T16:10:43.955635+0000 mgr.smithi178.tjvcci (mgr.14164) 43 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:45.296 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:45 smithi178 bash[18765]: cluster 2024-04-24T16:10:43.955635+0000 mgr.smithi178.tjvcci (mgr.14164) 43 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:46.023 INFO:teuthology.orchestra.run.smithi178.stderr:adjusted tunables profile to default 2024-04-24T16:10:46.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:46 smithi178 bash[18765]: audit 2024-04-24T16:10:45.858489+0000 mon.smithi178 (mon.0) 146 : audit [INF] from='client.? 172.21.15.178:0/2479488008' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-24T16:10:46.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:46 smithi178 bash[18765]: audit 2024-04-24T16:10:45.858489+0000 mon.smithi178 (mon.0) 146 : audit [INF] from='client.? 172.21.15.178:0/2479488008' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-24T16:10:47.294 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:47 smithi178 bash[18765]: cluster 2024-04-24T16:10:45.956256+0000 mgr.smithi178.tjvcci (mgr.14164) 44 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:47.294 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:47 smithi178 bash[18765]: cluster 2024-04-24T16:10:45.956256+0000 mgr.smithi178.tjvcci (mgr.14164) 44 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:47.294 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:47 smithi178 bash[18765]: audit 2024-04-24T16:10:46.021920+0000 mon.smithi178 (mon.0) 147 : audit [INF] from='client.? 172.21.15.178:0/2479488008' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-24T16:10:47.294 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:47 smithi178 bash[18765]: audit 2024-04-24T16:10:46.021920+0000 mon.smithi178 (mon.0) 147 : audit [INF] from='client.? 172.21.15.178:0/2479488008' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-24T16:10:47.294 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:47 smithi178 bash[18765]: cluster 2024-04-24T16:10:46.025895+0000 mon.smithi178 (mon.0) 148 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-24T16:10:47.294 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:47 smithi178 bash[18765]: cluster 2024-04-24T16:10:46.025895+0000 mon.smithi178 (mon.0) 148 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-24T16:10:47.395 INFO:tasks.cephadm:Adding mon.smithi178 on smithi178 2024-04-24T16:10:47.395 INFO:tasks.cephadm:Adding mon.smithi204 on smithi204 2024-04-24T16:10:47.395 DEBUG:teuthology.orchestra.run.smithi204:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph orch apply mon '2;smithi178:172.21.15.178=smithi178;smithi204:172.21.15.204=smithi204' 2024-04-24T16:10:47.556 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:47 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:10:47.829 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:47 smithi178 systemd[1]: /etc/systemd/system/ceph-ad55ec96-0254-11ef-bc93-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-04-24T16:10:48.608 INFO:teuthology.orchestra.run.smithi204.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T16:10:49.124 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:48 smithi178 bash[18765]: audit 2024-04-24T16:10:47.873198+0000 mon.smithi178 (mon.0) 149 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:49.124 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:48 smithi178 bash[18765]: audit 2024-04-24T16:10:47.873198+0000 mon.smithi178 (mon.0) 149 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:49.124 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:48 smithi178 bash[18765]: audit 2024-04-24T16:10:47.905903+0000 mon.smithi178 (mon.0) 150 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:49.124 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:48 smithi178 bash[18765]: audit 2024-04-24T16:10:47.905903+0000 mon.smithi178 (mon.0) 150 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:49.124 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:48 smithi178 bash[18765]: audit 2024-04-24T16:10:47.908013+0000 mon.smithi178 (mon.0) 151 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-04-24T16:10:49.125 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:48 smithi178 bash[18765]: audit 2024-04-24T16:10:47.908013+0000 mon.smithi178 (mon.0) 151 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-04-24T16:10:49.125 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:48 smithi178 bash[18765]: cluster 2024-04-24T16:10:47.956946+0000 mgr.smithi178.tjvcci (mgr.14164) 45 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:49.125 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:48 smithi178 bash[18765]: cluster 2024-04-24T16:10:47.956946+0000 mgr.smithi178.tjvcci (mgr.14164) 45 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:10:49.656 INFO:teuthology.orchestra.run.smithi204.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T16:10:50.173 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:49 smithi178 bash[18765]: audit 2024-04-24T16:10:48.909486+0000 mon.smithi178 (mon.0) 152 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-04-24T16:10:50.173 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:49 smithi178 bash[18765]: audit 2024-04-24T16:10:48.909486+0000 mon.smithi178 (mon.0) 152 : audit [INF] from='mgr.14164 172.21.15.178:0/363001260' entity='mgr.smithi178.tjvcci' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-04-24T16:10:50.174 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:49 smithi178 bash[18765]: cluster 2024-04-24T16:10:48.914877+0000 mon.smithi178 (mon.0) 153 : cluster [DBG] mgrmap e14: smithi178.tjvcci(active, since 67s) 2024-04-24T16:10:50.174 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:49 smithi178 bash[18765]: cluster 2024-04-24T16:10:48.914877+0000 mon.smithi178 (mon.0) 153 : cluster [DBG] mgrmap e14: smithi178.tjvcci(active, since 67s) 2024-04-24T16:10:57.488 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: cluster 2024-04-24T16:10:57.272556+0000 mon.smithi178 (mon.0) 154 : cluster [INF] Active manager daemon smithi178.tjvcci restarted 2024-04-24T16:10:57.488 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: cluster 2024-04-24T16:10:57.272556+0000 mon.smithi178 (mon.0) 154 : cluster [INF] Active manager daemon smithi178.tjvcci restarted 2024-04-24T16:10:57.488 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: cluster 2024-04-24T16:10:57.273083+0000 mon.smithi178 (mon.0) 155 : cluster [INF] Activating manager daemon smithi178.tjvcci 2024-04-24T16:10:57.488 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: cluster 2024-04-24T16:10:57.273083+0000 mon.smithi178 (mon.0) 155 : cluster [INF] Activating manager daemon smithi178.tjvcci 2024-04-24T16:10:57.488 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: cluster 2024-04-24T16:10:57.281315+0000 mon.smithi178 (mon.0) 156 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-04-24T16:10:57.488 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: cluster 2024-04-24T16:10:57.281315+0000 mon.smithi178 (mon.0) 156 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: cluster 2024-04-24T16:10:57.281570+0000 mon.smithi178 (mon.0) 157 : cluster [DBG] mgrmap e15: smithi178.tjvcci(active, starting, since 0.00869085s) 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: cluster 2024-04-24T16:10:57.281570+0000 mon.smithi178 (mon.0) 157 : cluster [DBG] mgrmap e15: smithi178.tjvcci(active, starting, since 0.00869085s) 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: audit 2024-04-24T16:10:57.284410+0000 mon.smithi178 (mon.0) 158 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi178"}]: dispatch 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: audit 2024-04-24T16:10:57.284410+0000 mon.smithi178 (mon.0) 158 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi178"}]: dispatch 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: audit 2024-04-24T16:10:57.284721+0000 mon.smithi178 (mon.0) 159 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr metadata", "who": "smithi178.tjvcci", "id": "smithi178.tjvcci"}]: dispatch 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: audit 2024-04-24T16:10:57.284721+0000 mon.smithi178 (mon.0) 159 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr metadata", "who": "smithi178.tjvcci", "id": "smithi178.tjvcci"}]: dispatch 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: audit 2024-04-24T16:10:57.285553+0000 mon.smithi178 (mon.0) 160 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: audit 2024-04-24T16:10:57.285553+0000 mon.smithi178 (mon.0) 160 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: audit 2024-04-24T16:10:57.285756+0000 mon.smithi178 (mon.0) 161 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: audit 2024-04-24T16:10:57.285756+0000 mon.smithi178 (mon.0) 161 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: audit 2024-04-24T16:10:57.285958+0000 mon.smithi178 (mon.0) 162 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: audit 2024-04-24T16:10:57.285958+0000 mon.smithi178 (mon.0) 162 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T16:10:57.489 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: cluster 2024-04-24T16:10:57.311697+0000 mon.smithi178 (mon.0) 163 : cluster [INF] Manager daemon smithi178.tjvcci is now available 2024-04-24T16:10:57.490 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:57 smithi178 bash[18765]: cluster 2024-04-24T16:10:57.311697+0000 mon.smithi178 (mon.0) 163 : cluster [INF] Manager daemon smithi178.tjvcci is now available 2024-04-24T16:10:58.292 INFO:teuthology.orchestra.run.smithi204.stdout:Scheduled mon update... 2024-04-24T16:10:58.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:57.339295+0000 mon.smithi178 (mon.0) 164 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:10:58.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:57.339295+0000 mon.smithi178 (mon.0) 164 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:10:58.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:57.356573+0000 mon.smithi178 (mon.0) 165 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:58.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:57.356573+0000 mon.smithi178 (mon.0) 165 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:58.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:57.361363+0000 mon.smithi178 (mon.0) 166 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:58.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:57.361363+0000 mon.smithi178 (mon.0) 166 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:58.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:57.362912+0000 mon.smithi178 (mon.0) 167 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:10:58.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:57.362912+0000 mon.smithi178 (mon.0) 167 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:10:58.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:57.373561+0000 mon.smithi178 (mon.0) 168 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/mirror_snapshot_schedule"}]: dispatch 2024-04-24T16:10:58.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:57.373561+0000 mon.smithi178 (mon.0) 168 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/mirror_snapshot_schedule"}]: dispatch 2024-04-24T16:10:58.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:57.377697+0000 mon.smithi178 (mon.0) 169 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/trash_purge_schedule"}]: dispatch 2024-04-24T16:10:58.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:57.377697+0000 mon.smithi178 (mon.0) 169 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi178.tjvcci/trash_purge_schedule"}]: dispatch 2024-04-24T16:10:58.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: cephadm 2024-04-24T16:10:57.776767+0000 mgr.smithi178.tjvcci (mgr.14197) 1 : cephadm [INF] [24/Apr/2024:16:10:57] ENGINE Bus STARTING 2024-04-24T16:10:58.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: cephadm 2024-04-24T16:10:57.776767+0000 mgr.smithi178.tjvcci (mgr.14197) 1 : cephadm [INF] [24/Apr/2024:16:10:57] ENGINE Bus STARTING 2024-04-24T16:10:58.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: cephadm 2024-04-24T16:10:57.895353+0000 mgr.smithi178.tjvcci (mgr.14197) 2 : cephadm [INF] [24/Apr/2024:16:10:57] ENGINE Serving on https://172.21.15.178:7150 2024-04-24T16:10:58.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: cephadm 2024-04-24T16:10:57.895353+0000 mgr.smithi178.tjvcci (mgr.14197) 2 : cephadm [INF] [24/Apr/2024:16:10:57] ENGINE Serving on https://172.21.15.178:7150 2024-04-24T16:10:58.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:58.240364+0000 mon.smithi178 (mon.0) 170 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:58.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:58.240364+0000 mon.smithi178 (mon.0) 170 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:58.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: cluster 2024-04-24T16:10:58.286928+0000 mon.smithi178 (mon.0) 171 : cluster [DBG] mgrmap e16: smithi178.tjvcci(active, since 1.01404s) 2024-04-24T16:10:58.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: cluster 2024-04-24T16:10:58.286928+0000 mon.smithi178 (mon.0) 171 : cluster [DBG] mgrmap e16: smithi178.tjvcci(active, since 1.01404s) 2024-04-24T16:10:58.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:58.294436+0000 mon.smithi178 (mon.0) 172 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:58.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:58 smithi178 bash[18765]: audit 2024-04-24T16:10:58.294436+0000 mon.smithi178 (mon.0) 172 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:10:58.904 DEBUG:teuthology.orchestra.run.smithi204:mon.smithi204> sudo journalctl -f -n 0 -u ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mon.smithi204.service 2024-04-24T16:10:58.907 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-24T16:10:58.907 DEBUG:teuthology.orchestra.run.smithi204:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-24T16:10:59.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:59 smithi178 bash[18765]: cephadm 2024-04-24T16:10:57.997187+0000 mgr.smithi178.tjvcci (mgr.14197) 3 : cephadm [INF] [24/Apr/2024:16:10:57] ENGINE Serving on http://172.21.15.178:8765 2024-04-24T16:10:59.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:59 smithi178 bash[18765]: cephadm 2024-04-24T16:10:57.997187+0000 mgr.smithi178.tjvcci (mgr.14197) 3 : cephadm [INF] [24/Apr/2024:16:10:57] ENGINE Serving on http://172.21.15.178:8765 2024-04-24T16:10:59.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:59 smithi178 bash[18765]: cephadm 2024-04-24T16:10:57.997450+0000 mgr.smithi178.tjvcci (mgr.14197) 4 : cephadm [INF] [24/Apr/2024:16:10:57] ENGINE Bus STARTED 2024-04-24T16:10:59.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:59 smithi178 bash[18765]: cephadm 2024-04-24T16:10:57.997450+0000 mgr.smithi178.tjvcci (mgr.14197) 4 : cephadm [INF] [24/Apr/2024:16:10:57] ENGINE Bus STARTED 2024-04-24T16:10:59.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:59 smithi178 bash[18765]: audit 2024-04-24T16:10:58.286410+0000 mgr.smithi178.tjvcci (mgr.14197) 5 : audit [DBG] from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi178:172.21.15.178=smithi178;smithi204:172.21.15.204=smithi204", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:10:59.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:59 smithi178 bash[18765]: audit 2024-04-24T16:10:58.286410+0000 mgr.smithi178.tjvcci (mgr.14197) 5 : audit [DBG] from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi178:172.21.15.178=smithi178;smithi204:172.21.15.204=smithi204", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:10:59.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:59 smithi178 bash[18765]: cephadm 2024-04-24T16:10:58.290034+0000 mgr.smithi178.tjvcci (mgr.14197) 6 : cephadm [INF] Saving service mon spec with placement smithi178:172.21.15.178=smithi178;smithi204:172.21.15.204=smithi204;count:2 2024-04-24T16:10:59.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:10:59 smithi178 bash[18765]: cephadm 2024-04-24T16:10:58.290034+0000 mgr.smithi178.tjvcci (mgr.14197) 6 : cephadm [INF] Saving service mon spec with placement smithi178:172.21.15.178=smithi178;smithi204:172.21.15.204=smithi204;count:2 2024-04-24T16:11:00.155 INFO:teuthology.orchestra.run.smithi204.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T16:11:00.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:00 smithi178 bash[18765]: cluster 2024-04-24T16:10:59.339618+0000 mon.smithi178 (mon.0) 173 : cluster [DBG] mgrmap e17: smithi178.tjvcci(active, since 2s) 2024-04-24T16:11:00.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:00 smithi178 bash[18765]: cluster 2024-04-24T16:10:59.339618+0000 mon.smithi178 (mon.0) 173 : cluster [DBG] mgrmap e17: smithi178.tjvcci(active, since 2s) 2024-04-24T16:11:00.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:00 smithi178 bash[18765]: audit 2024-04-24T16:10:59.964946+0000 mon.smithi178 (mon.0) 174 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:00.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:00 smithi178 bash[18765]: audit 2024-04-24T16:10:59.964946+0000 mon.smithi178 (mon.0) 174 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:01.195 INFO:teuthology.orchestra.run.smithi204.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T16:11:02.355 INFO:teuthology.orchestra.run.smithi204.stdout: 2024-04-24T16:11:02.355 INFO:teuthology.orchestra.run.smithi204.stdout:{"epoch":1,"fsid":"ad55ec96-0254-11ef-bc93-c7b262605968","modified":"2024-04-24T16:08:18.679257Z","created":"2024-04-24T16:08:18.679257Z","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":"smithi178","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.178:3300","nonce":0},{"type":"v1","addr":"172.21.15.178:6789","nonce":0}]},"addr":"172.21.15.178:6789/0","public_addr":"172.21.15.178:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-24T16:11:02.358 INFO:teuthology.orchestra.run.smithi204.stderr:dumped monmap epoch 1 2024-04-24T16:11:02.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:02 smithi178 bash[18765]: audit 2024-04-24T16:11:01.111239+0000 mon.smithi178 (mon.0) 175 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:02.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:02 smithi178 bash[18765]: audit 2024-04-24T16:11:01.111239+0000 mon.smithi178 (mon.0) 175 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:03.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:03 smithi178 bash[18765]: audit 2024-04-24T16:11:02.357909+0000 mon.smithi178 (mon.0) 176 : audit [DBG] from='client.? 172.21.15.204:0/3912928238' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:03.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:03 smithi178 bash[18765]: audit 2024-04-24T16:11:02.357909+0000 mon.smithi178 (mon.0) 176 : audit [DBG] from='client.? 172.21.15.204:0/3912928238' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:03.898 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-24T16:11:03.898 DEBUG:teuthology.orchestra.run.smithi204:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-24T16:11:04.998 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:04 smithi178 bash[18765]: audit 2024-04-24T16:11:03.683129+0000 mon.smithi178 (mon.0) 177 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:04.999 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:04 smithi178 bash[18765]: audit 2024-04-24T16:11:03.683129+0000 mon.smithi178 (mon.0) 177 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:05.110 INFO:teuthology.orchestra.run.smithi204.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T16:11:06.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:05 smithi178 bash[18765]: audit 2024-04-24T16:11:04.829030+0000 mon.smithi178 (mon.0) 178 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:06.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:05 smithi178 bash[18765]: audit 2024-04-24T16:11:04.829030+0000 mon.smithi178 (mon.0) 178 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:06.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:05 smithi178 bash[18765]: audit 2024-04-24T16:11:04.953331+0000 mon.smithi178 (mon.0) 179 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:06.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:05 smithi178 bash[18765]: audit 2024-04-24T16:11:04.953331+0000 mon.smithi178 (mon.0) 179 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:06.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:05 smithi178 bash[18765]: audit 2024-04-24T16:11:04.955202+0000 mon.smithi178 (mon.0) 180 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi204", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:11:06.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:05 smithi178 bash[18765]: audit 2024-04-24T16:11:04.955202+0000 mon.smithi178 (mon.0) 180 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi204", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:11:06.156 INFO:teuthology.orchestra.run.smithi204.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T16:11:07.292 INFO:teuthology.orchestra.run.smithi204.stdout: 2024-04-24T16:11:07.292 INFO:teuthology.orchestra.run.smithi204.stdout:{"epoch":1,"fsid":"ad55ec96-0254-11ef-bc93-c7b262605968","modified":"2024-04-24T16:08:18.679257Z","created":"2024-04-24T16:08:18.679257Z","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":"smithi178","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.178:3300","nonce":0},{"type":"v1","addr":"172.21.15.178:6789","nonce":0}]},"addr":"172.21.15.178:6789/0","public_addr":"172.21.15.178:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-24T16:11:07.295 INFO:teuthology.orchestra.run.smithi204.stderr:dumped monmap epoch 1 2024-04-24T16:11:07.723 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:07 smithi178 bash[18765]: audit 2024-04-24T16:11:07.295219+0000 mon.smithi178 (mon.0) 181 : audit [DBG] from='client.? 172.21.15.204:0/214538662' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:07.723 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:07 smithi178 bash[18765]: audit 2024-04-24T16:11:07.295219+0000 mon.smithi178 (mon.0) 181 : audit [DBG] from='client.? 172.21.15.204:0/214538662' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:08.845 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-24T16:11:08.846 DEBUG:teuthology.orchestra.run.smithi204:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-24T16:11:10.053 INFO:teuthology.orchestra.run.smithi204.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T16:11:11.098 INFO:teuthology.orchestra.run.smithi204.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T16:11:12.298 INFO:teuthology.orchestra.run.smithi204.stdout: 2024-04-24T16:11:12.298 INFO:teuthology.orchestra.run.smithi204.stdout:{"epoch":1,"fsid":"ad55ec96-0254-11ef-bc93-c7b262605968","modified":"2024-04-24T16:08:18.679257Z","created":"2024-04-24T16:08:18.679257Z","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":"smithi178","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.178:3300","nonce":0},{"type":"v1","addr":"172.21.15.178:6789","nonce":0}]},"addr":"172.21.15.178:6789/0","public_addr":"172.21.15.178:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-24T16:11:12.299 INFO:teuthology.orchestra.run.smithi204.stderr:dumped monmap epoch 1 2024-04-24T16:11:12.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:12 smithi178 bash[18765]: audit 2024-04-24T16:11:11.963325+0000 mon.smithi178 (mon.0) 182 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi178", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:11:12.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:12 smithi178 bash[18765]: audit 2024-04-24T16:11:11.963325+0000 mon.smithi178 (mon.0) 182 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi178", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:11:12.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:12 smithi178 bash[18765]: audit 2024-04-24T16:11:11.965131+0000 mon.smithi178 (mon.0) 183 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:12.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:12 smithi178 bash[18765]: audit 2024-04-24T16:11:11.965131+0000 mon.smithi178 (mon.0) 183 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:12.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:12 smithi178 bash[18765]: audit 2024-04-24T16:11:11.966387+0000 mon.smithi178 (mon.0) 184 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:11:12.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:12 smithi178 bash[18765]: audit 2024-04-24T16:11:11.966387+0000 mon.smithi178 (mon.0) 184 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:11:12.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:12 smithi178 bash[18765]: cephadm 2024-04-24T16:11:11.968398+0000 mgr.smithi178.tjvcci (mgr.14197) 7 : cephadm [INF] Updating smithi178:/etc/ceph/ceph.conf 2024-04-24T16:11:12.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:12 smithi178 bash[18765]: cephadm 2024-04-24T16:11:11.968398+0000 mgr.smithi178.tjvcci (mgr.14197) 7 : cephadm [INF] Updating smithi178:/etc/ceph/ceph.conf 2024-04-24T16:11:12.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:12 smithi178 bash[18765]: cephadm 2024-04-24T16:11:11.968823+0000 mgr.smithi178.tjvcci (mgr.14197) 8 : cephadm [INF] Updating smithi204:/etc/ceph/ceph.conf 2024-04-24T16:11:12.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:12 smithi178 bash[18765]: cephadm 2024-04-24T16:11:11.968823+0000 mgr.smithi178.tjvcci (mgr.14197) 8 : cephadm [INF] Updating smithi204:/etc/ceph/ceph.conf 2024-04-24T16:11:13.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: audit 2024-04-24T16:11:12.299256+0000 mon.smithi178 (mon.0) 185 : audit [DBG] from='client.? 172.21.15.204:0/1277945376' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:13.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: audit 2024-04-24T16:11:12.299256+0000 mon.smithi178 (mon.0) 185 : audit [DBG] from='client.? 172.21.15.204:0/1277945376' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:13.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: audit 2024-04-24T16:11:12.375752+0000 mon.smithi178 (mon.0) 186 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:13.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: audit 2024-04-24T16:11:12.375752+0000 mon.smithi178 (mon.0) 186 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:13.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: cephadm 2024-04-24T16:11:12.474958+0000 mgr.smithi178.tjvcci (mgr.14197) 9 : cephadm [INF] Updating smithi204:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:13.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: cephadm 2024-04-24T16:11:12.474958+0000 mgr.smithi178.tjvcci (mgr.14197) 9 : cephadm [INF] Updating smithi204:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:13.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: cephadm 2024-04-24T16:11:12.475407+0000 mgr.smithi178.tjvcci (mgr.14197) 10 : cephadm [INF] Updating smithi178:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:13.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: cephadm 2024-04-24T16:11:12.475407+0000 mgr.smithi178.tjvcci (mgr.14197) 10 : cephadm [INF] Updating smithi178:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: cephadm 2024-04-24T16:11:12.640851+0000 mgr.smithi178.tjvcci (mgr.14197) 11 : cephadm [INF] Updating smithi178:/etc/ceph/ceph.client.admin.keyring 2024-04-24T16:11:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: cephadm 2024-04-24T16:11:12.640851+0000 mgr.smithi178.tjvcci (mgr.14197) 11 : cephadm [INF] Updating smithi178:/etc/ceph/ceph.client.admin.keyring 2024-04-24T16:11:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: cephadm 2024-04-24T16:11:12.689320+0000 mgr.smithi178.tjvcci (mgr.14197) 12 : cephadm [INF] Updating smithi204:/etc/ceph/ceph.client.admin.keyring 2024-04-24T16:11:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: cephadm 2024-04-24T16:11:12.689320+0000 mgr.smithi178.tjvcci (mgr.14197) 12 : cephadm [INF] Updating smithi204:/etc/ceph/ceph.client.admin.keyring 2024-04-24T16:11:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: cephadm 2024-04-24T16:11:12.805867+0000 mgr.smithi178.tjvcci (mgr.14197) 13 : cephadm [INF] Updating smithi178:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-24T16:11:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: cephadm 2024-04-24T16:11:12.805867+0000 mgr.smithi178.tjvcci (mgr.14197) 13 : cephadm [INF] Updating smithi178:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-24T16:11:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: cephadm 2024-04-24T16:11:12.853639+0000 mgr.smithi178.tjvcci (mgr.14197) 14 : cephadm [INF] Updating smithi204:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-24T16:11:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: cephadm 2024-04-24T16:11:12.853639+0000 mgr.smithi178.tjvcci (mgr.14197) 14 : cephadm [INF] Updating smithi204:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-24T16:11:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: audit 2024-04-24T16:11:12.980513+0000 mon.smithi178 (mon.0) 187 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:13 smithi178 bash[18765]: audit 2024-04-24T16:11:12.980513+0000 mon.smithi178 (mon.0) 187 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:13.897 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-24T16:11:13.897 DEBUG:teuthology.orchestra.run.smithi204:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-24T16:11:14.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:14 smithi178 bash[18765]: audit 2024-04-24T16:11:13.025621+0000 mon.smithi178 (mon.0) 188 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:14.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:14 smithi178 bash[18765]: audit 2024-04-24T16:11:13.025621+0000 mon.smithi178 (mon.0) 188 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:14.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:14 smithi178 bash[18765]: audit 2024-04-24T16:11:13.032548+0000 mon.smithi178 (mon.0) 189 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:14.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:14 smithi178 bash[18765]: audit 2024-04-24T16:11:13.032548+0000 mon.smithi178 (mon.0) 189 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:14.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:14 smithi178 bash[18765]: audit 2024-04-24T16:11:13.035837+0000 mon.smithi178 (mon.0) 190 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi204", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T16:11:14.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:14 smithi178 bash[18765]: audit 2024-04-24T16:11:13.035837+0000 mon.smithi178 (mon.0) 190 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi204", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T16:11:14.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:14 smithi178 bash[18765]: audit 2024-04-24T16:11:13.037397+0000 mon.smithi178 (mon.0) 191 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi204", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-24T16:11:14.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:14 smithi178 bash[18765]: audit 2024-04-24T16:11:13.037397+0000 mon.smithi178 (mon.0) 191 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi204", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-24T16:11:14.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:14 smithi178 bash[18765]: audit 2024-04-24T16:11:13.041735+0000 mon.smithi178 (mon.0) 192 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:14.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:14 smithi178 bash[18765]: audit 2024-04-24T16:11:13.041735+0000 mon.smithi178 (mon.0) 192 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:14.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:14 smithi178 bash[18765]: cephadm 2024-04-24T16:11:13.043671+0000 mgr.smithi178.tjvcci (mgr.14197) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi204 on smithi204 2024-04-24T16:11:14.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:14 smithi178 bash[18765]: cephadm 2024-04-24T16:11:13.043671+0000 mgr.smithi178.tjvcci (mgr.14197) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi204 on smithi204 2024-04-24T16:11:15.259 INFO:teuthology.orchestra.run.smithi204.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:16.622 INFO:teuthology.orchestra.run.smithi204.stdout: 2024-04-24T16:11:16.623 INFO:teuthology.orchestra.run.smithi204.stdout:{"epoch":1,"fsid":"ad55ec96-0254-11ef-bc93-c7b262605968","modified":"2024-04-24T16:08:18.679257Z","created":"2024-04-24T16:08:18.679257Z","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":"smithi178","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.178:3300","nonce":0},{"type":"v1","addr":"172.21.15.178:6789","nonce":0}]},"addr":"172.21.15.178:6789/0","public_addr":"172.21.15.178:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-24T16:11:16.625 INFO:teuthology.orchestra.run.smithi204.stderr:dumped monmap epoch 1 2024-04-24T16:11:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.223062+0000 mon.smithi178 (mon.0) 193 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.223062+0000 mon.smithi178 (mon.0) 193 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.272767+0000 mon.smithi178 (mon.0) 194 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.272767+0000 mon.smithi178 (mon.0) 194 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.278521+0000 mon.smithi178 (mon.0) 195 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.278521+0000 mon.smithi178 (mon.0) 195 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.281517+0000 mon.smithi178 (mon.0) 196 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi204", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T16:11:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.281517+0000 mon.smithi178 (mon.0) 196 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi204", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T16:11:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.283322+0000 mon.smithi178 (mon.0) 197 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi204", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-24T16:11:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.283322+0000 mon.smithi178 (mon.0) 197 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi204", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-24T16:11:17.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.287950+0000 mon.smithi178 (mon.0) 198 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:17.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.287950+0000 mon.smithi178 (mon.0) 198 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:17.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: cephadm 2024-04-24T16:11:16.290155+0000 mgr.smithi178.tjvcci (mgr.14197) 16 : cephadm [INF] Deploying daemon crash.smithi204 on smithi204 2024-04-24T16:11:17.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: cephadm 2024-04-24T16:11:16.290155+0000 mgr.smithi178.tjvcci (mgr.14197) 16 : cephadm [INF] Deploying daemon crash.smithi204 on smithi204 2024-04-24T16:11:17.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.625425+0000 mon.smithi178 (mon.0) 199 : audit [DBG] from='client.? 172.21.15.204:0/52997223' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:17.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:17 smithi178 bash[18765]: audit 2024-04-24T16:11:16.625425+0000 mon.smithi178 (mon.0) 199 : audit [DBG] from='client.? 172.21.15.204:0/52997223' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:18.628 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-24T16:11:18.628 DEBUG:teuthology.orchestra.run.smithi204:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-24T16:11:18.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:18 smithi178 bash[18765]: audit 2024-04-24T16:11:17.380111+0000 mon.smithi178 (mon.0) 200 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:18.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:18 smithi178 bash[18765]: audit 2024-04-24T16:11:17.380111+0000 mon.smithi178 (mon.0) 200 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:20.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:20 smithi178 bash[18765]: cluster 2024-04-24T16:11:19.028491+0000 mgr.smithi178.tjvcci (mgr.14197) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:20.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:20 smithi178 bash[18765]: cluster 2024-04-24T16:11:19.028491+0000 mgr.smithi178.tjvcci (mgr.14197) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:20.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:20 smithi178 bash[18765]: audit 2024-04-24T16:11:19.218651+0000 mon.smithi178 (mon.0) 201 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:20.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:20 smithi178 bash[18765]: audit 2024-04-24T16:11:19.218651+0000 mon.smithi178 (mon.0) 201 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:20.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:20 smithi178 bash[18765]: audit 2024-04-24T16:11:19.267969+0000 mon.smithi178 (mon.0) 202 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:20.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:20 smithi178 bash[18765]: audit 2024-04-24T16:11:19.267969+0000 mon.smithi178 (mon.0) 202 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:20.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:20 smithi178 bash[18765]: audit 2024-04-24T16:11:19.273640+0000 mon.smithi178 (mon.0) 203 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:20.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:20 smithi178 bash[18765]: audit 2024-04-24T16:11:19.273640+0000 mon.smithi178 (mon.0) 203 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:20.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:20 smithi178 bash[18765]: cephadm 2024-04-24T16:11:19.276907+0000 mgr.smithi178.tjvcci (mgr.14197) 18 : cephadm [INF] Deploying daemon node-exporter.smithi204 on smithi204 2024-04-24T16:11:20.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:20 smithi178 bash[18765]: cephadm 2024-04-24T16:11:19.276907+0000 mgr.smithi178.tjvcci (mgr.14197) 18 : cephadm [INF] Deploying daemon node-exporter.smithi204 on smithi204 2024-04-24T16:11:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.432258+0000 mon.smithi178 (mon.0) 204 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.432258+0000 mon.smithi178 (mon.0) 204 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.449845+0000 mon.smithi178 (mon.0) 205 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.449845+0000 mon.smithi178 (mon.0) 205 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.455488+0000 mon.smithi178 (mon.0) 206 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.455488+0000 mon.smithi178 (mon.0) 206 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.460581+0000 mon.smithi178 (mon.0) 207 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi204.olwubu", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T16:11:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.460581+0000 mon.smithi178 (mon.0) 207 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi204.olwubu", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T16:11:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.462245+0000 mon.smithi178 (mon.0) 208 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi204.olwubu", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-24T16:11:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.462245+0000 mon.smithi178 (mon.0) 208 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi204.olwubu", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-24T16:11:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.466689+0000 mon.smithi178 (mon.0) 209 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T16:11:21.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.466689+0000 mon.smithi178 (mon.0) 209 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T16:11:21.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.468634+0000 mon.smithi178 (mon.0) 210 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:21.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: audit 2024-04-24T16:11:20.468634+0000 mon.smithi178 (mon.0) 210 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:21.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: cephadm 2024-04-24T16:11:20.470677+0000 mgr.smithi178.tjvcci (mgr.14197) 19 : cephadm [INF] Deploying daemon mgr.smithi204.olwubu on smithi204 2024-04-24T16:11:21.838 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:21 smithi178 bash[18765]: cephadm 2024-04-24T16:11:20.470677+0000 mgr.smithi178.tjvcci (mgr.14197) 19 : cephadm [INF] Deploying daemon mgr.smithi204.olwubu on smithi204 2024-04-24T16:11:22.338 INFO:teuthology.orchestra.run.smithi204.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:22.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:22 smithi178 bash[18765]: cluster 2024-04-24T16:11:21.029453+0000 mgr.smithi178.tjvcci (mgr.14197) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:22.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:22 smithi178 bash[18765]: cluster 2024-04-24T16:11:21.029453+0000 mgr.smithi178.tjvcci (mgr.14197) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:22.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:22 smithi178 bash[18765]: audit 2024-04-24T16:11:22.387037+0000 mon.smithi178 (mon.0) 211 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:22.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:22 smithi178 bash[18765]: audit 2024-04-24T16:11:22.387037+0000 mon.smithi178 (mon.0) 211 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:24.585 INFO:teuthology.orchestra.run.smithi204.stdout: 2024-04-24T16:11:24.586 INFO:teuthology.orchestra.run.smithi204.stdout:{"epoch":1,"fsid":"ad55ec96-0254-11ef-bc93-c7b262605968","modified":"2024-04-24T16:08:18.679257Z","created":"2024-04-24T16:08:18.679257Z","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":"smithi178","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.178:3300","nonce":0},{"type":"v1","addr":"172.21.15.178:6789","nonce":0}]},"addr":"172.21.15.178:6789/0","public_addr":"172.21.15.178:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-24T16:11:24.588 INFO:teuthology.orchestra.run.smithi204.stderr:dumped monmap epoch 1 2024-04-24T16:11:24.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:24 smithi178 bash[18765]: cluster 2024-04-24T16:11:23.030429+0000 mgr.smithi178.tjvcci (mgr.14197) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:24 smithi178 bash[18765]: cluster 2024-04-24T16:11:23.030429+0000 mgr.smithi178.tjvcci (mgr.14197) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:24 smithi178 bash[18765]: audit 2024-04-24T16:11:24.399293+0000 mon.smithi178 (mon.0) 212 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:24 smithi178 bash[18765]: audit 2024-04-24T16:11:24.399293+0000 mon.smithi178 (mon.0) 212 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:24 smithi178 bash[18765]: audit 2024-04-24T16:11:24.451109+0000 mon.smithi178 (mon.0) 213 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:24 smithi178 bash[18765]: audit 2024-04-24T16:11:24.451109+0000 mon.smithi178 (mon.0) 213 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:24 smithi178 bash[18765]: audit 2024-04-24T16:11:24.458118+0000 mon.smithi178 (mon.0) 214 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:24 smithi178 bash[18765]: audit 2024-04-24T16:11:24.458118+0000 mon.smithi178 (mon.0) 214 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:24 smithi178 bash[18765]: audit 2024-04-24T16:11:24.461784+0000 mon.smithi178 (mon.0) 215 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T16:11:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:24 smithi178 bash[18765]: audit 2024-04-24T16:11:24.461784+0000 mon.smithi178 (mon.0) 215 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T16:11:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:24 smithi178 bash[18765]: audit 2024-04-24T16:11:24.463637+0000 mon.smithi178 (mon.0) 216 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:24.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:24 smithi178 bash[18765]: audit 2024-04-24T16:11:24.463637+0000 mon.smithi178 (mon.0) 216 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:25.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:25 smithi178 bash[18765]: cephadm 2024-04-24T16:11:24.465662+0000 mgr.smithi178.tjvcci (mgr.14197) 22 : cephadm [INF] Deploying daemon mon.smithi204 on smithi204 2024-04-24T16:11:25.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:25 smithi178 bash[18765]: cephadm 2024-04-24T16:11:24.465662+0000 mgr.smithi178.tjvcci (mgr.14197) 22 : cephadm [INF] Deploying daemon mon.smithi204 on smithi204 2024-04-24T16:11:25.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:25 smithi178 bash[18765]: audit 2024-04-24T16:11:24.588457+0000 mon.smithi178 (mon.0) 217 : audit [DBG] from='client.? 172.21.15.204:0/2233732875' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:25.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:25 smithi178 bash[18765]: audit 2024-04-24T16:11:24.588457+0000 mon.smithi178 (mon.0) 217 : audit [DBG] from='client.? 172.21.15.204:0/2233732875' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:26.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:26 smithi178 bash[18765]: cluster 2024-04-24T16:11:25.031399+0000 mgr.smithi178.tjvcci (mgr.14197) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:26.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:26 smithi178 bash[18765]: cluster 2024-04-24T16:11:25.031399+0000 mgr.smithi178.tjvcci (mgr.14197) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:26.890 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-24T16:11:26.890 DEBUG:teuthology.orchestra.run.smithi204:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-24T16:11:27.786 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:27 smithi178 bash[18765]: audit 2024-04-24T16:11:27.376850+0000 mon.smithi178 (mon.0) 218 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:27.786 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:27 smithi178 bash[18765]: audit 2024-04-24T16:11:27.376850+0000 mon.smithi178 (mon.0) 218 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:27.786 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:27 smithi178 bash[18765]: audit 2024-04-24T16:11:27.398068+0000 mon.smithi178 (mon.0) 219 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:27.786 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:27 smithi178 bash[18765]: audit 2024-04-24T16:11:27.398068+0000 mon.smithi178 (mon.0) 219 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:28.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:28 smithi178 bash[18765]: cluster 2024-04-24T16:11:27.032353+0000 mgr.smithi178.tjvcci (mgr.14197) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:28.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:28 smithi178 bash[18765]: cluster 2024-04-24T16:11:27.032353+0000 mgr.smithi178.tjvcci (mgr.14197) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:30.502 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-24T16:11:30.502 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-24T16:11:30.502 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-24T16:11:30.503 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-24T16:11:30.503 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-24T16:11:30.503 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: ** Compaction Stats [default] ** 2024-04-24T16:11:30.503 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: 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-04-24T16:11:30.676 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-24T16:11:30.676 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.1 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-24T16:11:30.676 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.1 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-24T16:11:30.677 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.1 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-24T16:11:30.677 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: ** Compaction Stats [default] ** 2024-04-24T16:11:30.677 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: 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-04-24T16:11:30.677 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-24T16:11:30.677 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.1 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-24T16:11:30.677 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-24T16:11:30.677 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-24T16:11:30.677 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Flush(GB): cumulative 0.000, interval 0.000 2024-04-24T16:11:30.677 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-24T16:11:30.677 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: AddFile(Total Files): cumulative 0, interval 0 2024-04-24T16:11:30.677 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: AddFile(L0 Files): cumulative 0, interval 0 2024-04-24T16:11:30.678 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: AddFile(Keys): cumulative 0, interval 0 2024-04-24T16:11:30.678 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Cumulative compaction: 0.00 GB write, 0.54 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-24T16:11:30.678 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Interval compaction: 0.00 GB write, 0.54 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-24T16:11:30.678 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: 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-04-24T16:11:30.678 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: Block cache BinnedLRUCache@0x5654f442f1f0#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-04-24T16:11:30.678 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: 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-04-24T16:11:30.678 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: ** File Read Latency Histogram By Level [default] ** 2024-04-24T16:11:30.678 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.494+0000 7fb654dbdc80 0 using public_addr v2:172.21.15.204:0/0 -> [v2:172.21.15.204:3300/0,v1:172.21.15.204:6789/0] 2024-04-24T16:11:30.678 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.494+0000 7fb654dbdc80 0 starting mon.smithi204 rank -1 at public addrs [v2:172.21.15.204:3300/0,v1:172.21.15.204:6789/0] at bind addrs [v2:172.21.15.204:3300/0,v1:172.21.15.204:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi204 fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:11:30.678 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.494+0000 7fb654dbdc80 1 mon.smithi204@-1(???) e0 preinit fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:11:30.679 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 0 mon.smithi204@-1(synchronizing).mds e1 new map 2024-04-24T16:11:30.679 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 0 mon.smithi204@-1(synchronizing).mds e1 print_map 2024-04-24T16:11:30.679 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: e1 2024-04-24T16:11:30.679 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: enable_multiple, ever_enabled_multiple: 1,1 2024-04-24T16:11:30.679 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: 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-04-24T16:11:30.679 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: legacy client fscid: -1 2024-04-24T16:11:30.679 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: 2024-04-24T16:11:30.680 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: No filesystems configured 2024-04-24T16:11:30.680 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 1 mon.smithi204@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-04-24T16:11:30.680 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 1 mon.smithi204@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-04-24T16:11:30.680 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 1 mon.smithi204@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-04-24T16:11:30.680 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 1 mon.smithi204@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-04-24T16:11:30.680 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 1 mon.smithi204@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-04-24T16:11:30.680 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 1 mon.smithi204@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-04-24T16:11:30.680 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 1 mon.smithi204@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-04-24T16:11:30.680 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 0 mon.smithi204@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-24T16:11:30.680 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 0 mon.smithi204@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-04-24T16:11:30.680 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 0 mon.smithi204@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 0 mon.smithi204@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: cluster 2024-04-24T16:11:21.029453+0000 mgr.smithi178.tjvcci (mgr.14197) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: cluster 2024-04-24T16:11:21.029453+0000 mgr.smithi178.tjvcci (mgr.14197) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:22.387037+0000 mon.smithi178 (mon.0) 211 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:22.387037+0000 mon.smithi178 (mon.0) 211 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: cluster 2024-04-24T16:11:23.030429+0000 mgr.smithi178.tjvcci (mgr.14197) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: cluster 2024-04-24T16:11:23.030429+0000 mgr.smithi178.tjvcci (mgr.14197) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:24.399293+0000 mon.smithi178 (mon.0) 212 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:24.399293+0000 mon.smithi178 (mon.0) 212 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:24.451109+0000 mon.smithi178 (mon.0) 213 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:24.451109+0000 mon.smithi178 (mon.0) 213 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:24.458118+0000 mon.smithi178 (mon.0) 214 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:24.458118+0000 mon.smithi178 (mon.0) 214 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:24.461784+0000 mon.smithi178 (mon.0) 215 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T16:11:30.681 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:24.461784+0000 mon.smithi178 (mon.0) 215 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:24.463637+0000 mon.smithi178 (mon.0) 216 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:24.463637+0000 mon.smithi178 (mon.0) 216 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: cephadm 2024-04-24T16:11:24.465662+0000 mgr.smithi178.tjvcci (mgr.14197) 22 : cephadm [INF] Deploying daemon mon.smithi204 on smithi204 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: cephadm 2024-04-24T16:11:24.465662+0000 mgr.smithi178.tjvcci (mgr.14197) 22 : cephadm [INF] Deploying daemon mon.smithi204 on smithi204 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:24.588457+0000 mon.smithi178 (mon.0) 217 : audit [DBG] from='client.? 172.21.15.204:0/2233732875' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:24.588457+0000 mon.smithi178 (mon.0) 217 : audit [DBG] from='client.? 172.21.15.204:0/2233732875' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: cluster 2024-04-24T16:11:25.031399+0000 mgr.smithi178.tjvcci (mgr.14197) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: cluster 2024-04-24T16:11:25.031399+0000 mgr.smithi178.tjvcci (mgr.14197) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:27.376850+0000 mon.smithi178 (mon.0) 218 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:27.376850+0000 mon.smithi178 (mon.0) 218 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:27.398068+0000 mon.smithi178 (mon.0) 219 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: audit 2024-04-24T16:11:27.398068+0000 mon.smithi178 (mon.0) 219 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:30.682 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: cluster 2024-04-24T16:11:27.032353+0000 mgr.smithi178.tjvcci (mgr.14197) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:30.683 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: cluster 2024-04-24T16:11:27.032353+0000 mgr.smithi178.tjvcci (mgr.14197) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:30.683 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:30 smithi204 bash[20295]: debug 2024-04-24T16:11:30.518+0000 7fb64651b700 1 mon.smithi204@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-04-24T16:11:32.599 INFO:teuthology.orchestra.run.smithi204.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi204/config 2024-04-24T16:11:35.761 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:30.530646+0000 mon.smithi178 (mon.0) 225 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.761 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:30.530646+0000 mon.smithi178 (mon.0) 225 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:30.536002+0000 mon.smithi178 (mon.0) 226 : cluster [INF] mon.smithi178 calling monitor election 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:30.536002+0000 mon.smithi178 (mon.0) 226 : cluster [INF] mon.smithi178 calling monitor election 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:30.555025+0000 mon.smithi178 (mon.0) 227 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi178"}]: dispatch 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:30.555025+0000 mon.smithi178 (mon.0) 227 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi178"}]: dispatch 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:30.555329+0000 mon.smithi178 (mon.0) 228 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:30.555329+0000 mon.smithi178 (mon.0) 228 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:31.034287+0000 mgr.smithi178.tjvcci (mgr.14197) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:31.034287+0000 mgr.smithi178.tjvcci (mgr.14197) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:31.530658+0000 mon.smithi178 (mon.0) 229 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:31.530658+0000 mon.smithi178 (mon.0) 229 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:32.530825+0000 mon.smithi178 (mon.0) 230 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:32.530825+0000 mon.smithi178 (mon.0) 230 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.762 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:32.532396+0000 mon.smithi204 (mon.1) 1 : cluster [INF] mon.smithi204 calling monitor election 2024-04-24T16:11:35.763 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:32.532396+0000 mon.smithi204 (mon.1) 1 : cluster [INF] mon.smithi204 calling monitor election 2024-04-24T16:11:35.763 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:33.035275+0000 mgr.smithi178.tjvcci (mgr.14197) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:35.763 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:33.035275+0000 mgr.smithi178.tjvcci (mgr.14197) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:35.764 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:33.530600+0000 mon.smithi178 (mon.0) 231 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.764 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:33.530600+0000 mon.smithi178 (mon.0) 231 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.764 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:34.531246+0000 mon.smithi178 (mon.0) 232 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.764 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:34.531246+0000 mon.smithi178 (mon.0) 232 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.764 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:34.689177+0000 mon.smithi178 (mon.0) 233 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi204.olwubu/crt"}]: dispatch 2024-04-24T16:11:35.764 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:34.689177+0000 mon.smithi178 (mon.0) 233 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi204.olwubu/crt"}]: dispatch 2024-04-24T16:11:35.764 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:35.530500+0000 mon.smithi178 (mon.0) 234 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.764 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:35.530500+0000 mon.smithi178 (mon.0) 234 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:35.764 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.575682+0000 mon.smithi178 (mon.0) 235 : cluster [INF] mon.smithi178 is new leader, mons smithi178,smithi204 in quorum (ranks 0,1) 2024-04-24T16:11:35.764 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.575682+0000 mon.smithi178 (mon.0) 235 : cluster [INF] mon.smithi178 is new leader, mons smithi178,smithi204 in quorum (ranks 0,1) 2024-04-24T16:11:35.764 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579893+0000 mon.smithi178 (mon.0) 236 : cluster [DBG] monmap epoch 2 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579893+0000 mon.smithi178 (mon.0) 236 : cluster [DBG] monmap epoch 2 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579912+0000 mon.smithi178 (mon.0) 237 : cluster [DBG] fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579912+0000 mon.smithi178 (mon.0) 237 : cluster [DBG] fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579922+0000 mon.smithi178 (mon.0) 238 : cluster [DBG] last_changed 2024-04-24T16:11:30.530028+0000 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579922+0000 mon.smithi178 (mon.0) 238 : cluster [DBG] last_changed 2024-04-24T16:11:30.530028+0000 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579930+0000 mon.smithi178 (mon.0) 239 : cluster [DBG] created 2024-04-24T16:08:18.679257+0000 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579930+0000 mon.smithi178 (mon.0) 239 : cluster [DBG] created 2024-04-24T16:08:18.679257+0000 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579938+0000 mon.smithi178 (mon.0) 240 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579938+0000 mon.smithi178 (mon.0) 240 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579945+0000 mon.smithi178 (mon.0) 241 : cluster [DBG] election_strategy: 1 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579945+0000 mon.smithi178 (mon.0) 241 : cluster [DBG] election_strategy: 1 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579955+0000 mon.smithi178 (mon.0) 242 : cluster [DBG] 0: [v2:172.21.15.178:3300/0,v1:172.21.15.178:6789/0] mon.smithi178 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579955+0000 mon.smithi178 (mon.0) 242 : cluster [DBG] 0: [v2:172.21.15.178:3300/0,v1:172.21.15.178:6789/0] mon.smithi178 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579967+0000 mon.smithi178 (mon.0) 243 : cluster [DBG] 1: [v2:172.21.15.204:3300/0,v1:172.21.15.204:6789/0] mon.smithi204 2024-04-24T16:11:35.765 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.579967+0000 mon.smithi178 (mon.0) 243 : cluster [DBG] 1: [v2:172.21.15.204:3300/0,v1:172.21.15.204:6789/0] mon.smithi204 2024-04-24T16:11:35.766 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602311+0000 mon.smithi178 (mon.0) 244 : cluster [DBG] fsmap 2024-04-24T16:11:35.766 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602311+0000 mon.smithi178 (mon.0) 244 : cluster [DBG] fsmap 2024-04-24T16:11:35.766 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602350+0000 mon.smithi178 (mon.0) 245 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-04-24T16:11:35.766 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602350+0000 mon.smithi178 (mon.0) 245 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-04-24T16:11:35.766 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602567+0000 mon.smithi178 (mon.0) 246 : cluster [DBG] mgrmap e17: smithi178.tjvcci(active, since 38s) 2024-04-24T16:11:35.766 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602567+0000 mon.smithi178 (mon.0) 246 : cluster [DBG] mgrmap e17: smithi178.tjvcci(active, since 38s) 2024-04-24T16:11:35.766 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602729+0000 mon.smithi178 (mon.0) 247 : cluster [WRN] Health detail: HEALTH_WARN failed to probe daemons or devices 2024-04-24T16:11:35.766 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602729+0000 mon.smithi178 (mon.0) 247 : cluster [WRN] Health detail: HEALTH_WARN failed to probe daemons or devices 2024-04-24T16:11:35.766 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602749+0000 mon.smithi178 (mon.0) 248 : cluster [WRN] [WRN] CEPHADM_REFRESH_FAILED: failed to probe daemons or devices 2024-04-24T16:11:35.766 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602749+0000 mon.smithi178 (mon.0) 248 : cluster [WRN] [WRN] CEPHADM_REFRESH_FAILED: failed to probe daemons or devices 2024-04-24T16:11:35.766 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602760+0000 mon.smithi178 (mon.0) 249 : cluster [WRN] host smithi204 `cephadm ceph-volume` failed: cephadm exited with an error code: 1, stderr: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi204 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpy4ip6wa9:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602760+0000 mon.smithi178 (mon.0) 249 : cluster [WRN] host smithi204 `cephadm ceph-volume` failed: cephadm exited with an error code: 1, stderr: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi204 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpy4ip6wa9:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602773+0000 mon.smithi178 (mon.0) 250 : cluster [WRN] /usr/bin/docker: stderr docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602773+0000 mon.smithi178 (mon.0) 250 : cluster [WRN] /usr/bin/docker: stderr docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602784+0000 mon.smithi178 (mon.0) 251 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602784+0000 mon.smithi178 (mon.0) 251 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602795+0000 mon.smithi178 (mon.0) 252 : cluster [WRN] Traceback (most recent call last): 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602795+0000 mon.smithi178 (mon.0) 252 : cluster [WRN] Traceback (most recent call last): 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602808+0000 mon.smithi178 (mon.0) 253 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602808+0000 mon.smithi178 (mon.0) 253 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602820+0000 mon.smithi178 (mon.0) 254 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602820+0000 mon.smithi178 (mon.0) 254 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602831+0000 mon.smithi178 (mon.0) 255 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602831+0000 mon.smithi178 (mon.0) 255 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T16:11:35.767 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602840+0000 mon.smithi178 (mon.0) 256 : cluster [WRN] exec(code, run_globals) 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602840+0000 mon.smithi178 (mon.0) 256 : cluster [WRN] exec(code, run_globals) 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602852+0000 mon.smithi178 (mon.0) 257 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602852+0000 mon.smithi178 (mon.0) 257 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602862+0000 mon.smithi178 (mon.0) 258 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602862+0000 mon.smithi178 (mon.0) 258 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602873+0000 mon.smithi178 (mon.0) 259 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602873+0000 mon.smithi178 (mon.0) 259 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602884+0000 mon.smithi178 (mon.0) 260 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602884+0000 mon.smithi178 (mon.0) 260 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602895+0000 mon.smithi178 (mon.0) 261 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602895+0000 mon.smithi178 (mon.0) 261 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602906+0000 mon.smithi178 (mon.0) 262 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602906+0000 mon.smithi178 (mon.0) 262 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T16:11:35.768 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602916+0000 mon.smithi178 (mon.0) 263 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T16:11:35.769 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602916+0000 mon.smithi178 (mon.0) 263 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T16:11:35.769 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602926+0000 mon.smithi178 (mon.0) 264 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T16:11:35.769 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602926+0000 mon.smithi178 (mon.0) 264 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T16:11:35.769 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602940+0000 mon.smithi178 (mon.0) 265 : cluster [WRN] RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi204 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpy4ip6wa9:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch: docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:35.769 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602940+0000 mon.smithi178 (mon.0) 265 : cluster [WRN] RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi204 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpy4ip6wa9:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch: docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:35.769 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602953+0000 mon.smithi178 (mon.0) 266 : cluster [WRN] See 'docker run --help'. 2024-04-24T16:11:35.769 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602953+0000 mon.smithi178 (mon.0) 266 : cluster [WRN] See 'docker run --help'. 2024-04-24T16:11:35.769 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602963+0000 mon.smithi178 (mon.0) 267 : cluster [WRN] host smithi178 `cephadm ceph-volume` failed: cephadm exited with an error code: 1, stderr: Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:11:35.769 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602963+0000 mon.smithi178 (mon.0) 267 : cluster [WRN] host smithi178 `cephadm ceph-volume` failed: cephadm exited with an error code: 1, stderr: Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:11:35.769 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602977+0000 mon.smithi178 (mon.0) 268 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi178 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpdgwfhpiw:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch 2024-04-24T16:11:35.770 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602977+0000 mon.smithi178 (mon.0) 268 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi178 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpdgwfhpiw:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch 2024-04-24T16:11:35.770 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602988+0000 mon.smithi178 (mon.0) 269 : cluster [WRN] /usr/bin/docker: stderr docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:35.770 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602988+0000 mon.smithi178 (mon.0) 269 : cluster [WRN] /usr/bin/docker: stderr docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:35.770 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602999+0000 mon.smithi178 (mon.0) 270 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T16:11:35.770 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.602999+0000 mon.smithi178 (mon.0) 270 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T16:11:35.770 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603010+0000 mon.smithi178 (mon.0) 271 : cluster [WRN] Traceback (most recent call last): 2024-04-24T16:11:35.770 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603010+0000 mon.smithi178 (mon.0) 271 : cluster [WRN] Traceback (most recent call last): 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603019+0000 mon.smithi178 (mon.0) 272 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603019+0000 mon.smithi178 (mon.0) 272 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603031+0000 mon.smithi178 (mon.0) 273 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603031+0000 mon.smithi178 (mon.0) 273 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603042+0000 mon.smithi178 (mon.0) 274 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603042+0000 mon.smithi178 (mon.0) 274 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603052+0000 mon.smithi178 (mon.0) 275 : cluster [WRN] exec(code, run_globals) 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603052+0000 mon.smithi178 (mon.0) 275 : cluster [WRN] exec(code, run_globals) 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603064+0000 mon.smithi178 (mon.0) 276 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603064+0000 mon.smithi178 (mon.0) 276 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603076+0000 mon.smithi178 (mon.0) 277 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603076+0000 mon.smithi178 (mon.0) 277 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603087+0000 mon.smithi178 (mon.0) 278 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T16:11:35.771 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603087+0000 mon.smithi178 (mon.0) 278 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603098+0000 mon.smithi178 (mon.0) 279 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603098+0000 mon.smithi178 (mon.0) 279 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603111+0000 mon.smithi178 (mon.0) 280 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603111+0000 mon.smithi178 (mon.0) 280 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603119+0000 mon.smithi178 (mon.0) 281 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603119+0000 mon.smithi178 (mon.0) 281 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603130+0000 mon.smithi178 (mon.0) 282 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603130+0000 mon.smithi178 (mon.0) 282 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603146+0000 mon.smithi178 (mon.0) 283 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603146+0000 mon.smithi178 (mon.0) 283 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603160+0000 mon.smithi178 (mon.0) 284 : cluster [WRN] RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi178 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpdgwfhpiw:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch: docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603160+0000 mon.smithi178 (mon.0) 284 : cluster [WRN] RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi178 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpdgwfhpiw:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch: docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603174+0000 mon.smithi178 (mon.0) 285 : cluster [WRN] See 'docker run --help'. 2024-04-24T16:11:35.772 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.603174+0000 mon.smithi178 (mon.0) 285 : cluster [WRN] See 'docker run --help'. 2024-04-24T16:11:35.773 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.604851+0000 mon.smithi178 (mon.0) 286 : cluster [DBG] Standby manager daemon smithi204.olwubu started 2024-04-24T16:11:35.773 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.604851+0000 mon.smithi178 (mon.0) 286 : cluster [DBG] Standby manager daemon smithi204.olwubu started 2024-04-24T16:11:35.773 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:35.608048+0000 mon.smithi178 (mon.0) 287 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:35.773 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:35.608048+0000 mon.smithi178 (mon.0) 287 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:35.773 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:35.609894+0000 mon.smithi178 (mon.0) 288 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-24T16:11:35.773 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:35.609894+0000 mon.smithi178 (mon.0) 288 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-24T16:11:35.773 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:35.612050+0000 mon.smithi178 (mon.0) 289 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi204.olwubu/key"}]: dispatch 2024-04-24T16:11:35.773 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:35.612050+0000 mon.smithi178 (mon.0) 289 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi204.olwubu/key"}]: dispatch 2024-04-24T16:11:35.773 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:35.612883+0000 mon.smithi178 (mon.0) 290 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-24T16:11:35.773 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:35 smithi178 bash[18765]: audit 2024-04-24T16:11:35.612883+0000 mon.smithi178 (mon.0) 290 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-24T16:11:36.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:30.530646+0000 mon.smithi178 (mon.0) 225 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:30.530646+0000 mon.smithi178 (mon.0) 225 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:30.536002+0000 mon.smithi178 (mon.0) 226 : cluster [INF] mon.smithi178 calling monitor election 2024-04-24T16:11:36.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:30.536002+0000 mon.smithi178 (mon.0) 226 : cluster [INF] mon.smithi178 calling monitor election 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:30.555025+0000 mon.smithi178 (mon.0) 227 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi178"}]: dispatch 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:30.555025+0000 mon.smithi178 (mon.0) 227 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi178"}]: dispatch 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:30.555329+0000 mon.smithi178 (mon.0) 228 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:30.555329+0000 mon.smithi178 (mon.0) 228 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:31.034287+0000 mgr.smithi178.tjvcci (mgr.14197) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:31.034287+0000 mgr.smithi178.tjvcci (mgr.14197) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:31.530658+0000 mon.smithi178 (mon.0) 229 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:31.530658+0000 mon.smithi178 (mon.0) 229 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:32.530825+0000 mon.smithi178 (mon.0) 230 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:32.530825+0000 mon.smithi178 (mon.0) 230 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:32.532396+0000 mon.smithi204 (mon.1) 1 : cluster [INF] mon.smithi204 calling monitor election 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:32.532396+0000 mon.smithi204 (mon.1) 1 : cluster [INF] mon.smithi204 calling monitor election 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:33.035275+0000 mgr.smithi178.tjvcci (mgr.14197) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:36.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:33.035275+0000 mgr.smithi178.tjvcci (mgr.14197) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:33.530600+0000 mon.smithi178 (mon.0) 231 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:33.530600+0000 mon.smithi178 (mon.0) 231 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:34.531246+0000 mon.smithi178 (mon.0) 232 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:34.531246+0000 mon.smithi178 (mon.0) 232 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:34.689177+0000 mon.smithi178 (mon.0) 233 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi204.olwubu/crt"}]: dispatch 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:34.689177+0000 mon.smithi178 (mon.0) 233 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi204.olwubu/crt"}]: dispatch 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:35.530500+0000 mon.smithi178 (mon.0) 234 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:35.530500+0000 mon.smithi178 (mon.0) 234 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.575682+0000 mon.smithi178 (mon.0) 235 : cluster [INF] mon.smithi178 is new leader, mons smithi178,smithi204 in quorum (ranks 0,1) 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.575682+0000 mon.smithi178 (mon.0) 235 : cluster [INF] mon.smithi178 is new leader, mons smithi178,smithi204 in quorum (ranks 0,1) 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579893+0000 mon.smithi178 (mon.0) 236 : cluster [DBG] monmap epoch 2 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579893+0000 mon.smithi178 (mon.0) 236 : cluster [DBG] monmap epoch 2 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579912+0000 mon.smithi178 (mon.0) 237 : cluster [DBG] fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:11:36.133 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579912+0000 mon.smithi178 (mon.0) 237 : cluster [DBG] fsid ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579922+0000 mon.smithi178 (mon.0) 238 : cluster [DBG] last_changed 2024-04-24T16:11:30.530028+0000 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579922+0000 mon.smithi178 (mon.0) 238 : cluster [DBG] last_changed 2024-04-24T16:11:30.530028+0000 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579930+0000 mon.smithi178 (mon.0) 239 : cluster [DBG] created 2024-04-24T16:08:18.679257+0000 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579930+0000 mon.smithi178 (mon.0) 239 : cluster [DBG] created 2024-04-24T16:08:18.679257+0000 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579938+0000 mon.smithi178 (mon.0) 240 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579938+0000 mon.smithi178 (mon.0) 240 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579945+0000 mon.smithi178 (mon.0) 241 : cluster [DBG] election_strategy: 1 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579945+0000 mon.smithi178 (mon.0) 241 : cluster [DBG] election_strategy: 1 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579955+0000 mon.smithi178 (mon.0) 242 : cluster [DBG] 0: [v2:172.21.15.178:3300/0,v1:172.21.15.178:6789/0] mon.smithi178 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579955+0000 mon.smithi178 (mon.0) 242 : cluster [DBG] 0: [v2:172.21.15.178:3300/0,v1:172.21.15.178:6789/0] mon.smithi178 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579967+0000 mon.smithi178 (mon.0) 243 : cluster [DBG] 1: [v2:172.21.15.204:3300/0,v1:172.21.15.204:6789/0] mon.smithi204 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.579967+0000 mon.smithi178 (mon.0) 243 : cluster [DBG] 1: [v2:172.21.15.204:3300/0,v1:172.21.15.204:6789/0] mon.smithi204 2024-04-24T16:11:36.134 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602311+0000 mon.smithi178 (mon.0) 244 : cluster [DBG] fsmap 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602311+0000 mon.smithi178 (mon.0) 244 : cluster [DBG] fsmap 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602350+0000 mon.smithi178 (mon.0) 245 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602350+0000 mon.smithi178 (mon.0) 245 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602567+0000 mon.smithi178 (mon.0) 246 : cluster [DBG] mgrmap e17: smithi178.tjvcci(active, since 38s) 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602567+0000 mon.smithi178 (mon.0) 246 : cluster [DBG] mgrmap e17: smithi178.tjvcci(active, since 38s) 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602729+0000 mon.smithi178 (mon.0) 247 : cluster [WRN] Health detail: HEALTH_WARN failed to probe daemons or devices 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602729+0000 mon.smithi178 (mon.0) 247 : cluster [WRN] Health detail: HEALTH_WARN failed to probe daemons or devices 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602749+0000 mon.smithi178 (mon.0) 248 : cluster [WRN] [WRN] CEPHADM_REFRESH_FAILED: failed to probe daemons or devices 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602749+0000 mon.smithi178 (mon.0) 248 : cluster [WRN] [WRN] CEPHADM_REFRESH_FAILED: failed to probe daemons or devices 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602760+0000 mon.smithi178 (mon.0) 249 : cluster [WRN] host smithi204 `cephadm ceph-volume` failed: cephadm exited with an error code: 1, stderr: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi204 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpy4ip6wa9:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602760+0000 mon.smithi178 (mon.0) 249 : cluster [WRN] host smithi204 `cephadm ceph-volume` failed: cephadm exited with an error code: 1, stderr: Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi204 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpy4ip6wa9:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602773+0000 mon.smithi178 (mon.0) 250 : cluster [WRN] /usr/bin/docker: stderr docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602773+0000 mon.smithi178 (mon.0) 250 : cluster [WRN] /usr/bin/docker: stderr docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:36.135 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602784+0000 mon.smithi178 (mon.0) 251 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602784+0000 mon.smithi178 (mon.0) 251 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602795+0000 mon.smithi178 (mon.0) 252 : cluster [WRN] Traceback (most recent call last): 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602795+0000 mon.smithi178 (mon.0) 252 : cluster [WRN] Traceback (most recent call last): 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602808+0000 mon.smithi178 (mon.0) 253 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602808+0000 mon.smithi178 (mon.0) 253 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602820+0000 mon.smithi178 (mon.0) 254 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602820+0000 mon.smithi178 (mon.0) 254 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602831+0000 mon.smithi178 (mon.0) 255 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602831+0000 mon.smithi178 (mon.0) 255 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602840+0000 mon.smithi178 (mon.0) 256 : cluster [WRN] exec(code, run_globals) 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602840+0000 mon.smithi178 (mon.0) 256 : cluster [WRN] exec(code, run_globals) 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602852+0000 mon.smithi178 (mon.0) 257 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602852+0000 mon.smithi178 (mon.0) 257 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T16:11:36.136 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602862+0000 mon.smithi178 (mon.0) 258 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602862+0000 mon.smithi178 (mon.0) 258 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602873+0000 mon.smithi178 (mon.0) 259 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602873+0000 mon.smithi178 (mon.0) 259 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602884+0000 mon.smithi178 (mon.0) 260 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602884+0000 mon.smithi178 (mon.0) 260 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602895+0000 mon.smithi178 (mon.0) 261 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602895+0000 mon.smithi178 (mon.0) 261 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602906+0000 mon.smithi178 (mon.0) 262 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602906+0000 mon.smithi178 (mon.0) 262 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602916+0000 mon.smithi178 (mon.0) 263 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602916+0000 mon.smithi178 (mon.0) 263 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602926+0000 mon.smithi178 (mon.0) 264 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602926+0000 mon.smithi178 (mon.0) 264 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T16:11:36.137 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602940+0000 mon.smithi178 (mon.0) 265 : cluster [WRN] RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi204 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpy4ip6wa9:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch: docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602940+0000 mon.smithi178 (mon.0) 265 : cluster [WRN] RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi204 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpy4ip6wa9:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch: docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602953+0000 mon.smithi178 (mon.0) 266 : cluster [WRN] See 'docker run --help'. 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602953+0000 mon.smithi178 (mon.0) 266 : cluster [WRN] See 'docker run --help'. 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602963+0000 mon.smithi178 (mon.0) 267 : cluster [WRN] host smithi178 `cephadm ceph-volume` failed: cephadm exited with an error code: 1, stderr: Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602963+0000 mon.smithi178 (mon.0) 267 : cluster [WRN] host smithi178 `cephadm ceph-volume` failed: cephadm exited with an error code: 1, stderr: Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602977+0000 mon.smithi178 (mon.0) 268 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi178 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpdgwfhpiw:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602977+0000 mon.smithi178 (mon.0) 268 : cluster [WRN] Non-zero exit code 125 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi178 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpdgwfhpiw:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602988+0000 mon.smithi178 (mon.0) 269 : cluster [WRN] /usr/bin/docker: stderr docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602988+0000 mon.smithi178 (mon.0) 269 : cluster [WRN] /usr/bin/docker: stderr docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602999+0000 mon.smithi178 (mon.0) 270 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.602999+0000 mon.smithi178 (mon.0) 270 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603010+0000 mon.smithi178 (mon.0) 271 : cluster [WRN] Traceback (most recent call last): 2024-04-24T16:11:36.138 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603010+0000 mon.smithi178 (mon.0) 271 : cluster [WRN] Traceback (most recent call last): 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603019+0000 mon.smithi178 (mon.0) 272 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603019+0000 mon.smithi178 (mon.0) 272 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603031+0000 mon.smithi178 (mon.0) 273 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603031+0000 mon.smithi178 (mon.0) 273 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603042+0000 mon.smithi178 (mon.0) 274 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603042+0000 mon.smithi178 (mon.0) 274 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603052+0000 mon.smithi178 (mon.0) 275 : cluster [WRN] exec(code, run_globals) 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603052+0000 mon.smithi178 (mon.0) 275 : cluster [WRN] exec(code, run_globals) 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603064+0000 mon.smithi178 (mon.0) 276 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603064+0000 mon.smithi178 (mon.0) 276 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603076+0000 mon.smithi178 (mon.0) 277 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603076+0000 mon.smithi178 (mon.0) 277 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T16:11:36.139 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603087+0000 mon.smithi178 (mon.0) 278 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T16:11:36.140 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603087+0000 mon.smithi178 (mon.0) 278 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T16:11:36.140 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603098+0000 mon.smithi178 (mon.0) 279 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T16:11:36.140 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603098+0000 mon.smithi178 (mon.0) 279 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T16:11:36.140 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603111+0000 mon.smithi178 (mon.0) 280 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T16:11:36.140 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603111+0000 mon.smithi178 (mon.0) 280 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T16:11:36.140 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603119+0000 mon.smithi178 (mon.0) 281 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T16:11:36.140 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603119+0000 mon.smithi178 (mon.0) 281 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T16:11:36.140 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603130+0000 mon.smithi178 (mon.0) 282 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T16:11:36.140 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603130+0000 mon.smithi178 (mon.0) 282 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T16:11:36.140 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603146+0000 mon.smithi178 (mon.0) 283 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T16:11:36.140 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603146+0000 mon.smithi178 (mon.0) 283 : cluster [WRN] File "/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T16:11:36.140 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603160+0000 mon.smithi178 (mon.0) 284 : cluster [WRN] RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi178 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpdgwfhpiw:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch: docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603160+0000 mon.smithi178 (mon.0) 284 : cluster [WRN] RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --ulimit nofile=1048576 --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a -e NODE_NAME=smithi178 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs:slave -v /tmp/ceph-tmpdgwfhpiw:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a inventory --format=json-pretty --filter-for-batch: docker: Error response from daemon: invalid mount config: must use either propagation mode "rslave" or "rshared" when mount source is within the daemon root, daemon root: "/var/lib/docker", bind mount source: "/", propagation: "slave". 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603174+0000 mon.smithi178 (mon.0) 285 : cluster [WRN] See 'docker run --help'. 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.603174+0000 mon.smithi178 (mon.0) 285 : cluster [WRN] See 'docker run --help'. 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.604851+0000 mon.smithi178 (mon.0) 286 : cluster [DBG] Standby manager daemon smithi204.olwubu started 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.604851+0000 mon.smithi178 (mon.0) 286 : cluster [DBG] Standby manager daemon smithi204.olwubu started 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:35.608048+0000 mon.smithi178 (mon.0) 287 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:35.608048+0000 mon.smithi178 (mon.0) 287 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:35.609894+0000 mon.smithi178 (mon.0) 288 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:35.609894+0000 mon.smithi178 (mon.0) 288 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:35.612050+0000 mon.smithi178 (mon.0) 289 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi204.olwubu/key"}]: dispatch 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:35.612050+0000 mon.smithi178 (mon.0) 289 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi204.olwubu/key"}]: dispatch 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:35.612883+0000 mon.smithi178 (mon.0) 290 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-24T16:11:36.141 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:35 smithi204 bash[20295]: audit 2024-04-24T16:11:35.612883+0000 mon.smithi178 (mon.0) 290 : audit [DBG] from='mgr.? 172.21.15.204:0/2335248387' entity='mgr.smithi204.olwubu' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-24T16:11:36.897 INFO:teuthology.orchestra.run.smithi204.stdout: 2024-04-24T16:11:36.897 INFO:teuthology.orchestra.run.smithi204.stdout:{"epoch":2,"fsid":"ad55ec96-0254-11ef-bc93-c7b262605968","modified":"2024-04-24T16:11:30.530028Z","created":"2024-04-24T16:08:18.679257Z","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":"smithi178","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.178:3300","nonce":0},{"type":"v1","addr":"172.21.15.178:6789","nonce":0}]},"addr":"172.21.15.178:6789/0","public_addr":"172.21.15.178:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi204","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.204:3300","nonce":0},{"type":"v1","addr":"172.21.15.204:6789","nonce":0}]},"addr":"172.21.15.204:6789/0","public_addr":"172.21.15.204:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-04-24T16:11:36.900 INFO:teuthology.orchestra.run.smithi204.stderr:dumped monmap epoch 2 2024-04-24T16:11:36.939 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:36 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.035916+0000 mgr.smithi178.tjvcci (mgr.14197) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:36.939 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:36 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.035916+0000 mgr.smithi178.tjvcci (mgr.14197) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:36.939 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:36 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.673473+0000 mon.smithi178 (mon.0) 291 : cluster [DBG] mgrmap e18: smithi178.tjvcci(active, since 38s), standbys: smithi204.olwubu 2024-04-24T16:11:36.939 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:36 smithi204 bash[20295]: cluster 2024-04-24T16:11:35.673473+0000 mon.smithi178 (mon.0) 291 : cluster [DBG] mgrmap e18: smithi178.tjvcci(active, since 38s), standbys: smithi204.olwubu 2024-04-24T16:11:36.940 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:36 smithi204 bash[20295]: audit 2024-04-24T16:11:35.675215+0000 mon.smithi178 (mon.0) 292 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr metadata", "who": "smithi204.olwubu", "id": "smithi204.olwubu"}]: dispatch 2024-04-24T16:11:36.940 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:36 smithi204 bash[20295]: audit 2024-04-24T16:11:35.675215+0000 mon.smithi178 (mon.0) 292 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr metadata", "who": "smithi204.olwubu", "id": "smithi204.olwubu"}]: dispatch 2024-04-24T16:11:36.940 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:36 smithi204 bash[20295]: audit 2024-04-24T16:11:36.088750+0000 mon.smithi178 (mon.0) 293 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:36.940 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:36 smithi204 bash[20295]: audit 2024-04-24T16:11:36.088750+0000 mon.smithi178 (mon.0) 293 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:36.940 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:36 smithi204 bash[20295]: audit 2024-04-24T16:11:36.531369+0000 mon.smithi178 (mon.0) 294 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:36.940 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:36 smithi204 bash[20295]: audit 2024-04-24T16:11:36.531369+0000 mon.smithi178 (mon.0) 294 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:37.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:36 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.035916+0000 mgr.smithi178.tjvcci (mgr.14197) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:37.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:36 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.035916+0000 mgr.smithi178.tjvcci (mgr.14197) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:37.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:36 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.673473+0000 mon.smithi178 (mon.0) 291 : cluster [DBG] mgrmap e18: smithi178.tjvcci(active, since 38s), standbys: smithi204.olwubu 2024-04-24T16:11:37.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:36 smithi178 bash[18765]: cluster 2024-04-24T16:11:35.673473+0000 mon.smithi178 (mon.0) 291 : cluster [DBG] mgrmap e18: smithi178.tjvcci(active, since 38s), standbys: smithi204.olwubu 2024-04-24T16:11:37.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:36 smithi178 bash[18765]: audit 2024-04-24T16:11:35.675215+0000 mon.smithi178 (mon.0) 292 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr metadata", "who": "smithi204.olwubu", "id": "smithi204.olwubu"}]: dispatch 2024-04-24T16:11:37.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:36 smithi178 bash[18765]: audit 2024-04-24T16:11:35.675215+0000 mon.smithi178 (mon.0) 292 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr metadata", "who": "smithi204.olwubu", "id": "smithi204.olwubu"}]: dispatch 2024-04-24T16:11:37.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:36 smithi178 bash[18765]: audit 2024-04-24T16:11:36.088750+0000 mon.smithi178 (mon.0) 293 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:37.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:36 smithi178 bash[18765]: audit 2024-04-24T16:11:36.088750+0000 mon.smithi178 (mon.0) 293 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:37.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:36 smithi178 bash[18765]: audit 2024-04-24T16:11:36.531369+0000 mon.smithi178 (mon.0) 294 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:37.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:36 smithi178 bash[18765]: audit 2024-04-24T16:11:36.531369+0000 mon.smithi178 (mon.0) 294 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mon metadata", "id": "smithi204"}]: dispatch 2024-04-24T16:11:37.590 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-04-24T16:11:37.591 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph config generate-minimal-conf 2024-04-24T16:11:37.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:37 smithi204 bash[20295]: audit 2024-04-24T16:11:36.897168+0000 mon.smithi178 (mon.0) 295 : audit [DBG] from='client.? 172.21.15.204:0/1552404415' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:37.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:37 smithi204 bash[20295]: audit 2024-04-24T16:11:36.897168+0000 mon.smithi178 (mon.0) 295 : audit [DBG] from='client.? 172.21.15.204:0/1552404415' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:38.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:37 smithi178 bash[18765]: audit 2024-04-24T16:11:36.897168+0000 mon.smithi178 (mon.0) 295 : audit [DBG] from='client.? 172.21.15.204:0/1552404415' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:38.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:37 smithi178 bash[18765]: audit 2024-04-24T16:11:36.897168+0000 mon.smithi178 (mon.0) 295 : audit [DBG] from='client.? 172.21.15.204:0/1552404415' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T16:11:39.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:38 smithi178 bash[18765]: cluster 2024-04-24T16:11:37.036942+0000 mgr.smithi178.tjvcci (mgr.14197) 29 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:39.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:38 smithi178 bash[18765]: cluster 2024-04-24T16:11:37.036942+0000 mgr.smithi178.tjvcci (mgr.14197) 29 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:39.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:38 smithi204 bash[20295]: cluster 2024-04-24T16:11:37.036942+0000 mgr.smithi178.tjvcci (mgr.14197) 29 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:39.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:38 smithi204 bash[20295]: cluster 2024-04-24T16:11:37.036942+0000 mgr.smithi178.tjvcci (mgr.14197) 29 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:41.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:40 smithi178 bash[18765]: cluster 2024-04-24T16:11:39.038057+0000 mgr.smithi178.tjvcci (mgr.14197) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:41.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:40 smithi178 bash[18765]: cluster 2024-04-24T16:11:39.038057+0000 mgr.smithi178.tjvcci (mgr.14197) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:41.105 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:40 smithi204 bash[20295]: cluster 2024-04-24T16:11:39.038057+0000 mgr.smithi178.tjvcci (mgr.14197) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:41.105 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:40 smithi204 bash[20295]: cluster 2024-04-24T16:11:39.038057+0000 mgr.smithi178.tjvcci (mgr.14197) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:42.353 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:11:42.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:42 smithi204 bash[20295]: cluster 2024-04-24T16:11:41.039088+0000 mgr.smithi178.tjvcci (mgr.14197) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:42.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:42 smithi204 bash[20295]: cluster 2024-04-24T16:11:41.039088+0000 mgr.smithi178.tjvcci (mgr.14197) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:42.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:42 smithi204 bash[20295]: audit 2024-04-24T16:11:42.376571+0000 mon.smithi178 (mon.0) 296 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:42.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:42 smithi204 bash[20295]: audit 2024-04-24T16:11:42.376571+0000 mon.smithi178 (mon.0) 296 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:43.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:42 smithi178 bash[18765]: cluster 2024-04-24T16:11:41.039088+0000 mgr.smithi178.tjvcci (mgr.14197) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:43.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:42 smithi178 bash[18765]: cluster 2024-04-24T16:11:41.039088+0000 mgr.smithi178.tjvcci (mgr.14197) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:43.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:42 smithi178 bash[18765]: audit 2024-04-24T16:11:42.376571+0000 mon.smithi178 (mon.0) 296 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:42 smithi178 bash[18765]: audit 2024-04-24T16:11:42.376571+0000 mon.smithi178 (mon.0) 296 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:43.636 INFO:teuthology.orchestra.run.smithi178.stdout:# minimal ceph.conf for ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:11:43.637 INFO:teuthology.orchestra.run.smithi178.stdout:[global] 2024-04-24T16:11:43.637 INFO:teuthology.orchestra.run.smithi178.stdout: fsid = ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:11:43.637 INFO:teuthology.orchestra.run.smithi178.stdout: mon_host = [v2:172.21.15.178:3300/0,v1:172.21.15.178:6789/0] [v2:172.21.15.204:3300/0,v1:172.21.15.204:6789/0] 2024-04-24T16:11:44.066 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:42.924562+0000 mon.smithi178 (mon.0) 297 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:44.066 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:42.924562+0000 mon.smithi178 (mon.0) 297 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:44.066 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:42.926479+0000 mon.smithi178 (mon.0) 298 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:11:44.066 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:42.926479+0000 mon.smithi178 (mon.0) 298 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:11:44.066 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: cephadm 2024-04-24T16:11:42.928974+0000 mgr.smithi178.tjvcci (mgr.14197) 32 : cephadm [INF] Updating smithi178:/etc/ceph/ceph.conf 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: cephadm 2024-04-24T16:11:42.928974+0000 mgr.smithi178.tjvcci (mgr.14197) 32 : cephadm [INF] Updating smithi178:/etc/ceph/ceph.conf 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: cephadm 2024-04-24T16:11:42.929427+0000 mgr.smithi178.tjvcci (mgr.14197) 33 : cephadm [INF] Updating smithi204:/etc/ceph/ceph.conf 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: cephadm 2024-04-24T16:11:42.929427+0000 mgr.smithi178.tjvcci (mgr.14197) 33 : cephadm [INF] Updating smithi204:/etc/ceph/ceph.conf 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.315204+0000 mon.smithi178 (mon.0) 299 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.315204+0000 mon.smithi178 (mon.0) 299 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.320715+0000 mon.smithi178 (mon.0) 300 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.320715+0000 mon.smithi178 (mon.0) 300 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.325301+0000 mon.smithi178 (mon.0) 301 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.325301+0000 mon.smithi178 (mon.0) 301 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.377435+0000 mon.smithi178 (mon.0) 302 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.377435+0000 mon.smithi178 (mon.0) 302 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.378363+0000 mon.smithi178 (mon.0) 303 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T16:11:44.067 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.378363+0000 mon.smithi178 (mon.0) 303 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T16:11:44.068 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.379020+0000 mon.smithi178 (mon.0) 304 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:44.068 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.379020+0000 mon.smithi178 (mon.0) 304 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:44.068 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.639657+0000 mon.smithi178 (mon.0) 305 : audit [DBG] from='client.? 172.21.15.178:0/1601534426' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:44.068 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:43 smithi178 bash[18765]: audit 2024-04-24T16:11:43.639657+0000 mon.smithi178 (mon.0) 305 : audit [DBG] from='client.? 172.21.15.178:0/1601534426' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:42.924562+0000 mon.smithi178 (mon.0) 297 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:42.924562+0000 mon.smithi178 (mon.0) 297 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:42.926479+0000 mon.smithi178 (mon.0) 298 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:11:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:42.926479+0000 mon.smithi178 (mon.0) 298 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:11:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: cephadm 2024-04-24T16:11:42.928974+0000 mgr.smithi178.tjvcci (mgr.14197) 32 : cephadm [INF] Updating smithi178:/etc/ceph/ceph.conf 2024-04-24T16:11:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: cephadm 2024-04-24T16:11:42.928974+0000 mgr.smithi178.tjvcci (mgr.14197) 32 : cephadm [INF] Updating smithi178:/etc/ceph/ceph.conf 2024-04-24T16:11:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: cephadm 2024-04-24T16:11:42.929427+0000 mgr.smithi178.tjvcci (mgr.14197) 33 : cephadm [INF] Updating smithi204:/etc/ceph/ceph.conf 2024-04-24T16:11:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: cephadm 2024-04-24T16:11:42.929427+0000 mgr.smithi178.tjvcci (mgr.14197) 33 : cephadm [INF] Updating smithi204:/etc/ceph/ceph.conf 2024-04-24T16:11:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.315204+0000 mon.smithi178 (mon.0) 299 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.315204+0000 mon.smithi178 (mon.0) 299 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.320715+0000 mon.smithi178 (mon.0) 300 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.320715+0000 mon.smithi178 (mon.0) 300 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:44.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.325301+0000 mon.smithi178 (mon.0) 301 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:44.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.325301+0000 mon.smithi178 (mon.0) 301 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:44.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.377435+0000 mon.smithi178 (mon.0) 302 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T16:11:44.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.377435+0000 mon.smithi178 (mon.0) 302 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T16:11:44.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.378363+0000 mon.smithi178 (mon.0) 303 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T16:11:44.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.378363+0000 mon.smithi178 (mon.0) 303 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T16:11:44.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.379020+0000 mon.smithi178 (mon.0) 304 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:44.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.379020+0000 mon.smithi178 (mon.0) 304 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:44.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.639657+0000 mon.smithi178 (mon.0) 305 : audit [DBG] from='client.? 172.21.15.178:0/1601534426' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:44.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:43 smithi204 bash[20295]: audit 2024-04-24T16:11:43.639657+0000 mon.smithi178 (mon.0) 305 : audit [DBG] from='client.? 172.21.15.178:0/1601534426' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:44.653 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-04-24T16:11:44.653 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T16:11:44.653 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd of=/etc/ceph/ceph.conf 2024-04-24T16:11:44.667 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T16:11:44.667 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-24T16:11:44.723 DEBUG:teuthology.orchestra.run.smithi204:> set -ex 2024-04-24T16:11:44.723 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd of=/etc/ceph/ceph.conf 2024-04-24T16:11:44.736 DEBUG:teuthology.orchestra.run.smithi204:> set -ex 2024-04-24T16:11:44.736 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-24T16:11:44.790 INFO:tasks.cephadm:Deploying OSDs... 2024-04-24T16:11:44.791 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T16:11:44.791 DEBUG:teuthology.orchestra.run.smithi178:> dd if=/scratch_devs of=/dev/stdout 2024-04-24T16:11:44.796 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-24T16:11:44.796 DEBUG:teuthology.orchestra.run.smithi178:> stat /dev/nvme1n1 2024-04-24T16:11:44.843 INFO:teuthology.orchestra.run.smithi178.stdout: File: /dev/nvme1n1 2024-04-24T16:11:44.843 INFO:teuthology.orchestra.run.smithi178.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T16:11:44.844 INFO:teuthology.orchestra.run.smithi178.stdout:Device: 5h/5d Inode: 970 Links: 1 Device type: 103,2 2024-04-24T16:11:44.844 INFO:teuthology.orchestra.run.smithi178.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T16:11:44.844 INFO:teuthology.orchestra.run.smithi178.stdout:Access: 2024-04-24 16:06:56.164486484 +0000 2024-04-24T16:11:44.844 INFO:teuthology.orchestra.run.smithi178.stdout:Modify: 2024-04-24 16:06:56.164486484 +0000 2024-04-24T16:11:44.844 INFO:teuthology.orchestra.run.smithi178.stdout:Change: 2024-04-24 16:06:56.164486484 +0000 2024-04-24T16:11:44.844 INFO:teuthology.orchestra.run.smithi178.stdout: Birth: - 2024-04-24T16:11:44.844 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-04-24T16:11:44.894 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records in 2024-04-24T16:11:44.895 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records out 2024-04-24T16:11:44.895 INFO:teuthology.orchestra.run.smithi178.stderr:512 bytes copied, 0.000187524 s, 2.7 MB/s 2024-04-24T16:11:44.896 DEBUG:teuthology.orchestra.run.smithi178:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-04-24T16:11:44.944 DEBUG:teuthology.orchestra.run.smithi178:> stat /dev/nvme2n1 2024-04-24T16:11:44.944 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cluster 2024-04-24T16:11:43.039683+0000 mgr.smithi178.tjvcci (mgr.14197) 34 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:44.944 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cluster 2024-04-24T16:11:43.039683+0000 mgr.smithi178.tjvcci (mgr.14197) 34 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:44.944 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cephadm 2024-04-24T16:11:43.144812+0000 mgr.smithi178.tjvcci (mgr.14197) 35 : cephadm [INF] Updating smithi178:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:44.944 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cephadm 2024-04-24T16:11:43.144812+0000 mgr.smithi178.tjvcci (mgr.14197) 35 : cephadm [INF] Updating smithi178:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:44.944 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cephadm 2024-04-24T16:11:43.145204+0000 mgr.smithi178.tjvcci (mgr.14197) 36 : cephadm [INF] Updating smithi204:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:44.944 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cephadm 2024-04-24T16:11:43.145204+0000 mgr.smithi178.tjvcci (mgr.14197) 36 : cephadm [INF] Updating smithi204:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:44.944 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cluster 2024-04-24T16:11:43.321468+0000 mgr.smithi178.tjvcci (mgr.14197) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:44.945 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cluster 2024-04-24T16:11:43.321468+0000 mgr.smithi178.tjvcci (mgr.14197) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:44.945 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cluster 2024-04-24T16:11:43.321930+0000 mgr.smithi178.tjvcci (mgr.14197) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:44.945 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cluster 2024-04-24T16:11:43.321930+0000 mgr.smithi178.tjvcci (mgr.14197) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:44.945 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cephadm 2024-04-24T16:11:43.376830+0000 mgr.smithi178.tjvcci (mgr.14197) 39 : cephadm [INF] Reconfiguring mon.smithi178 (unknown last config time)... 2024-04-24T16:11:44.945 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cephadm 2024-04-24T16:11:43.376830+0000 mgr.smithi178.tjvcci (mgr.14197) 39 : cephadm [INF] Reconfiguring mon.smithi178 (unknown last config time)... 2024-04-24T16:11:44.945 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cephadm 2024-04-24T16:11:43.379839+0000 mgr.smithi178.tjvcci (mgr.14197) 40 : cephadm [INF] Reconfiguring daemon mon.smithi178 on smithi178 2024-04-24T16:11:44.945 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:44 smithi178 bash[18765]: cephadm 2024-04-24T16:11:43.379839+0000 mgr.smithi178.tjvcci (mgr.14197) 40 : cephadm [INF] Reconfiguring daemon mon.smithi178 on smithi178 2024-04-24T16:11:44.990 INFO:teuthology.orchestra.run.smithi178.stdout: File: /dev/nvme2n1 2024-04-24T16:11:44.990 INFO:teuthology.orchestra.run.smithi178.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T16:11:44.991 INFO:teuthology.orchestra.run.smithi178.stdout:Device: 5h/5d Inode: 979 Links: 1 Device type: 103,4 2024-04-24T16:11:44.991 INFO:teuthology.orchestra.run.smithi178.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T16:11:44.991 INFO:teuthology.orchestra.run.smithi178.stdout:Access: 2024-04-24 16:06:56.264435592 +0000 2024-04-24T16:11:44.991 INFO:teuthology.orchestra.run.smithi178.stdout:Modify: 2024-04-24 16:06:56.264435592 +0000 2024-04-24T16:11:44.991 INFO:teuthology.orchestra.run.smithi178.stdout:Change: 2024-04-24 16:06:56.264435592 +0000 2024-04-24T16:11:44.991 INFO:teuthology.orchestra.run.smithi178.stdout: Birth: - 2024-04-24T16:11:44.991 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-04-24T16:11:45.042 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records in 2024-04-24T16:11:45.043 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records out 2024-04-24T16:11:45.043 INFO:teuthology.orchestra.run.smithi178.stderr:512 bytes copied, 0.000196545 s, 2.6 MB/s 2024-04-24T16:11:45.043 DEBUG:teuthology.orchestra.run.smithi178:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-04-24T16:11:45.095 DEBUG:teuthology.orchestra.run.smithi178:> stat /dev/nvme3n1 2024-04-24T16:11:45.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cluster 2024-04-24T16:11:43.039683+0000 mgr.smithi178.tjvcci (mgr.14197) 34 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:45.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cluster 2024-04-24T16:11:43.039683+0000 mgr.smithi178.tjvcci (mgr.14197) 34 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:45.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cephadm 2024-04-24T16:11:43.144812+0000 mgr.smithi178.tjvcci (mgr.14197) 35 : cephadm [INF] Updating smithi178:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:45.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cephadm 2024-04-24T16:11:43.144812+0000 mgr.smithi178.tjvcci (mgr.14197) 35 : cephadm [INF] Updating smithi178:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:45.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cephadm 2024-04-24T16:11:43.145204+0000 mgr.smithi178.tjvcci (mgr.14197) 36 : cephadm [INF] Updating smithi204:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:45.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cephadm 2024-04-24T16:11:43.145204+0000 mgr.smithi178.tjvcci (mgr.14197) 36 : cephadm [INF] Updating smithi204:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T16:11:45.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cluster 2024-04-24T16:11:43.321468+0000 mgr.smithi178.tjvcci (mgr.14197) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:45.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cluster 2024-04-24T16:11:43.321468+0000 mgr.smithi178.tjvcci (mgr.14197) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:45.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cluster 2024-04-24T16:11:43.321930+0000 mgr.smithi178.tjvcci (mgr.14197) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:45.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cluster 2024-04-24T16:11:43.321930+0000 mgr.smithi178.tjvcci (mgr.14197) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:45.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cephadm 2024-04-24T16:11:43.376830+0000 mgr.smithi178.tjvcci (mgr.14197) 39 : cephadm [INF] Reconfiguring mon.smithi178 (unknown last config time)... 2024-04-24T16:11:45.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cephadm 2024-04-24T16:11:43.376830+0000 mgr.smithi178.tjvcci (mgr.14197) 39 : cephadm [INF] Reconfiguring mon.smithi178 (unknown last config time)... 2024-04-24T16:11:45.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cephadm 2024-04-24T16:11:43.379839+0000 mgr.smithi178.tjvcci (mgr.14197) 40 : cephadm [INF] Reconfiguring daemon mon.smithi178 on smithi178 2024-04-24T16:11:45.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:44 smithi204 bash[20295]: cephadm 2024-04-24T16:11:43.379839+0000 mgr.smithi178.tjvcci (mgr.14197) 40 : cephadm [INF] Reconfiguring daemon mon.smithi178 on smithi178 2024-04-24T16:11:45.142 INFO:teuthology.orchestra.run.smithi178.stdout: File: /dev/nvme3n1 2024-04-24T16:11:45.142 INFO:teuthology.orchestra.run.smithi178.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T16:11:45.142 INFO:teuthology.orchestra.run.smithi178.stdout:Device: 5h/5d Inode: 988 Links: 1 Device type: 103,6 2024-04-24T16:11:45.142 INFO:teuthology.orchestra.run.smithi178.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T16:11:45.142 INFO:teuthology.orchestra.run.smithi178.stdout:Access: 2024-04-24 16:06:56.368382663 +0000 2024-04-24T16:11:45.142 INFO:teuthology.orchestra.run.smithi178.stdout:Modify: 2024-04-24 16:06:56.368382663 +0000 2024-04-24T16:11:45.142 INFO:teuthology.orchestra.run.smithi178.stdout:Change: 2024-04-24 16:06:56.368382663 +0000 2024-04-24T16:11:45.142 INFO:teuthology.orchestra.run.smithi178.stdout: Birth: - 2024-04-24T16:11:45.143 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-04-24T16:11:45.197 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records in 2024-04-24T16:11:45.197 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records out 2024-04-24T16:11:45.197 INFO:teuthology.orchestra.run.smithi178.stderr:512 bytes copied, 0.00036602 s, 1.4 MB/s 2024-04-24T16:11:45.198 DEBUG:teuthology.orchestra.run.smithi178:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-04-24T16:11:45.252 DEBUG:teuthology.orchestra.run.smithi178:> stat /dev/nvme4n1 2024-04-24T16:11:45.299 INFO:teuthology.orchestra.run.smithi178.stdout: File: /dev/nvme4n1 2024-04-24T16:11:45.299 INFO:teuthology.orchestra.run.smithi178.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T16:11:45.299 INFO:teuthology.orchestra.run.smithi178.stdout:Device: 5h/5d Inode: 997 Links: 1 Device type: 103,8 2024-04-24T16:11:45.299 INFO:teuthology.orchestra.run.smithi178.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T16:11:45.299 INFO:teuthology.orchestra.run.smithi178.stdout:Access: 2024-04-24 16:06:56.464333805 +0000 2024-04-24T16:11:45.300 INFO:teuthology.orchestra.run.smithi178.stdout:Modify: 2024-04-24 16:06:56.464333805 +0000 2024-04-24T16:11:45.300 INFO:teuthology.orchestra.run.smithi178.stdout:Change: 2024-04-24 16:06:56.464333805 +0000 2024-04-24T16:11:45.300 INFO:teuthology.orchestra.run.smithi178.stdout: Birth: - 2024-04-24T16:11:45.300 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-04-24T16:11:45.352 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records in 2024-04-24T16:11:45.352 INFO:teuthology.orchestra.run.smithi178.stderr:1+0 records out 2024-04-24T16:11:45.352 INFO:teuthology.orchestra.run.smithi178.stderr:512 bytes copied, 0.00024497 s, 2.1 MB/s 2024-04-24T16:11:45.354 DEBUG:teuthology.orchestra.run.smithi178:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-04-24T16:11:45.406 DEBUG:teuthology.orchestra.run.smithi204:> set -ex 2024-04-24T16:11:45.406 DEBUG:teuthology.orchestra.run.smithi204:> dd if=/scratch_devs of=/dev/stdout 2024-04-24T16:11:45.412 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-24T16:11:45.412 DEBUG:teuthology.orchestra.run.smithi204:> stat /dev/nvme1n1 2024-04-24T16:11:45.459 INFO:teuthology.orchestra.run.smithi204.stdout: File: /dev/nvme1n1 2024-04-24T16:11:45.459 INFO:teuthology.orchestra.run.smithi204.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T16:11:45.459 INFO:teuthology.orchestra.run.smithi204.stdout:Device: 5h/5d Inode: 961 Links: 1 Device type: 103,2 2024-04-24T16:11:45.459 INFO:teuthology.orchestra.run.smithi204.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T16:11:45.459 INFO:teuthology.orchestra.run.smithi204.stdout:Access: 2024-04-24 16:06:57.493358856 +0000 2024-04-24T16:11:45.459 INFO:teuthology.orchestra.run.smithi204.stdout:Modify: 2024-04-24 16:06:57.493358856 +0000 2024-04-24T16:11:45.459 INFO:teuthology.orchestra.run.smithi204.stdout:Change: 2024-04-24 16:06:57.493358856 +0000 2024-04-24T16:11:45.460 INFO:teuthology.orchestra.run.smithi204.stdout: Birth: - 2024-04-24T16:11:45.460 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-04-24T16:11:45.514 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records in 2024-04-24T16:11:45.514 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records out 2024-04-24T16:11:45.514 INFO:teuthology.orchestra.run.smithi204.stderr:512 bytes copied, 0.000474931 s, 1.1 MB/s 2024-04-24T16:11:45.515 DEBUG:teuthology.orchestra.run.smithi204:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-04-24T16:11:45.565 DEBUG:teuthology.orchestra.run.smithi204:> stat /dev/nvme2n1 2024-04-24T16:11:45.611 INFO:teuthology.orchestra.run.smithi204.stdout: File: /dev/nvme2n1 2024-04-24T16:11:45.611 INFO:teuthology.orchestra.run.smithi204.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T16:11:45.611 INFO:teuthology.orchestra.run.smithi204.stdout:Device: 5h/5d Inode: 970 Links: 1 Device type: 103,4 2024-04-24T16:11:45.611 INFO:teuthology.orchestra.run.smithi204.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T16:11:45.611 INFO:teuthology.orchestra.run.smithi204.stdout:Access: 2024-04-24 16:06:57.589310000 +0000 2024-04-24T16:11:45.611 INFO:teuthology.orchestra.run.smithi204.stdout:Modify: 2024-04-24 16:06:57.589310000 +0000 2024-04-24T16:11:45.611 INFO:teuthology.orchestra.run.smithi204.stdout:Change: 2024-04-24 16:06:57.589310000 +0000 2024-04-24T16:11:45.611 INFO:teuthology.orchestra.run.smithi204.stdout: Birth: - 2024-04-24T16:11:45.611 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-04-24T16:11:45.665 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records in 2024-04-24T16:11:45.665 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records out 2024-04-24T16:11:45.665 INFO:teuthology.orchestra.run.smithi204.stderr:512 bytes copied, 0.000496265 s, 1.0 MB/s 2024-04-24T16:11:45.667 DEBUG:teuthology.orchestra.run.smithi204:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-04-24T16:11:45.716 DEBUG:teuthology.orchestra.run.smithi204:> stat /dev/nvme3n1 2024-04-24T16:11:45.763 INFO:teuthology.orchestra.run.smithi204.stdout: File: /dev/nvme3n1 2024-04-24T16:11:45.763 INFO:teuthology.orchestra.run.smithi204.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T16:11:45.763 INFO:teuthology.orchestra.run.smithi204.stdout:Device: 5h/5d Inode: 979 Links: 1 Device type: 103,6 2024-04-24T16:11:45.763 INFO:teuthology.orchestra.run.smithi204.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T16:11:45.764 INFO:teuthology.orchestra.run.smithi204.stdout:Access: 2024-04-24 16:06:57.685261143 +0000 2024-04-24T16:11:45.764 INFO:teuthology.orchestra.run.smithi204.stdout:Modify: 2024-04-24 16:06:57.685261143 +0000 2024-04-24T16:11:45.764 INFO:teuthology.orchestra.run.smithi204.stdout:Change: 2024-04-24 16:06:57.685261143 +0000 2024-04-24T16:11:45.764 INFO:teuthology.orchestra.run.smithi204.stdout: Birth: - 2024-04-24T16:11:45.764 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-04-24T16:11:45.818 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records in 2024-04-24T16:11:45.818 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records out 2024-04-24T16:11:45.818 INFO:teuthology.orchestra.run.smithi204.stderr:512 bytes copied, 0.000443658 s, 1.2 MB/s 2024-04-24T16:11:45.819 DEBUG:teuthology.orchestra.run.smithi204:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-04-24T16:11:45.868 DEBUG:teuthology.orchestra.run.smithi204:> stat /dev/nvme4n1 2024-04-24T16:11:45.915 INFO:teuthology.orchestra.run.smithi204.stdout: File: /dev/nvme4n1 2024-04-24T16:11:45.915 INFO:teuthology.orchestra.run.smithi204.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T16:11:45.915 INFO:teuthology.orchestra.run.smithi204.stdout:Device: 5h/5d Inode: 988 Links: 1 Device type: 103,8 2024-04-24T16:11:45.915 INFO:teuthology.orchestra.run.smithi204.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T16:11:45.915 INFO:teuthology.orchestra.run.smithi204.stdout:Access: 2024-04-24 16:06:57.777214323 +0000 2024-04-24T16:11:45.915 INFO:teuthology.orchestra.run.smithi204.stdout:Modify: 2024-04-24 16:06:57.777214323 +0000 2024-04-24T16:11:45.915 INFO:teuthology.orchestra.run.smithi204.stdout:Change: 2024-04-24 16:06:57.777214323 +0000 2024-04-24T16:11:45.915 INFO:teuthology.orchestra.run.smithi204.stdout: Birth: - 2024-04-24T16:11:45.916 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-04-24T16:11:45.969 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records in 2024-04-24T16:11:45.969 INFO:teuthology.orchestra.run.smithi204.stderr:1+0 records out 2024-04-24T16:11:45.969 INFO:teuthology.orchestra.run.smithi204.stderr:512 bytes copied, 0.000330921 s, 1.5 MB/s 2024-04-24T16:11:45.970 DEBUG:teuthology.orchestra.run.smithi204:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-04-24T16:11:46.020 DEBUG:teuthology.orchestra.run.smithi204:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-04-24T16:11:47.027 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: cluster 2024-04-24T16:11:45.322897+0000 mgr.smithi178.tjvcci (mgr.14197) 41 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:47.027 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: cluster 2024-04-24T16:11:45.322897+0000 mgr.smithi178.tjvcci (mgr.14197) 41 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:47.027 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: audit 2024-04-24T16:11:45.754855+0000 mon.smithi178 (mon.0) 306 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:47.027 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: audit 2024-04-24T16:11:45.754855+0000 mon.smithi178 (mon.0) 306 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:47.028 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: cephadm 2024-04-24T16:11:45.798846+0000 mgr.smithi178.tjvcci (mgr.14197) 42 : cephadm [INF] Reconfiguring mgr.smithi178.tjvcci (unknown last config time)... 2024-04-24T16:11:47.028 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: cephadm 2024-04-24T16:11:45.798846+0000 mgr.smithi178.tjvcci (mgr.14197) 42 : cephadm [INF] Reconfiguring mgr.smithi178.tjvcci (unknown last config time)... 2024-04-24T16:11:47.028 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: audit 2024-04-24T16:11:45.799589+0000 mon.smithi178 (mon.0) 307 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi178.tjvcci", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T16:11:47.028 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: audit 2024-04-24T16:11:45.799589+0000 mon.smithi178 (mon.0) 307 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi178.tjvcci", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T16:11:47.028 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: audit 2024-04-24T16:11:45.801227+0000 mon.smithi178 (mon.0) 308 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T16:11:47.028 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: audit 2024-04-24T16:11:45.801227+0000 mon.smithi178 (mon.0) 308 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T16:11:47.028 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: audit 2024-04-24T16:11:45.802381+0000 mon.smithi178 (mon.0) 309 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:47.028 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: audit 2024-04-24T16:11:45.802381+0000 mon.smithi178 (mon.0) 309 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:47.028 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: cephadm 2024-04-24T16:11:45.803922+0000 mgr.smithi178.tjvcci (mgr.14197) 43 : cephadm [INF] Reconfiguring daemon mgr.smithi178.tjvcci on smithi178 2024-04-24T16:11:47.028 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:46 smithi178 bash[18765]: cephadm 2024-04-24T16:11:45.803922+0000 mgr.smithi178.tjvcci (mgr.14197) 43 : cephadm [INF] Reconfiguring daemon mgr.smithi178.tjvcci on smithi178 2024-04-24T16:11:47.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: cluster 2024-04-24T16:11:45.322897+0000 mgr.smithi178.tjvcci (mgr.14197) 41 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:47.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: cluster 2024-04-24T16:11:45.322897+0000 mgr.smithi178.tjvcci (mgr.14197) 41 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:47.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: audit 2024-04-24T16:11:45.754855+0000 mon.smithi178 (mon.0) 306 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:47.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: audit 2024-04-24T16:11:45.754855+0000 mon.smithi178 (mon.0) 306 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:47.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: cephadm 2024-04-24T16:11:45.798846+0000 mgr.smithi178.tjvcci (mgr.14197) 42 : cephadm [INF] Reconfiguring mgr.smithi178.tjvcci (unknown last config time)... 2024-04-24T16:11:47.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: cephadm 2024-04-24T16:11:45.798846+0000 mgr.smithi178.tjvcci (mgr.14197) 42 : cephadm [INF] Reconfiguring mgr.smithi178.tjvcci (unknown last config time)... 2024-04-24T16:11:47.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: audit 2024-04-24T16:11:45.799589+0000 mon.smithi178 (mon.0) 307 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi178.tjvcci", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T16:11:47.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: audit 2024-04-24T16:11:45.799589+0000 mon.smithi178 (mon.0) 307 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi178.tjvcci", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T16:11:47.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: audit 2024-04-24T16:11:45.801227+0000 mon.smithi178 (mon.0) 308 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T16:11:47.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: audit 2024-04-24T16:11:45.801227+0000 mon.smithi178 (mon.0) 308 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T16:11:47.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: audit 2024-04-24T16:11:45.802381+0000 mon.smithi178 (mon.0) 309 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:47.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: audit 2024-04-24T16:11:45.802381+0000 mon.smithi178 (mon.0) 309 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:47.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: cephadm 2024-04-24T16:11:45.803922+0000 mgr.smithi178.tjvcci (mgr.14197) 43 : cephadm [INF] Reconfiguring daemon mgr.smithi178.tjvcci on smithi178 2024-04-24T16:11:47.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:46 smithi204 bash[20295]: cephadm 2024-04-24T16:11:45.803922+0000 mgr.smithi178.tjvcci (mgr.14197) 43 : cephadm [INF] Reconfiguring daemon mgr.smithi178.tjvcci on smithi178 2024-04-24T16:11:49.019 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:48 smithi178 bash[18765]: cluster 2024-04-24T16:11:47.323878+0000 mgr.smithi178.tjvcci (mgr.14197) 44 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:49.019 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:48 smithi178 bash[18765]: cluster 2024-04-24T16:11:47.323878+0000 mgr.smithi178.tjvcci (mgr.14197) 44 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:49.019 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:48 smithi178 bash[18765]: audit 2024-04-24T16:11:47.695234+0000 mon.smithi178 (mon.0) 310 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:49.019 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:48 smithi178 bash[18765]: audit 2024-04-24T16:11:47.695234+0000 mon.smithi178 (mon.0) 310 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:49.020 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:48 smithi178 bash[18765]: cephadm 2024-04-24T16:11:47.724111+0000 mgr.smithi178.tjvcci (mgr.14197) 45 : cephadm [INF] Reconfiguring ceph-exporter.smithi178 (monmap changed)... 2024-04-24T16:11:49.020 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:48 smithi178 bash[18765]: cephadm 2024-04-24T16:11:47.724111+0000 mgr.smithi178.tjvcci (mgr.14197) 45 : cephadm [INF] Reconfiguring ceph-exporter.smithi178 (monmap changed)... 2024-04-24T16:11:49.020 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:48 smithi178 bash[18765]: audit 2024-04-24T16:11:47.724842+0000 mon.smithi178 (mon.0) 311 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi178", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T16:11:49.020 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:48 smithi178 bash[18765]: audit 2024-04-24T16:11:47.724842+0000 mon.smithi178 (mon.0) 311 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi178", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T16:11:49.020 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:48 smithi178 bash[18765]: audit 2024-04-24T16:11:47.726921+0000 mon.smithi178 (mon.0) 312 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:49.020 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:48 smithi178 bash[18765]: audit 2024-04-24T16:11:47.726921+0000 mon.smithi178 (mon.0) 312 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:49.020 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:48 smithi178 bash[18765]: cephadm 2024-04-24T16:11:47.728788+0000 mgr.smithi178.tjvcci (mgr.14197) 46 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi178 on smithi178 2024-04-24T16:11:49.020 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:48 smithi178 bash[18765]: cephadm 2024-04-24T16:11:47.728788+0000 mgr.smithi178.tjvcci (mgr.14197) 46 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi178 on smithi178 2024-04-24T16:11:49.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:48 smithi204 bash[20295]: cluster 2024-04-24T16:11:47.323878+0000 mgr.smithi178.tjvcci (mgr.14197) 44 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:49.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:48 smithi204 bash[20295]: cluster 2024-04-24T16:11:47.323878+0000 mgr.smithi178.tjvcci (mgr.14197) 44 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:49.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:48 smithi204 bash[20295]: audit 2024-04-24T16:11:47.695234+0000 mon.smithi178 (mon.0) 310 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:49.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:48 smithi204 bash[20295]: audit 2024-04-24T16:11:47.695234+0000 mon.smithi178 (mon.0) 310 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:49.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:48 smithi204 bash[20295]: cephadm 2024-04-24T16:11:47.724111+0000 mgr.smithi178.tjvcci (mgr.14197) 45 : cephadm [INF] Reconfiguring ceph-exporter.smithi178 (monmap changed)... 2024-04-24T16:11:49.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:48 smithi204 bash[20295]: cephadm 2024-04-24T16:11:47.724111+0000 mgr.smithi178.tjvcci (mgr.14197) 45 : cephadm [INF] Reconfiguring ceph-exporter.smithi178 (monmap changed)... 2024-04-24T16:11:49.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:48 smithi204 bash[20295]: audit 2024-04-24T16:11:47.724842+0000 mon.smithi178 (mon.0) 311 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi178", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T16:11:49.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:48 smithi204 bash[20295]: audit 2024-04-24T16:11:47.724842+0000 mon.smithi178 (mon.0) 311 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi178", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T16:11:49.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:48 smithi204 bash[20295]: audit 2024-04-24T16:11:47.726921+0000 mon.smithi178 (mon.0) 312 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:49.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:48 smithi204 bash[20295]: audit 2024-04-24T16:11:47.726921+0000 mon.smithi178 (mon.0) 312 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:49.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:48 smithi204 bash[20295]: cephadm 2024-04-24T16:11:47.728788+0000 mgr.smithi178.tjvcci (mgr.14197) 46 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi178 on smithi178 2024-04-24T16:11:49.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:48 smithi204 bash[20295]: cephadm 2024-04-24T16:11:47.728788+0000 mgr.smithi178.tjvcci (mgr.14197) 46 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi178 on smithi178 2024-04-24T16:11:50.793 INFO:teuthology.orchestra.run.smithi204.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi204/config 2024-04-24T16:11:50.959 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:50 smithi178 bash[18765]: cluster 2024-04-24T16:11:49.324840+0000 mgr.smithi178.tjvcci (mgr.14197) 47 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:50.959 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:50 smithi178 bash[18765]: cluster 2024-04-24T16:11:49.324840+0000 mgr.smithi178.tjvcci (mgr.14197) 47 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:50.959 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:50 smithi178 bash[18765]: audit 2024-04-24T16:11:49.677016+0000 mon.smithi178 (mon.0) 313 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:50.959 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:50 smithi178 bash[18765]: audit 2024-04-24T16:11:49.677016+0000 mon.smithi178 (mon.0) 313 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:50.959 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:50 smithi178 bash[18765]: cephadm 2024-04-24T16:11:49.697675+0000 mgr.smithi178.tjvcci (mgr.14197) 48 : cephadm [INF] Reconfiguring crash.smithi178 (monmap changed)... 2024-04-24T16:11:50.959 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:50 smithi178 bash[18765]: cephadm 2024-04-24T16:11:49.697675+0000 mgr.smithi178.tjvcci (mgr.14197) 48 : cephadm [INF] Reconfiguring crash.smithi178 (monmap changed)... 2024-04-24T16:11:50.959 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:50 smithi178 bash[18765]: audit 2024-04-24T16:11:49.698909+0000 mon.smithi178 (mon.0) 314 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi178", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T16:11:50.959 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:50 smithi178 bash[18765]: audit 2024-04-24T16:11:49.698909+0000 mon.smithi178 (mon.0) 314 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi178", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T16:11:50.959 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:50 smithi178 bash[18765]: audit 2024-04-24T16:11:49.700620+0000 mon.smithi178 (mon.0) 315 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:50.959 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:50 smithi178 bash[18765]: audit 2024-04-24T16:11:49.700620+0000 mon.smithi178 (mon.0) 315 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:50.960 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:50 smithi178 bash[18765]: cephadm 2024-04-24T16:11:49.702377+0000 mgr.smithi178.tjvcci (mgr.14197) 49 : cephadm [INF] Reconfiguring daemon crash.smithi178 on smithi178 2024-04-24T16:11:50.960 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:50 smithi178 bash[18765]: cephadm 2024-04-24T16:11:49.702377+0000 mgr.smithi178.tjvcci (mgr.14197) 49 : cephadm [INF] Reconfiguring daemon crash.smithi178 on smithi178 2024-04-24T16:11:51.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:50 smithi204 bash[20295]: cluster 2024-04-24T16:11:49.324840+0000 mgr.smithi178.tjvcci (mgr.14197) 47 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:51.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:50 smithi204 bash[20295]: cluster 2024-04-24T16:11:49.324840+0000 mgr.smithi178.tjvcci (mgr.14197) 47 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:51.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:50 smithi204 bash[20295]: audit 2024-04-24T16:11:49.677016+0000 mon.smithi178 (mon.0) 313 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:51.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:50 smithi204 bash[20295]: audit 2024-04-24T16:11:49.677016+0000 mon.smithi178 (mon.0) 313 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:51.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:50 smithi204 bash[20295]: cephadm 2024-04-24T16:11:49.697675+0000 mgr.smithi178.tjvcci (mgr.14197) 48 : cephadm [INF] Reconfiguring crash.smithi178 (monmap changed)... 2024-04-24T16:11:51.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:50 smithi204 bash[20295]: cephadm 2024-04-24T16:11:49.697675+0000 mgr.smithi178.tjvcci (mgr.14197) 48 : cephadm [INF] Reconfiguring crash.smithi178 (monmap changed)... 2024-04-24T16:11:51.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:50 smithi204 bash[20295]: audit 2024-04-24T16:11:49.698909+0000 mon.smithi178 (mon.0) 314 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi178", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T16:11:51.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:50 smithi204 bash[20295]: audit 2024-04-24T16:11:49.698909+0000 mon.smithi178 (mon.0) 314 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi178", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T16:11:51.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:50 smithi204 bash[20295]: audit 2024-04-24T16:11:49.700620+0000 mon.smithi178 (mon.0) 315 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:51.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:50 smithi204 bash[20295]: audit 2024-04-24T16:11:49.700620+0000 mon.smithi178 (mon.0) 315 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:11:51.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:50 smithi204 bash[20295]: cephadm 2024-04-24T16:11:49.702377+0000 mgr.smithi178.tjvcci (mgr.14197) 49 : cephadm [INF] Reconfiguring daemon crash.smithi178 on smithi178 2024-04-24T16:11:51.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:50 smithi204 bash[20295]: cephadm 2024-04-24T16:11:49.702377+0000 mgr.smithi178.tjvcci (mgr.14197) 49 : cephadm [INF] Reconfiguring daemon crash.smithi178 on smithi178 2024-04-24T16:11:52.068 INFO:teuthology.orchestra.run.smithi204.stdout:Scheduled osd.all-available-devices update... 2024-04-24T16:11:52.654 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-04-24T16:11:52.654 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:11:52.877 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:52 smithi178 bash[18765]: cluster 2024-04-24T16:11:51.325797+0000 mgr.smithi178.tjvcci (mgr.14197) 50 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:52.877 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:52 smithi178 bash[18765]: cluster 2024-04-24T16:11:51.325797+0000 mgr.smithi178.tjvcci (mgr.14197) 50 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:52.877 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:52 smithi178 bash[18765]: audit 2024-04-24T16:11:51.627664+0000 mon.smithi178 (mon.0) 316 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:52.877 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:52 smithi178 bash[18765]: audit 2024-04-24T16:11:51.627664+0000 mon.smithi178 (mon.0) 316 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:52.877 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:52 smithi178 bash[18765]: cephadm 2024-04-24T16:11:51.672498+0000 mgr.smithi178.tjvcci (mgr.14197) 51 : cephadm [INF] Reconfiguring alertmanager.smithi178 (dependencies changed)... 2024-04-24T16:11:52.877 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:52 smithi178 bash[18765]: cephadm 2024-04-24T16:11:51.672498+0000 mgr.smithi178.tjvcci (mgr.14197) 51 : cephadm [INF] Reconfiguring alertmanager.smithi178 (dependencies changed)... 2024-04-24T16:11:52.878 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:52 smithi178 bash[18765]: cephadm 2024-04-24T16:11:51.708303+0000 mgr.smithi178.tjvcci (mgr.14197) 52 : cephadm [INF] Reconfiguring daemon alertmanager.smithi178 on smithi178 2024-04-24T16:11:52.878 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:52 smithi178 bash[18765]: cephadm 2024-04-24T16:11:51.708303+0000 mgr.smithi178.tjvcci (mgr.14197) 52 : cephadm [INF] Reconfiguring daemon alertmanager.smithi178 on smithi178 2024-04-24T16:11:52.878 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:52 smithi178 bash[18765]: audit 2024-04-24T16:11:52.069869+0000 mon.smithi178 (mon.0) 317 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:52.878 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:52 smithi178 bash[18765]: audit 2024-04-24T16:11:52.069869+0000 mon.smithi178 (mon.0) 317 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:52.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:52 smithi204 bash[20295]: cluster 2024-04-24T16:11:51.325797+0000 mgr.smithi178.tjvcci (mgr.14197) 50 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:52.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:52 smithi204 bash[20295]: cluster 2024-04-24T16:11:51.325797+0000 mgr.smithi178.tjvcci (mgr.14197) 50 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:52.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:52 smithi204 bash[20295]: audit 2024-04-24T16:11:51.627664+0000 mon.smithi178 (mon.0) 316 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:52.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:52 smithi204 bash[20295]: audit 2024-04-24T16:11:51.627664+0000 mon.smithi178 (mon.0) 316 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:52.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:52 smithi204 bash[20295]: cephadm 2024-04-24T16:11:51.672498+0000 mgr.smithi178.tjvcci (mgr.14197) 51 : cephadm [INF] Reconfiguring alertmanager.smithi178 (dependencies changed)... 2024-04-24T16:11:52.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:52 smithi204 bash[20295]: cephadm 2024-04-24T16:11:51.672498+0000 mgr.smithi178.tjvcci (mgr.14197) 51 : cephadm [INF] Reconfiguring alertmanager.smithi178 (dependencies changed)... 2024-04-24T16:11:52.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:52 smithi204 bash[20295]: cephadm 2024-04-24T16:11:51.708303+0000 mgr.smithi178.tjvcci (mgr.14197) 52 : cephadm [INF] Reconfiguring daemon alertmanager.smithi178 on smithi178 2024-04-24T16:11:52.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:52 smithi204 bash[20295]: cephadm 2024-04-24T16:11:51.708303+0000 mgr.smithi178.tjvcci (mgr.14197) 52 : cephadm [INF] Reconfiguring daemon alertmanager.smithi178 on smithi178 2024-04-24T16:11:52.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:52 smithi204 bash[20295]: audit 2024-04-24T16:11:52.069869+0000 mon.smithi178 (mon.0) 317 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:52.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:52 smithi204 bash[20295]: audit 2024-04-24T16:11:52.069869+0000 mon.smithi178 (mon.0) 317 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:54.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:53 smithi178 bash[18765]: audit 2024-04-24T16:11:52.057641+0000 mgr.smithi178.tjvcci (mgr.14197) 53 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:11:54.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:53 smithi178 bash[18765]: audit 2024-04-24T16:11:52.057641+0000 mgr.smithi178.tjvcci (mgr.14197) 53 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:11:54.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:53 smithi178 bash[18765]: cephadm 2024-04-24T16:11:52.061979+0000 mgr.smithi178.tjvcci (mgr.14197) 54 : cephadm [INF] Marking host: smithi178 for OSDSpec preview refresh. 2024-04-24T16:11:54.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:53 smithi178 bash[18765]: cephadm 2024-04-24T16:11:52.061979+0000 mgr.smithi178.tjvcci (mgr.14197) 54 : cephadm [INF] Marking host: smithi178 for OSDSpec preview refresh. 2024-04-24T16:11:54.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:53 smithi178 bash[18765]: cephadm 2024-04-24T16:11:52.062125+0000 mgr.smithi178.tjvcci (mgr.14197) 55 : cephadm [INF] Marking host: smithi204 for OSDSpec preview refresh. 2024-04-24T16:11:54.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:53 smithi178 bash[18765]: cephadm 2024-04-24T16:11:52.062125+0000 mgr.smithi178.tjvcci (mgr.14197) 55 : cephadm [INF] Marking host: smithi204 for OSDSpec preview refresh. 2024-04-24T16:11:54.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:53 smithi178 bash[18765]: cephadm 2024-04-24T16:11:52.062882+0000 mgr.smithi178.tjvcci (mgr.14197) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-04-24T16:11:54.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:53 smithi178 bash[18765]: cephadm 2024-04-24T16:11:52.062882+0000 mgr.smithi178.tjvcci (mgr.14197) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-04-24T16:11:54.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:53 smithi204 bash[20295]: audit 2024-04-24T16:11:52.057641+0000 mgr.smithi178.tjvcci (mgr.14197) 53 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:11:54.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:53 smithi204 bash[20295]: audit 2024-04-24T16:11:52.057641+0000 mgr.smithi178.tjvcci (mgr.14197) 53 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T16:11:54.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:53 smithi204 bash[20295]: cephadm 2024-04-24T16:11:52.061979+0000 mgr.smithi178.tjvcci (mgr.14197) 54 : cephadm [INF] Marking host: smithi178 for OSDSpec preview refresh. 2024-04-24T16:11:54.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:53 smithi204 bash[20295]: cephadm 2024-04-24T16:11:52.061979+0000 mgr.smithi178.tjvcci (mgr.14197) 54 : cephadm [INF] Marking host: smithi178 for OSDSpec preview refresh. 2024-04-24T16:11:54.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:53 smithi204 bash[20295]: cephadm 2024-04-24T16:11:52.062125+0000 mgr.smithi178.tjvcci (mgr.14197) 55 : cephadm [INF] Marking host: smithi204 for OSDSpec preview refresh. 2024-04-24T16:11:54.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:53 smithi204 bash[20295]: cephadm 2024-04-24T16:11:52.062125+0000 mgr.smithi178.tjvcci (mgr.14197) 55 : cephadm [INF] Marking host: smithi204 for OSDSpec preview refresh. 2024-04-24T16:11:54.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:53 smithi204 bash[20295]: cephadm 2024-04-24T16:11:52.062882+0000 mgr.smithi178.tjvcci (mgr.14197) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-04-24T16:11:54.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:53 smithi204 bash[20295]: cephadm 2024-04-24T16:11:52.062882+0000 mgr.smithi178.tjvcci (mgr.14197) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-04-24T16:11:54.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:54 smithi178 bash[18765]: cluster 2024-04-24T16:11:53.326767+0000 mgr.smithi178.tjvcci (mgr.14197) 57 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:54.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:54 smithi178 bash[18765]: cluster 2024-04-24T16:11:53.326767+0000 mgr.smithi178.tjvcci (mgr.14197) 57 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:55.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:54 smithi204 bash[20295]: cluster 2024-04-24T16:11:53.326767+0000 mgr.smithi178.tjvcci (mgr.14197) 57 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:55.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:54 smithi204 bash[20295]: cluster 2024-04-24T16:11:53.326767+0000 mgr.smithi178.tjvcci (mgr.14197) 57 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:56.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:56 smithi178 bash[18765]: cluster 2024-04-24T16:11:55.327469+0000 mgr.smithi178.tjvcci (mgr.14197) 58 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:56.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:56 smithi178 bash[18765]: cluster 2024-04-24T16:11:55.327469+0000 mgr.smithi178.tjvcci (mgr.14197) 58 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:56.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:56 smithi178 bash[18765]: audit 2024-04-24T16:11:56.126784+0000 mon.smithi178 (mon.0) 318 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:56.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:56 smithi178 bash[18765]: audit 2024-04-24T16:11:56.126784+0000 mon.smithi178 (mon.0) 318 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:57.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:56 smithi204 bash[20295]: cluster 2024-04-24T16:11:55.327469+0000 mgr.smithi178.tjvcci (mgr.14197) 58 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:57.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:56 smithi204 bash[20295]: cluster 2024-04-24T16:11:55.327469+0000 mgr.smithi178.tjvcci (mgr.14197) 58 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:57.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:56 smithi204 bash[20295]: audit 2024-04-24T16:11:56.126784+0000 mon.smithi178 (mon.0) 318 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:57.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:56 smithi204 bash[20295]: audit 2024-04-24T16:11:56.126784+0000 mon.smithi178 (mon.0) 318 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:11:57.407 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:11:57.912 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:57 smithi204 bash[20295]: cephadm 2024-04-24T16:11:56.132990+0000 mgr.smithi178.tjvcci (mgr.14197) 59 : cephadm [INF] Reconfiguring grafana.smithi178 (dependencies changed)... 2024-04-24T16:11:57.912 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:57 smithi204 bash[20295]: cephadm 2024-04-24T16:11:56.132990+0000 mgr.smithi178.tjvcci (mgr.14197) 59 : cephadm [INF] Reconfiguring grafana.smithi178 (dependencies changed)... 2024-04-24T16:11:57.912 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:57 smithi204 bash[20295]: cephadm 2024-04-24T16:11:56.150007+0000 mgr.smithi178.tjvcci (mgr.14197) 60 : cephadm [INF] Reconfiguring daemon grafana.smithi178 on smithi178 2024-04-24T16:11:57.912 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:57 smithi204 bash[20295]: cephadm 2024-04-24T16:11:56.150007+0000 mgr.smithi178.tjvcci (mgr.14197) 60 : cephadm [INF] Reconfiguring daemon grafana.smithi178 on smithi178 2024-04-24T16:11:57.912 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:57 smithi204 bash[20295]: audit 2024-04-24T16:11:57.377843+0000 mon.smithi178 (mon.0) 319 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:57.912 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:57 smithi204 bash[20295]: audit 2024-04-24T16:11:57.377843+0000 mon.smithi178 (mon.0) 319 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:58.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:57 smithi178 bash[18765]: cephadm 2024-04-24T16:11:56.132990+0000 mgr.smithi178.tjvcci (mgr.14197) 59 : cephadm [INF] Reconfiguring grafana.smithi178 (dependencies changed)... 2024-04-24T16:11:58.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:57 smithi178 bash[18765]: cephadm 2024-04-24T16:11:56.132990+0000 mgr.smithi178.tjvcci (mgr.14197) 59 : cephadm [INF] Reconfiguring grafana.smithi178 (dependencies changed)... 2024-04-24T16:11:58.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:57 smithi178 bash[18765]: cephadm 2024-04-24T16:11:56.150007+0000 mgr.smithi178.tjvcci (mgr.14197) 60 : cephadm [INF] Reconfiguring daemon grafana.smithi178 on smithi178 2024-04-24T16:11:58.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:57 smithi178 bash[18765]: cephadm 2024-04-24T16:11:56.150007+0000 mgr.smithi178.tjvcci (mgr.14197) 60 : cephadm [INF] Reconfiguring daemon grafana.smithi178 on smithi178 2024-04-24T16:11:58.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:57 smithi178 bash[18765]: audit 2024-04-24T16:11:57.377843+0000 mon.smithi178 (mon.0) 319 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:58.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:57 smithi178 bash[18765]: audit 2024-04-24T16:11:57.377843+0000 mon.smithi178 (mon.0) 319 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:11:58.885 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:11:58.899 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:58 smithi178 bash[18765]: cluster 2024-04-24T16:11:57.328409+0000 mgr.smithi178.tjvcci (mgr.14197) 61 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:58.899 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:58 smithi178 bash[18765]: cluster 2024-04-24T16:11:57.328409+0000 mgr.smithi178.tjvcci (mgr.14197) 61 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:59.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:58 smithi204 bash[20295]: cluster 2024-04-24T16:11:57.328409+0000 mgr.smithi178.tjvcci (mgr.14197) 61 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:59.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:58 smithi204 bash[20295]: cluster 2024-04-24T16:11:57.328409+0000 mgr.smithi178.tjvcci (mgr.14197) 61 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:11:59.964 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:59 smithi178 bash[18765]: audit 2024-04-24T16:11:58.887489+0000 mon.smithi178 (mon.0) 320 : audit [DBG] from='client.? 172.21.15.178:0/2342801008' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:11:59.964 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:11:59 smithi178 bash[18765]: audit 2024-04-24T16:11:58.887489+0000 mon.smithi178 (mon.0) 320 : audit [DBG] from='client.? 172.21.15.178:0/2342801008' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:11:59.965 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:12:00.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:59 smithi204 bash[20295]: audit 2024-04-24T16:11:58.887489+0000 mon.smithi178 (mon.0) 320 : audit [DBG] from='client.? 172.21.15.178:0/2342801008' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:00.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:11:59 smithi204 bash[20295]: audit 2024-04-24T16:11:58.887489+0000 mon.smithi178 (mon.0) 320 : audit [DBG] from='client.? 172.21.15.178:0/2342801008' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:00.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:00 smithi178 bash[18765]: cluster 2024-04-24T16:11:59.329267+0000 mgr.smithi178.tjvcci (mgr.14197) 62 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:00.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:00 smithi178 bash[18765]: cluster 2024-04-24T16:11:59.329267+0000 mgr.smithi178.tjvcci (mgr.14197) 62 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:00.966 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:12:01.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:00 smithi204 bash[20295]: cluster 2024-04-24T16:11:59.329267+0000 mgr.smithi178.tjvcci (mgr.14197) 62 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:01.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:00 smithi204 bash[20295]: cluster 2024-04-24T16:11:59.329267+0000 mgr.smithi178.tjvcci (mgr.14197) 62 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:03.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:02 smithi178 bash[18765]: cluster 2024-04-24T16:12:01.329845+0000 mgr.smithi178.tjvcci (mgr.14197) 63 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:03.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:02 smithi178 bash[18765]: cluster 2024-04-24T16:12:01.329845+0000 mgr.smithi178.tjvcci (mgr.14197) 63 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:03.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:02 smithi178 bash[18765]: audit 2024-04-24T16:12:01.948553+0000 mon.smithi178 (mon.0) 321 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:03.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:02 smithi178 bash[18765]: audit 2024-04-24T16:12:01.948553+0000 mon.smithi178 (mon.0) 321 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:03.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:02 smithi204 bash[20295]: cluster 2024-04-24T16:12:01.329845+0000 mgr.smithi178.tjvcci (mgr.14197) 63 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:03.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:02 smithi204 bash[20295]: cluster 2024-04-24T16:12:01.329845+0000 mgr.smithi178.tjvcci (mgr.14197) 63 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:03.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:02 smithi204 bash[20295]: audit 2024-04-24T16:12:01.948553+0000 mon.smithi178 (mon.0) 321 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:03.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:02 smithi204 bash[20295]: audit 2024-04-24T16:12:01.948553+0000 mon.smithi178 (mon.0) 321 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:04.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:03 smithi178 bash[18765]: cephadm 2024-04-24T16:12:01.998364+0000 mgr.smithi178.tjvcci (mgr.14197) 64 : cephadm [INF] Reconfiguring prometheus.smithi178 (dependencies changed)... 2024-04-24T16:12:04.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:03 smithi178 bash[18765]: cephadm 2024-04-24T16:12:01.998364+0000 mgr.smithi178.tjvcci (mgr.14197) 64 : cephadm [INF] Reconfiguring prometheus.smithi178 (dependencies changed)... 2024-04-24T16:12:04.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:03 smithi178 bash[18765]: cephadm 2024-04-24T16:12:02.237415+0000 mgr.smithi178.tjvcci (mgr.14197) 65 : cephadm [INF] Reconfiguring daemon prometheus.smithi178 on smithi178 2024-04-24T16:12:04.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:03 smithi178 bash[18765]: cephadm 2024-04-24T16:12:02.237415+0000 mgr.smithi178.tjvcci (mgr.14197) 65 : cephadm [INF] Reconfiguring daemon prometheus.smithi178 on smithi178 2024-04-24T16:12:04.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:03 smithi204 bash[20295]: cephadm 2024-04-24T16:12:01.998364+0000 mgr.smithi178.tjvcci (mgr.14197) 64 : cephadm [INF] Reconfiguring prometheus.smithi178 (dependencies changed)... 2024-04-24T16:12:04.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:03 smithi204 bash[20295]: cephadm 2024-04-24T16:12:01.998364+0000 mgr.smithi178.tjvcci (mgr.14197) 64 : cephadm [INF] Reconfiguring prometheus.smithi178 (dependencies changed)... 2024-04-24T16:12:04.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:03 smithi204 bash[20295]: cephadm 2024-04-24T16:12:02.237415+0000 mgr.smithi178.tjvcci (mgr.14197) 65 : cephadm [INF] Reconfiguring daemon prometheus.smithi178 on smithi178 2024-04-24T16:12:04.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:03 smithi204 bash[20295]: cephadm 2024-04-24T16:12:02.237415+0000 mgr.smithi178.tjvcci (mgr.14197) 65 : cephadm [INF] Reconfiguring daemon prometheus.smithi178 on smithi178 2024-04-24T16:12:05.057 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:04 smithi178 bash[18765]: cluster 2024-04-24T16:12:03.330815+0000 mgr.smithi178.tjvcci (mgr.14197) 66 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:05.058 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:04 smithi178 bash[18765]: cluster 2024-04-24T16:12:03.330815+0000 mgr.smithi178.tjvcci (mgr.14197) 66 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:05.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:04 smithi204 bash[20295]: cluster 2024-04-24T16:12:03.330815+0000 mgr.smithi178.tjvcci (mgr.14197) 66 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:05.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:04 smithi204 bash[20295]: cluster 2024-04-24T16:12:03.330815+0000 mgr.smithi178.tjvcci (mgr.14197) 66 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:07.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:06 smithi178 bash[18765]: cluster 2024-04-24T16:12:05.331831+0000 mgr.smithi178.tjvcci (mgr.14197) 67 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:07.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:06 smithi178 bash[18765]: cluster 2024-04-24T16:12:05.331831+0000 mgr.smithi178.tjvcci (mgr.14197) 67 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:07.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:06 smithi204 bash[20295]: cluster 2024-04-24T16:12:05.331831+0000 mgr.smithi178.tjvcci (mgr.14197) 67 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:07.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:06 smithi204 bash[20295]: cluster 2024-04-24T16:12:05.331831+0000 mgr.smithi178.tjvcci (mgr.14197) 67 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:07.755 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:12:08.194 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:08 smithi204 bash[20295]: audit 2024-04-24T16:12:07.057730+0000 mon.smithi178 (mon.0) 322 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:08.194 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:08 smithi204 bash[20295]: audit 2024-04-24T16:12:07.057730+0000 mon.smithi178 (mon.0) 322 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:08.195 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:08 smithi204 bash[20295]: cephadm 2024-04-24T16:12:07.065059+0000 mgr.smithi178.tjvcci (mgr.14197) 68 : cephadm [INF] Reconfiguring ceph-exporter.smithi204 (monmap changed)... 2024-04-24T16:12:08.195 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:08 smithi204 bash[20295]: cephadm 2024-04-24T16:12:07.065059+0000 mgr.smithi178.tjvcci (mgr.14197) 68 : cephadm [INF] Reconfiguring ceph-exporter.smithi204 (monmap changed)... 2024-04-24T16:12:08.195 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:08 smithi204 bash[20295]: audit 2024-04-24T16:12:07.065477+0000 mon.smithi178 (mon.0) 323 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi204", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T16:12:08.195 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:08 smithi204 bash[20295]: audit 2024-04-24T16:12:07.065477+0000 mon.smithi178 (mon.0) 323 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi204", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T16:12:08.195 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:08 smithi204 bash[20295]: audit 2024-04-24T16:12:07.066398+0000 mon.smithi178 (mon.0) 324 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:08.195 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:08 smithi204 bash[20295]: audit 2024-04-24T16:12:07.066398+0000 mon.smithi178 (mon.0) 324 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:08.195 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:08 smithi204 bash[20295]: cephadm 2024-04-24T16:12:07.067350+0000 mgr.smithi178.tjvcci (mgr.14197) 69 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi204 on smithi204 2024-04-24T16:12:08.195 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:08 smithi204 bash[20295]: cephadm 2024-04-24T16:12:07.067350+0000 mgr.smithi178.tjvcci (mgr.14197) 69 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi204 on smithi204 2024-04-24T16:12:08.195 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:08 smithi204 bash[20295]: cluster 2024-04-24T16:12:07.332772+0000 mgr.smithi178.tjvcci (mgr.14197) 70 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:08.195 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:08 smithi204 bash[20295]: cluster 2024-04-24T16:12:07.332772+0000 mgr.smithi178.tjvcci (mgr.14197) 70 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:08.323 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:08 smithi178 bash[18765]: audit 2024-04-24T16:12:07.057730+0000 mon.smithi178 (mon.0) 322 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:08.324 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:08 smithi178 bash[18765]: audit 2024-04-24T16:12:07.057730+0000 mon.smithi178 (mon.0) 322 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:08.324 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:08 smithi178 bash[18765]: cephadm 2024-04-24T16:12:07.065059+0000 mgr.smithi178.tjvcci (mgr.14197) 68 : cephadm [INF] Reconfiguring ceph-exporter.smithi204 (monmap changed)... 2024-04-24T16:12:08.324 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:08 smithi178 bash[18765]: cephadm 2024-04-24T16:12:07.065059+0000 mgr.smithi178.tjvcci (mgr.14197) 68 : cephadm [INF] Reconfiguring ceph-exporter.smithi204 (monmap changed)... 2024-04-24T16:12:08.324 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:08 smithi178 bash[18765]: audit 2024-04-24T16:12:07.065477+0000 mon.smithi178 (mon.0) 323 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi204", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T16:12:08.324 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:08 smithi178 bash[18765]: audit 2024-04-24T16:12:07.065477+0000 mon.smithi178 (mon.0) 323 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi204", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T16:12:08.324 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:08 smithi178 bash[18765]: audit 2024-04-24T16:12:07.066398+0000 mon.smithi178 (mon.0) 324 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:08.324 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:08 smithi178 bash[18765]: audit 2024-04-24T16:12:07.066398+0000 mon.smithi178 (mon.0) 324 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:08.324 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:08 smithi178 bash[18765]: cephadm 2024-04-24T16:12:07.067350+0000 mgr.smithi178.tjvcci (mgr.14197) 69 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi204 on smithi204 2024-04-24T16:12:08.324 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:08 smithi178 bash[18765]: cephadm 2024-04-24T16:12:07.067350+0000 mgr.smithi178.tjvcci (mgr.14197) 69 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi204 on smithi204 2024-04-24T16:12:08.324 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:08 smithi178 bash[18765]: cluster 2024-04-24T16:12:07.332772+0000 mgr.smithi178.tjvcci (mgr.14197) 70 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:08.324 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:08 smithi178 bash[18765]: cluster 2024-04-24T16:12:07.332772+0000 mgr.smithi178.tjvcci (mgr.14197) 70 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:09.003 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:12:09.657 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:12:10.307 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:09 smithi204 bash[20295]: audit 2024-04-24T16:12:08.921486+0000 mon.smithi178 (mon.0) 325 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:10.307 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:09 smithi204 bash[20295]: audit 2024-04-24T16:12:08.921486+0000 mon.smithi178 (mon.0) 325 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:10.307 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:09 smithi204 bash[20295]: cephadm 2024-04-24T16:12:08.934864+0000 mgr.smithi178.tjvcci (mgr.14197) 71 : cephadm [INF] Reconfiguring crash.smithi204 (monmap changed)... 2024-04-24T16:12:10.307 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:09 smithi204 bash[20295]: cephadm 2024-04-24T16:12:08.934864+0000 mgr.smithi178.tjvcci (mgr.14197) 71 : cephadm [INF] Reconfiguring crash.smithi204 (monmap changed)... 2024-04-24T16:12:10.308 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:09 smithi204 bash[20295]: audit 2024-04-24T16:12:08.935524+0000 mon.smithi178 (mon.0) 326 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi204", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T16:12:10.308 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:09 smithi204 bash[20295]: audit 2024-04-24T16:12:08.935524+0000 mon.smithi178 (mon.0) 326 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi204", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T16:12:10.308 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:09 smithi204 bash[20295]: audit 2024-04-24T16:12:08.937279+0000 mon.smithi178 (mon.0) 327 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:10.308 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:09 smithi204 bash[20295]: audit 2024-04-24T16:12:08.937279+0000 mon.smithi178 (mon.0) 327 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:10.308 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:09 smithi204 bash[20295]: cephadm 2024-04-24T16:12:08.938720+0000 mgr.smithi178.tjvcci (mgr.14197) 72 : cephadm [INF] Reconfiguring daemon crash.smithi204 on smithi204 2024-04-24T16:12:10.308 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:09 smithi204 bash[20295]: cephadm 2024-04-24T16:12:08.938720+0000 mgr.smithi178.tjvcci (mgr.14197) 72 : cephadm [INF] Reconfiguring daemon crash.smithi204 on smithi204 2024-04-24T16:12:10.309 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:09 smithi204 bash[20295]: audit 2024-04-24T16:12:09.005924+0000 mon.smithi178 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.178:0/2581701070' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:10.309 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:09 smithi204 bash[20295]: audit 2024-04-24T16:12:09.005924+0000 mon.smithi178 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.178:0/2581701070' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:10.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:09 smithi178 bash[18765]: audit 2024-04-24T16:12:08.921486+0000 mon.smithi178 (mon.0) 325 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:10.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:09 smithi178 bash[18765]: audit 2024-04-24T16:12:08.921486+0000 mon.smithi178 (mon.0) 325 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:10.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:09 smithi178 bash[18765]: cephadm 2024-04-24T16:12:08.934864+0000 mgr.smithi178.tjvcci (mgr.14197) 71 : cephadm [INF] Reconfiguring crash.smithi204 (monmap changed)... 2024-04-24T16:12:10.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:09 smithi178 bash[18765]: cephadm 2024-04-24T16:12:08.934864+0000 mgr.smithi178.tjvcci (mgr.14197) 71 : cephadm [INF] Reconfiguring crash.smithi204 (monmap changed)... 2024-04-24T16:12:10.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:09 smithi178 bash[18765]: audit 2024-04-24T16:12:08.935524+0000 mon.smithi178 (mon.0) 326 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi204", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T16:12:10.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:09 smithi178 bash[18765]: audit 2024-04-24T16:12:08.935524+0000 mon.smithi178 (mon.0) 326 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi204", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T16:12:10.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:09 smithi178 bash[18765]: audit 2024-04-24T16:12:08.937279+0000 mon.smithi178 (mon.0) 327 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:10.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:09 smithi178 bash[18765]: audit 2024-04-24T16:12:08.937279+0000 mon.smithi178 (mon.0) 327 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:10.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:09 smithi178 bash[18765]: cephadm 2024-04-24T16:12:08.938720+0000 mgr.smithi178.tjvcci (mgr.14197) 72 : cephadm [INF] Reconfiguring daemon crash.smithi204 on smithi204 2024-04-24T16:12:10.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:09 smithi178 bash[18765]: cephadm 2024-04-24T16:12:08.938720+0000 mgr.smithi178.tjvcci (mgr.14197) 72 : cephadm [INF] Reconfiguring daemon crash.smithi204 on smithi204 2024-04-24T16:12:10.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:09 smithi178 bash[18765]: audit 2024-04-24T16:12:09.005924+0000 mon.smithi178 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.178:0/2581701070' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:10.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:09 smithi178 bash[18765]: audit 2024-04-24T16:12:09.005924+0000 mon.smithi178 (mon.0) 328 : audit [DBG] from='client.? 172.21.15.178:0/2581701070' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:10.658 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:12:11.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:10 smithi178 bash[18765]: cluster 2024-04-24T16:12:09.333751+0000 mgr.smithi178.tjvcci (mgr.14197) 73 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:11.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:10 smithi178 bash[18765]: cluster 2024-04-24T16:12:09.333751+0000 mgr.smithi178.tjvcci (mgr.14197) 73 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:11.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:10 smithi178 bash[18765]: audit 2024-04-24T16:12:10.687088+0000 mon.smithi178 (mon.0) 329 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:11.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:10 smithi178 bash[18765]: audit 2024-04-24T16:12:10.687088+0000 mon.smithi178 (mon.0) 329 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:11.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:10 smithi178 bash[18765]: audit 2024-04-24T16:12:10.707226+0000 mon.smithi178 (mon.0) 330 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi204.olwubu", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T16:12:11.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:10 smithi178 bash[18765]: audit 2024-04-24T16:12:10.707226+0000 mon.smithi178 (mon.0) 330 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi204.olwubu", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T16:12:11.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:10 smithi178 bash[18765]: audit 2024-04-24T16:12:10.708919+0000 mon.smithi178 (mon.0) 331 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T16:12:11.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:10 smithi178 bash[18765]: audit 2024-04-24T16:12:10.708919+0000 mon.smithi178 (mon.0) 331 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T16:12:11.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:10 smithi178 bash[18765]: audit 2024-04-24T16:12:10.710200+0000 mon.smithi178 (mon.0) 332 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:11.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:10 smithi178 bash[18765]: audit 2024-04-24T16:12:10.710200+0000 mon.smithi178 (mon.0) 332 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:11.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:10 smithi204 bash[20295]: cluster 2024-04-24T16:12:09.333751+0000 mgr.smithi178.tjvcci (mgr.14197) 73 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:11.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:10 smithi204 bash[20295]: cluster 2024-04-24T16:12:09.333751+0000 mgr.smithi178.tjvcci (mgr.14197) 73 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:11.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:10 smithi204 bash[20295]: audit 2024-04-24T16:12:10.687088+0000 mon.smithi178 (mon.0) 329 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:11.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:10 smithi204 bash[20295]: audit 2024-04-24T16:12:10.687088+0000 mon.smithi178 (mon.0) 329 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:11.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:10 smithi204 bash[20295]: audit 2024-04-24T16:12:10.707226+0000 mon.smithi178 (mon.0) 330 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi204.olwubu", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T16:12:11.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:10 smithi204 bash[20295]: audit 2024-04-24T16:12:10.707226+0000 mon.smithi178 (mon.0) 330 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi204.olwubu", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T16:12:11.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:10 smithi204 bash[20295]: audit 2024-04-24T16:12:10.708919+0000 mon.smithi178 (mon.0) 331 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T16:12:11.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:10 smithi204 bash[20295]: audit 2024-04-24T16:12:10.708919+0000 mon.smithi178 (mon.0) 331 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T16:12:11.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:10 smithi204 bash[20295]: audit 2024-04-24T16:12:10.710200+0000 mon.smithi178 (mon.0) 332 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:11.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:10 smithi204 bash[20295]: audit 2024-04-24T16:12:10.710200+0000 mon.smithi178 (mon.0) 332 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:12.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:11 smithi204 bash[20295]: cephadm 2024-04-24T16:12:10.706682+0000 mgr.smithi178.tjvcci (mgr.14197) 74 : cephadm [INF] Reconfiguring mgr.smithi204.olwubu (monmap changed)... 2024-04-24T16:12:12.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:11 smithi204 bash[20295]: cephadm 2024-04-24T16:12:10.706682+0000 mgr.smithi178.tjvcci (mgr.14197) 74 : cephadm [INF] Reconfiguring mgr.smithi204.olwubu (monmap changed)... 2024-04-24T16:12:12.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:11 smithi204 bash[20295]: cephadm 2024-04-24T16:12:10.711814+0000 mgr.smithi178.tjvcci (mgr.14197) 75 : cephadm [INF] Reconfiguring daemon mgr.smithi204.olwubu on smithi204 2024-04-24T16:12:12.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:11 smithi204 bash[20295]: cephadm 2024-04-24T16:12:10.711814+0000 mgr.smithi178.tjvcci (mgr.14197) 75 : cephadm [INF] Reconfiguring daemon mgr.smithi204.olwubu on smithi204 2024-04-24T16:12:12.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:11 smithi178 bash[18765]: cephadm 2024-04-24T16:12:10.706682+0000 mgr.smithi178.tjvcci (mgr.14197) 74 : cephadm [INF] Reconfiguring mgr.smithi204.olwubu (monmap changed)... 2024-04-24T16:12:12.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:11 smithi178 bash[18765]: cephadm 2024-04-24T16:12:10.706682+0000 mgr.smithi178.tjvcci (mgr.14197) 74 : cephadm [INF] Reconfiguring mgr.smithi204.olwubu (monmap changed)... 2024-04-24T16:12:12.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:11 smithi178 bash[18765]: cephadm 2024-04-24T16:12:10.711814+0000 mgr.smithi178.tjvcci (mgr.14197) 75 : cephadm [INF] Reconfiguring daemon mgr.smithi204.olwubu on smithi204 2024-04-24T16:12:12.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:11 smithi178 bash[18765]: cephadm 2024-04-24T16:12:10.711814+0000 mgr.smithi178.tjvcci (mgr.14197) 75 : cephadm [INF] Reconfiguring daemon mgr.smithi204.olwubu on smithi204 2024-04-24T16:12:13.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:12 smithi178 bash[18765]: cluster 2024-04-24T16:12:11.334715+0000 mgr.smithi178.tjvcci (mgr.14197) 76 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:13.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:12 smithi178 bash[18765]: cluster 2024-04-24T16:12:11.334715+0000 mgr.smithi178.tjvcci (mgr.14197) 76 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:13.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:12 smithi178 bash[18765]: audit 2024-04-24T16:12:12.378292+0000 mon.smithi178 (mon.0) 333 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:12 smithi178 bash[18765]: audit 2024-04-24T16:12:12.378292+0000 mon.smithi178 (mon.0) 333 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:12 smithi178 bash[18765]: audit 2024-04-24T16:12:12.509681+0000 mon.smithi178 (mon.0) 334 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:12 smithi178 bash[18765]: audit 2024-04-24T16:12:12.509681+0000 mon.smithi178 (mon.0) 334 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:12 smithi178 bash[18765]: audit 2024-04-24T16:12:12.532545+0000 mon.smithi178 (mon.0) 335 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T16:12:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:12 smithi178 bash[18765]: audit 2024-04-24T16:12:12.532545+0000 mon.smithi178 (mon.0) 335 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T16:12:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:12 smithi178 bash[18765]: audit 2024-04-24T16:12:12.534422+0000 mon.smithi178 (mon.0) 336 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T16:12:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:12 smithi178 bash[18765]: audit 2024-04-24T16:12:12.534422+0000 mon.smithi178 (mon.0) 336 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T16:12:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:12 smithi178 bash[18765]: audit 2024-04-24T16:12:12.536177+0000 mon.smithi178 (mon.0) 337 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:13.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:12 smithi178 bash[18765]: audit 2024-04-24T16:12:12.536177+0000 mon.smithi178 (mon.0) 337 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:13.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:12 smithi204 bash[20295]: cluster 2024-04-24T16:12:11.334715+0000 mgr.smithi178.tjvcci (mgr.14197) 76 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:13.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:12 smithi204 bash[20295]: cluster 2024-04-24T16:12:11.334715+0000 mgr.smithi178.tjvcci (mgr.14197) 76 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:13.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:12 smithi204 bash[20295]: audit 2024-04-24T16:12:12.378292+0000 mon.smithi178 (mon.0) 333 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:13.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:12 smithi204 bash[20295]: audit 2024-04-24T16:12:12.378292+0000 mon.smithi178 (mon.0) 333 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:13.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:12 smithi204 bash[20295]: audit 2024-04-24T16:12:12.509681+0000 mon.smithi178 (mon.0) 334 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:13.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:12 smithi204 bash[20295]: audit 2024-04-24T16:12:12.509681+0000 mon.smithi178 (mon.0) 334 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:13.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:12 smithi204 bash[20295]: audit 2024-04-24T16:12:12.532545+0000 mon.smithi178 (mon.0) 335 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T16:12:13.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:12 smithi204 bash[20295]: audit 2024-04-24T16:12:12.532545+0000 mon.smithi178 (mon.0) 335 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T16:12:13.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:12 smithi204 bash[20295]: audit 2024-04-24T16:12:12.534422+0000 mon.smithi178 (mon.0) 336 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T16:12:13.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:12 smithi204 bash[20295]: audit 2024-04-24T16:12:12.534422+0000 mon.smithi178 (mon.0) 336 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T16:12:13.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:12 smithi204 bash[20295]: audit 2024-04-24T16:12:12.536177+0000 mon.smithi178 (mon.0) 337 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:13.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:12 smithi204 bash[20295]: audit 2024-04-24T16:12:12.536177+0000 mon.smithi178 (mon.0) 337 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:14.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:13 smithi178 bash[18765]: cephadm 2024-04-24T16:12:12.531912+0000 mgr.smithi178.tjvcci (mgr.14197) 77 : cephadm [INF] Reconfiguring mon.smithi204 (monmap changed)... 2024-04-24T16:12:14.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:13 smithi178 bash[18765]: cephadm 2024-04-24T16:12:12.531912+0000 mgr.smithi178.tjvcci (mgr.14197) 77 : cephadm [INF] Reconfiguring mon.smithi204 (monmap changed)... 2024-04-24T16:12:14.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:13 smithi178 bash[18765]: cephadm 2024-04-24T16:12:12.538258+0000 mgr.smithi178.tjvcci (mgr.14197) 78 : cephadm [INF] Reconfiguring daemon mon.smithi204 on smithi204 2024-04-24T16:12:14.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:13 smithi178 bash[18765]: cephadm 2024-04-24T16:12:12.538258+0000 mgr.smithi178.tjvcci (mgr.14197) 78 : cephadm [INF] Reconfiguring daemon mon.smithi204 on smithi204 2024-04-24T16:12:14.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:13 smithi204 bash[20295]: cephadm 2024-04-24T16:12:12.531912+0000 mgr.smithi178.tjvcci (mgr.14197) 77 : cephadm [INF] Reconfiguring mon.smithi204 (monmap changed)... 2024-04-24T16:12:14.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:13 smithi204 bash[20295]: cephadm 2024-04-24T16:12:12.531912+0000 mgr.smithi178.tjvcci (mgr.14197) 77 : cephadm [INF] Reconfiguring mon.smithi204 (monmap changed)... 2024-04-24T16:12:14.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:13 smithi204 bash[20295]: cephadm 2024-04-24T16:12:12.538258+0000 mgr.smithi178.tjvcci (mgr.14197) 78 : cephadm [INF] Reconfiguring daemon mon.smithi204 on smithi204 2024-04-24T16:12:14.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:13 smithi204 bash[20295]: cephadm 2024-04-24T16:12:12.538258+0000 mgr.smithi178.tjvcci (mgr.14197) 78 : cephadm [INF] Reconfiguring daemon mon.smithi204 on smithi204 2024-04-24T16:12:15.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: cluster 2024-04-24T16:12:13.335669+0000 mgr.smithi178.tjvcci (mgr.14197) 79 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:15.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: cluster 2024-04-24T16:12:13.335669+0000 mgr.smithi178.tjvcci (mgr.14197) 79 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:15.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.405828+0000 mon.smithi178 (mon.0) 338 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.405828+0000 mon.smithi178 (mon.0) 338 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.415777+0000 mon.smithi178 (mon.0) 339 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T16:12:15.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.415777+0000 mon.smithi178 (mon.0) 339 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T16:12:15.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.418954+0000 mon.smithi178 (mon.0) 340 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi178.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T16:12:15.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.418954+0000 mon.smithi178 (mon.0) 340 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi178.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T16:12:15.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.426494+0000 mon.smithi178 (mon.0) 341 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.426494+0000 mon.smithi178 (mon.0) 341 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.450856+0000 mon.smithi178 (mon.0) 342 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T16:12:15.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.450856+0000 mon.smithi178 (mon.0) 342 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T16:12:15.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.465244+0000 mon.smithi178 (mon.0) 343 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi178.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T16:12:15.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.465244+0000 mon.smithi178 (mon.0) 343 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi178.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T16:12:15.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.471518+0000 mon.smithi178 (mon.0) 344 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.471518+0000 mon.smithi178 (mon.0) 344 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.482901+0000 mon.smithi178 (mon.0) 345 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T16:12:15.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.482901+0000 mon.smithi178 (mon.0) 345 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T16:12:15.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.486271+0000 mon.smithi178 (mon.0) 346 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi178.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T16:12:15.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.486271+0000 mon.smithi178 (mon.0) 346 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi178.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T16:12:15.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.491710+0000 mon.smithi178 (mon.0) 347 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.491710+0000 mon.smithi178 (mon.0) 347 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.509937+0000 mon.smithi178 (mon.0) 348 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:12:15.339 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:14 smithi178 bash[18765]: audit 2024-04-24T16:12:14.509937+0000 mon.smithi178 (mon.0) 348 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:12:15.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: cluster 2024-04-24T16:12:13.335669+0000 mgr.smithi178.tjvcci (mgr.14197) 79 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:15.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: cluster 2024-04-24T16:12:13.335669+0000 mgr.smithi178.tjvcci (mgr.14197) 79 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:15.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.405828+0000 mon.smithi178 (mon.0) 338 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.405828+0000 mon.smithi178 (mon.0) 338 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.415777+0000 mon.smithi178 (mon.0) 339 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T16:12:15.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.415777+0000 mon.smithi178 (mon.0) 339 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T16:12:15.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.418954+0000 mon.smithi178 (mon.0) 340 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi178.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T16:12:15.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.418954+0000 mon.smithi178 (mon.0) 340 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi178.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T16:12:15.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.426494+0000 mon.smithi178 (mon.0) 341 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.426494+0000 mon.smithi178 (mon.0) 341 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.450856+0000 mon.smithi178 (mon.0) 342 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.450856+0000 mon.smithi178 (mon.0) 342 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.465244+0000 mon.smithi178 (mon.0) 343 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi178.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.465244+0000 mon.smithi178 (mon.0) 343 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi178.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.471518+0000 mon.smithi178 (mon.0) 344 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.471518+0000 mon.smithi178 (mon.0) 344 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.482901+0000 mon.smithi178 (mon.0) 345 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.482901+0000 mon.smithi178 (mon.0) 345 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.486271+0000 mon.smithi178 (mon.0) 346 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi178.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.486271+0000 mon.smithi178 (mon.0) 346 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi178.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.491710+0000 mon.smithi178 (mon.0) 347 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.491710+0000 mon.smithi178 (mon.0) 347 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.509937+0000 mon.smithi178 (mon.0) 348 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:12:15.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:14 smithi204 bash[20295]: audit 2024-04-24T16:12:14.509937+0000 mon.smithi178 (mon.0) 348 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:12:15.420 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:12:16.278 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:15 smithi178 bash[18765]: audit 2024-04-24T16:12:14.416709+0000 mgr.smithi178.tjvcci (mgr.14197) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T16:12:16.278 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:15 smithi178 bash[18765]: audit 2024-04-24T16:12:14.416709+0000 mgr.smithi178.tjvcci (mgr.14197) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T16:12:16.279 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:15 smithi178 bash[18765]: audit 2024-04-24T16:12:14.419764+0000 mgr.smithi178.tjvcci (mgr.14197) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi178.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T16:12:16.279 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:15 smithi178 bash[18765]: audit 2024-04-24T16:12:14.419764+0000 mgr.smithi178.tjvcci (mgr.14197) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi178.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T16:12:16.279 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:15 smithi178 bash[18765]: audit 2024-04-24T16:12:14.451900+0000 mgr.smithi178.tjvcci (mgr.14197) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T16:12:16.279 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:15 smithi178 bash[18765]: audit 2024-04-24T16:12:14.451900+0000 mgr.smithi178.tjvcci (mgr.14197) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T16:12:16.279 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:15 smithi178 bash[18765]: audit 2024-04-24T16:12:14.466058+0000 mgr.smithi178.tjvcci (mgr.14197) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi178.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T16:12:16.279 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:15 smithi178 bash[18765]: audit 2024-04-24T16:12:14.466058+0000 mgr.smithi178.tjvcci (mgr.14197) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi178.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T16:12:16.279 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:15 smithi178 bash[18765]: audit 2024-04-24T16:12:14.483466+0000 mgr.smithi178.tjvcci (mgr.14197) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T16:12:16.279 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:15 smithi178 bash[18765]: audit 2024-04-24T16:12:14.483466+0000 mgr.smithi178.tjvcci (mgr.14197) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T16:12:16.279 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:15 smithi178 bash[18765]: audit 2024-04-24T16:12:14.486708+0000 mgr.smithi178.tjvcci (mgr.14197) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi178.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T16:12:16.279 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:15 smithi178 bash[18765]: audit 2024-04-24T16:12:14.486708+0000 mgr.smithi178.tjvcci (mgr.14197) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi178.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T16:12:16.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:15 smithi204 bash[20295]: audit 2024-04-24T16:12:14.416709+0000 mgr.smithi178.tjvcci (mgr.14197) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T16:12:16.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:15 smithi204 bash[20295]: audit 2024-04-24T16:12:14.416709+0000 mgr.smithi178.tjvcci (mgr.14197) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T16:12:16.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:15 smithi204 bash[20295]: audit 2024-04-24T16:12:14.419764+0000 mgr.smithi178.tjvcci (mgr.14197) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi178.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T16:12:16.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:15 smithi204 bash[20295]: audit 2024-04-24T16:12:14.419764+0000 mgr.smithi178.tjvcci (mgr.14197) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi178.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T16:12:16.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:15 smithi204 bash[20295]: audit 2024-04-24T16:12:14.451900+0000 mgr.smithi178.tjvcci (mgr.14197) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T16:12:16.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:15 smithi204 bash[20295]: audit 2024-04-24T16:12:14.451900+0000 mgr.smithi178.tjvcci (mgr.14197) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T16:12:16.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:15 smithi204 bash[20295]: audit 2024-04-24T16:12:14.466058+0000 mgr.smithi178.tjvcci (mgr.14197) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi178.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T16:12:16.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:15 smithi204 bash[20295]: audit 2024-04-24T16:12:14.466058+0000 mgr.smithi178.tjvcci (mgr.14197) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi178.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T16:12:16.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:15 smithi204 bash[20295]: audit 2024-04-24T16:12:14.483466+0000 mgr.smithi178.tjvcci (mgr.14197) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T16:12:16.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:15 smithi204 bash[20295]: audit 2024-04-24T16:12:14.483466+0000 mgr.smithi178.tjvcci (mgr.14197) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T16:12:16.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:15 smithi204 bash[20295]: audit 2024-04-24T16:12:14.486708+0000 mgr.smithi178.tjvcci (mgr.14197) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi178.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T16:12:16.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:15 smithi204 bash[20295]: audit 2024-04-24T16:12:14.486708+0000 mgr.smithi178.tjvcci (mgr.14197) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi178.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T16:12:16.683 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:12:17.293 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:16 smithi178 bash[18765]: cluster 2024-04-24T16:12:15.336644+0000 mgr.smithi178.tjvcci (mgr.14197) 86 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:17.293 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:16 smithi178 bash[18765]: cluster 2024-04-24T16:12:15.336644+0000 mgr.smithi178.tjvcci (mgr.14197) 86 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:17.293 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:16 smithi178 bash[18765]: audit 2024-04-24T16:12:16.685997+0000 mon.smithi178 (mon.0) 349 : audit [DBG] from='client.? 172.21.15.178:0/2317705758' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:17.294 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:16 smithi178 bash[18765]: audit 2024-04-24T16:12:16.685997+0000 mon.smithi178 (mon.0) 349 : audit [DBG] from='client.? 172.21.15.178:0/2317705758' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:17.295 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:12:17.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:16 smithi204 bash[20295]: cluster 2024-04-24T16:12:15.336644+0000 mgr.smithi178.tjvcci (mgr.14197) 86 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:17.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:16 smithi204 bash[20295]: cluster 2024-04-24T16:12:15.336644+0000 mgr.smithi178.tjvcci (mgr.14197) 86 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:17.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:16 smithi204 bash[20295]: audit 2024-04-24T16:12:16.685997+0000 mon.smithi178 (mon.0) 349 : audit [DBG] from='client.? 172.21.15.178:0/2317705758' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:17.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:16 smithi204 bash[20295]: audit 2024-04-24T16:12:16.685997+0000 mon.smithi178 (mon.0) 349 : audit [DBG] from='client.? 172.21.15.178:0/2317705758' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:18.296 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:12:19.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:18 smithi178 bash[18765]: cluster 2024-04-24T16:12:17.337651+0000 mgr.smithi178.tjvcci (mgr.14197) 87 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:19.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:18 smithi178 bash[18765]: cluster 2024-04-24T16:12:17.337651+0000 mgr.smithi178.tjvcci (mgr.14197) 87 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:19.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:18 smithi204 bash[20295]: cluster 2024-04-24T16:12:17.337651+0000 mgr.smithi178.tjvcci (mgr.14197) 87 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:19.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:18 smithi204 bash[20295]: cluster 2024-04-24T16:12:17.337651+0000 mgr.smithi178.tjvcci (mgr.14197) 87 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:21.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:20 smithi178 bash[18765]: cluster 2024-04-24T16:12:19.338404+0000 mgr.smithi178.tjvcci (mgr.14197) 88 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:21.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:20 smithi178 bash[18765]: cluster 2024-04-24T16:12:19.338404+0000 mgr.smithi178.tjvcci (mgr.14197) 88 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:21.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:20 smithi178 bash[18765]: audit 2024-04-24T16:12:19.943503+0000 mon.smithi178 (mon.0) 350 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:21.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:20 smithi178 bash[18765]: audit 2024-04-24T16:12:19.943503+0000 mon.smithi178 (mon.0) 350 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:21.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:20 smithi178 bash[18765]: audit 2024-04-24T16:12:20.611459+0000 mon.smithi178 (mon.0) 351 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:21.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:20 smithi178 bash[18765]: audit 2024-04-24T16:12:20.611459+0000 mon.smithi178 (mon.0) 351 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:21.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:20 smithi204 bash[20295]: cluster 2024-04-24T16:12:19.338404+0000 mgr.smithi178.tjvcci (mgr.14197) 88 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:21.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:20 smithi204 bash[20295]: cluster 2024-04-24T16:12:19.338404+0000 mgr.smithi178.tjvcci (mgr.14197) 88 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:21.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:20 smithi204 bash[20295]: audit 2024-04-24T16:12:19.943503+0000 mon.smithi178 (mon.0) 350 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:21.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:20 smithi204 bash[20295]: audit 2024-04-24T16:12:19.943503+0000 mon.smithi178 (mon.0) 350 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:21.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:20 smithi204 bash[20295]: audit 2024-04-24T16:12:20.611459+0000 mon.smithi178 (mon.0) 351 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:21.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:20 smithi204 bash[20295]: audit 2024-04-24T16:12:20.611459+0000 mon.smithi178 (mon.0) 351 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:22.849 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:12:23.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:22 smithi178 bash[18765]: cluster 2024-04-24T16:12:21.339287+0000 mgr.smithi178.tjvcci (mgr.14197) 89 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:23.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:22 smithi178 bash[18765]: cluster 2024-04-24T16:12:21.339287+0000 mgr.smithi178.tjvcci (mgr.14197) 89 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:23.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:22 smithi204 bash[20295]: cluster 2024-04-24T16:12:21.339287+0000 mgr.smithi178.tjvcci (mgr.14197) 89 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:23.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:22 smithi204 bash[20295]: cluster 2024-04-24T16:12:21.339287+0000 mgr.smithi178.tjvcci (mgr.14197) 89 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:24.220 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:12:24.778 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:12:25.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:24 smithi178 bash[18765]: cluster 2024-04-24T16:12:23.340433+0000 mgr.smithi178.tjvcci (mgr.14197) 90 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:25.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:24 smithi178 bash[18765]: cluster 2024-04-24T16:12:23.340433+0000 mgr.smithi178.tjvcci (mgr.14197) 90 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:25.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:24 smithi178 bash[18765]: audit 2024-04-24T16:12:24.222246+0000 mon.smithi178 (mon.0) 352 : audit [DBG] from='client.? 172.21.15.178:0/2796034247' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:25.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:24 smithi178 bash[18765]: audit 2024-04-24T16:12:24.222246+0000 mon.smithi178 (mon.0) 352 : audit [DBG] from='client.? 172.21.15.178:0/2796034247' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:25.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:24 smithi204 bash[20295]: cluster 2024-04-24T16:12:23.340433+0000 mgr.smithi178.tjvcci (mgr.14197) 90 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:25.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:24 smithi204 bash[20295]: cluster 2024-04-24T16:12:23.340433+0000 mgr.smithi178.tjvcci (mgr.14197) 90 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:25.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:24 smithi204 bash[20295]: audit 2024-04-24T16:12:24.222246+0000 mon.smithi178 (mon.0) 352 : audit [DBG] from='client.? 172.21.15.178:0/2796034247' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:25.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:24 smithi204 bash[20295]: audit 2024-04-24T16:12:24.222246+0000 mon.smithi178 (mon.0) 352 : audit [DBG] from='client.? 172.21.15.178:0/2796034247' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:25.780 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:12:27.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:26 smithi178 bash[18765]: cluster 2024-04-24T16:12:25.341508+0000 mgr.smithi178.tjvcci (mgr.14197) 91 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:27.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:26 smithi178 bash[18765]: cluster 2024-04-24T16:12:25.341508+0000 mgr.smithi178.tjvcci (mgr.14197) 91 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:27.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:26 smithi204 bash[20295]: cluster 2024-04-24T16:12:25.341508+0000 mgr.smithi178.tjvcci (mgr.14197) 91 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:27.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:26 smithi204 bash[20295]: cluster 2024-04-24T16:12:25.341508+0000 mgr.smithi178.tjvcci (mgr.14197) 91 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:28.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:27.265579+0000 mon.smithi178 (mon.0) 353 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:28.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:27.265579+0000 mon.smithi178 (mon.0) 353 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:28.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: cluster 2024-04-24T16:12:27.342504+0000 mgr.smithi178.tjvcci (mgr.14197) 92 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: cluster 2024-04-24T16:12:27.342504+0000 mgr.smithi178.tjvcci (mgr.14197) 92 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:27.379382+0000 mon.smithi178 (mon.0) 354 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:27.379382+0000 mon.smithi178 (mon.0) 354 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:28.173740+0000 mon.smithi178 (mon.0) 355 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:28.173740+0000 mon.smithi178 (mon.0) 355 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:28.175972+0000 mon.smithi178 (mon.0) 356 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:28.175972+0000 mon.smithi178 (mon.0) 356 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:28.177572+0000 mon.smithi178 (mon.0) 357 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:28.177572+0000 mon.smithi178 (mon.0) 357 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:28.187980+0000 mon.smithi178 (mon.0) 358 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:28.187980+0000 mon.smithi178 (mon.0) 358 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:28.196455+0000 mon.smithi178 (mon.0) 359 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:12:28.588 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:28 smithi178 bash[18765]: audit 2024-04-24T16:12:28.196455+0000 mon.smithi178 (mon.0) 359 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:12:28.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:27.265579+0000 mon.smithi178 (mon.0) 353 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:27.265579+0000 mon.smithi178 (mon.0) 353 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: cluster 2024-04-24T16:12:27.342504+0000 mgr.smithi178.tjvcci (mgr.14197) 92 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: cluster 2024-04-24T16:12:27.342504+0000 mgr.smithi178.tjvcci (mgr.14197) 92 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:27.379382+0000 mon.smithi178 (mon.0) 354 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:27.379382+0000 mon.smithi178 (mon.0) 354 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:28.173740+0000 mon.smithi178 (mon.0) 355 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:28.173740+0000 mon.smithi178 (mon.0) 355 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:28.175972+0000 mon.smithi178 (mon.0) 356 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:28.175972+0000 mon.smithi178 (mon.0) 356 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:28.177572+0000 mon.smithi178 (mon.0) 357 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:28.177572+0000 mon.smithi178 (mon.0) 357 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:28.187980+0000 mon.smithi178 (mon.0) 358 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:28.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:28.187980+0000 mon.smithi178 (mon.0) 358 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:12:28.632 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:28.196455+0000 mon.smithi178 (mon.0) 359 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:12:28.632 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:28 smithi204 bash[20295]: audit 2024-04-24T16:12:28.196455+0000 mon.smithi178 (mon.0) 359 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:12:29.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:29 smithi178 bash[18765]: cluster 2024-04-24T16:12:28.180490+0000 mgr.smithi178.tjvcci (mgr.14197) 93 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:29.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:29 smithi178 bash[18765]: cluster 2024-04-24T16:12:28.180490+0000 mgr.smithi178.tjvcci (mgr.14197) 93 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:29.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:29 smithi178 bash[18765]: cluster 2024-04-24T16:12:28.181566+0000 mgr.smithi178.tjvcci (mgr.14197) 94 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:29.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:29 smithi178 bash[18765]: cluster 2024-04-24T16:12:28.181566+0000 mgr.smithi178.tjvcci (mgr.14197) 94 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:29.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:29 smithi204 bash[20295]: cluster 2024-04-24T16:12:28.180490+0000 mgr.smithi178.tjvcci (mgr.14197) 93 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:29.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:29 smithi204 bash[20295]: cluster 2024-04-24T16:12:28.180490+0000 mgr.smithi178.tjvcci (mgr.14197) 93 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:29.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:29 smithi204 bash[20295]: cluster 2024-04-24T16:12:28.181566+0000 mgr.smithi178.tjvcci (mgr.14197) 94 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:29.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:29 smithi204 bash[20295]: cluster 2024-04-24T16:12:28.181566+0000 mgr.smithi178.tjvcci (mgr.14197) 94 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:30.322 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:12:31.519 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:12:31.533 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:31 smithi178 bash[18765]: cluster 2024-04-24T16:12:30.182508+0000 mgr.smithi178.tjvcci (mgr.14197) 95 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:31.533 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:31 smithi178 bash[18765]: cluster 2024-04-24T16:12:30.182508+0000 mgr.smithi178.tjvcci (mgr.14197) 95 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:31.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:31 smithi204 bash[20295]: cluster 2024-04-24T16:12:30.182508+0000 mgr.smithi178.tjvcci (mgr.14197) 95 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:31.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:31 smithi204 bash[20295]: cluster 2024-04-24T16:12:30.182508+0000 mgr.smithi178.tjvcci (mgr.14197) 95 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:32.107 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:12:32.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:32 smithi178 bash[18765]: audit 2024-04-24T16:12:31.521552+0000 mon.smithi178 (mon.0) 360 : audit [DBG] from='client.? 172.21.15.178:0/577694213' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:32.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:32 smithi178 bash[18765]: audit 2024-04-24T16:12:31.521552+0000 mon.smithi178 (mon.0) 360 : audit [DBG] from='client.? 172.21.15.178:0/577694213' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:32.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:32 smithi204 bash[20295]: audit 2024-04-24T16:12:31.521552+0000 mon.smithi178 (mon.0) 360 : audit [DBG] from='client.? 172.21.15.178:0/577694213' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:32.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:32 smithi204 bash[20295]: audit 2024-04-24T16:12:31.521552+0000 mon.smithi178 (mon.0) 360 : audit [DBG] from='client.? 172.21.15.178:0/577694213' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:33.108 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:12:33.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:33 smithi178 bash[18765]: cluster 2024-04-24T16:12:32.183447+0000 mgr.smithi178.tjvcci (mgr.14197) 96 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:33.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:33 smithi178 bash[18765]: cluster 2024-04-24T16:12:32.183447+0000 mgr.smithi178.tjvcci (mgr.14197) 96 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:33.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:33 smithi204 bash[20295]: cluster 2024-04-24T16:12:32.183447+0000 mgr.smithi178.tjvcci (mgr.14197) 96 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:33.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:33 smithi204 bash[20295]: cluster 2024-04-24T16:12:32.183447+0000 mgr.smithi178.tjvcci (mgr.14197) 96 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:35.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:35 smithi178 bash[18765]: cluster 2024-04-24T16:12:34.184420+0000 mgr.smithi178.tjvcci (mgr.14197) 97 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:35.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:35 smithi178 bash[18765]: cluster 2024-04-24T16:12:34.184420+0000 mgr.smithi178.tjvcci (mgr.14197) 97 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:35.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:35 smithi204 bash[20295]: cluster 2024-04-24T16:12:34.184420+0000 mgr.smithi178.tjvcci (mgr.14197) 97 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:35.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:35 smithi204 bash[20295]: cluster 2024-04-24T16:12:34.184420+0000 mgr.smithi178.tjvcci (mgr.14197) 97 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:37.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:37 smithi178 bash[18765]: cluster 2024-04-24T16:12:36.185376+0000 mgr.smithi178.tjvcci (mgr.14197) 98 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:37.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:37 smithi178 bash[18765]: cluster 2024-04-24T16:12:36.185376+0000 mgr.smithi178.tjvcci (mgr.14197) 98 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:37.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:37 smithi204 bash[20295]: cluster 2024-04-24T16:12:36.185376+0000 mgr.smithi178.tjvcci (mgr.14197) 98 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:37.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:37 smithi204 bash[20295]: cluster 2024-04-24T16:12:36.185376+0000 mgr.smithi178.tjvcci (mgr.14197) 98 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:37.876 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:12:39.177 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:12:39.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:39 smithi178 bash[18765]: cluster 2024-04-24T16:12:38.186361+0000 mgr.smithi178.tjvcci (mgr.14197) 99 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:39.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:39 smithi178 bash[18765]: cluster 2024-04-24T16:12:38.186361+0000 mgr.smithi178.tjvcci (mgr.14197) 99 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:39.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:39 smithi178 bash[18765]: audit 2024-04-24T16:12:39.179586+0000 mon.smithi178 (mon.0) 361 : audit [DBG] from='client.? 172.21.15.178:0/3994612425' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:39.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:39 smithi178 bash[18765]: audit 2024-04-24T16:12:39.179586+0000 mon.smithi178 (mon.0) 361 : audit [DBG] from='client.? 172.21.15.178:0/3994612425' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:39.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:39 smithi204 bash[20295]: cluster 2024-04-24T16:12:38.186361+0000 mgr.smithi178.tjvcci (mgr.14197) 99 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:39.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:39 smithi204 bash[20295]: cluster 2024-04-24T16:12:38.186361+0000 mgr.smithi178.tjvcci (mgr.14197) 99 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:39.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:39 smithi204 bash[20295]: audit 2024-04-24T16:12:39.179586+0000 mon.smithi178 (mon.0) 361 : audit [DBG] from='client.? 172.21.15.178:0/3994612425' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:39.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:39 smithi204 bash[20295]: audit 2024-04-24T16:12:39.179586+0000 mon.smithi178 (mon.0) 361 : audit [DBG] from='client.? 172.21.15.178:0/3994612425' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:39.803 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:12:40.804 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:12:41.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:41 smithi178 bash[18765]: cluster 2024-04-24T16:12:40.187317+0000 mgr.smithi178.tjvcci (mgr.14197) 100 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:41.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:41 smithi178 bash[18765]: cluster 2024-04-24T16:12:40.187317+0000 mgr.smithi178.tjvcci (mgr.14197) 100 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:41.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:41 smithi204 bash[20295]: cluster 2024-04-24T16:12:40.187317+0000 mgr.smithi178.tjvcci (mgr.14197) 100 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:41.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:41 smithi204 bash[20295]: cluster 2024-04-24T16:12:40.187317+0000 mgr.smithi178.tjvcci (mgr.14197) 100 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:43.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:43 smithi178 bash[18765]: cluster 2024-04-24T16:12:42.188274+0000 mgr.smithi178.tjvcci (mgr.14197) 101 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:43.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:43 smithi178 bash[18765]: cluster 2024-04-24T16:12:42.188274+0000 mgr.smithi178.tjvcci (mgr.14197) 101 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:43.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:43 smithi178 bash[18765]: audit 2024-04-24T16:12:42.379203+0000 mon.smithi178 (mon.0) 362 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:43.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:43 smithi178 bash[18765]: audit 2024-04-24T16:12:42.379203+0000 mon.smithi178 (mon.0) 362 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:43.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:43 smithi204 bash[20295]: cluster 2024-04-24T16:12:42.188274+0000 mgr.smithi178.tjvcci (mgr.14197) 101 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:43.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:43 smithi204 bash[20295]: cluster 2024-04-24T16:12:42.188274+0000 mgr.smithi178.tjvcci (mgr.14197) 101 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:43.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:43 smithi204 bash[20295]: audit 2024-04-24T16:12:42.379203+0000 mon.smithi178 (mon.0) 362 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:43.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:43 smithi204 bash[20295]: audit 2024-04-24T16:12:42.379203+0000 mon.smithi178 (mon.0) 362 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:45.567 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:12:45.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:45 smithi178 bash[18765]: cluster 2024-04-24T16:12:44.189308+0000 mgr.smithi178.tjvcci (mgr.14197) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:45.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:45 smithi178 bash[18765]: cluster 2024-04-24T16:12:44.189308+0000 mgr.smithi178.tjvcci (mgr.14197) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:45.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:45 smithi204 bash[20295]: cluster 2024-04-24T16:12:44.189308+0000 mgr.smithi178.tjvcci (mgr.14197) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:45.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:45 smithi204 bash[20295]: cluster 2024-04-24T16:12:44.189308+0000 mgr.smithi178.tjvcci (mgr.14197) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:46.757 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:12:47.407 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:12:47.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:47 smithi178 bash[18765]: cluster 2024-04-24T16:12:46.190245+0000 mgr.smithi178.tjvcci (mgr.14197) 103 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:47.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:47 smithi178 bash[18765]: cluster 2024-04-24T16:12:46.190245+0000 mgr.smithi178.tjvcci (mgr.14197) 103 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:47.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:47 smithi178 bash[18765]: audit 2024-04-24T16:12:46.760017+0000 mon.smithi178 (mon.0) 363 : audit [DBG] from='client.? 172.21.15.178:0/2825584403' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:47.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:47 smithi178 bash[18765]: audit 2024-04-24T16:12:46.760017+0000 mon.smithi178 (mon.0) 363 : audit [DBG] from='client.? 172.21.15.178:0/2825584403' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:47.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:47 smithi204 bash[20295]: cluster 2024-04-24T16:12:46.190245+0000 mgr.smithi178.tjvcci (mgr.14197) 103 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:47.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:47 smithi204 bash[20295]: cluster 2024-04-24T16:12:46.190245+0000 mgr.smithi178.tjvcci (mgr.14197) 103 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:47.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:47 smithi204 bash[20295]: audit 2024-04-24T16:12:46.760017+0000 mon.smithi178 (mon.0) 363 : audit [DBG] from='client.? 172.21.15.178:0/2825584403' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:47.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:47 smithi204 bash[20295]: audit 2024-04-24T16:12:46.760017+0000 mon.smithi178 (mon.0) 363 : audit [DBG] from='client.? 172.21.15.178:0/2825584403' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:48.408 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:12:49.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:49 smithi178 bash[18765]: cluster 2024-04-24T16:12:48.191199+0000 mgr.smithi178.tjvcci (mgr.14197) 104 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:49.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:49 smithi178 bash[18765]: cluster 2024-04-24T16:12:48.191199+0000 mgr.smithi178.tjvcci (mgr.14197) 104 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:49.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:49 smithi204 bash[20295]: cluster 2024-04-24T16:12:48.191199+0000 mgr.smithi178.tjvcci (mgr.14197) 104 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:49.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:49 smithi204 bash[20295]: cluster 2024-04-24T16:12:48.191199+0000 mgr.smithi178.tjvcci (mgr.14197) 104 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:51.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:51 smithi178 bash[18765]: cluster 2024-04-24T16:12:50.192198+0000 mgr.smithi178.tjvcci (mgr.14197) 105 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:51.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:51 smithi178 bash[18765]: cluster 2024-04-24T16:12:50.192198+0000 mgr.smithi178.tjvcci (mgr.14197) 105 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:51.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:51 smithi204 bash[20295]: cluster 2024-04-24T16:12:50.192198+0000 mgr.smithi178.tjvcci (mgr.14197) 105 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:51.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:51 smithi204 bash[20295]: cluster 2024-04-24T16:12:50.192198+0000 mgr.smithi178.tjvcci (mgr.14197) 105 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:53.169 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:12:53.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:53 smithi178 bash[18765]: cluster 2024-04-24T16:12:52.193187+0000 mgr.smithi178.tjvcci (mgr.14197) 106 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:53.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:53 smithi178 bash[18765]: cluster 2024-04-24T16:12:52.193187+0000 mgr.smithi178.tjvcci (mgr.14197) 106 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:53.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:53 smithi204 bash[20295]: cluster 2024-04-24T16:12:52.193187+0000 mgr.smithi178.tjvcci (mgr.14197) 106 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:53.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:53 smithi204 bash[20295]: cluster 2024-04-24T16:12:52.193187+0000 mgr.smithi178.tjvcci (mgr.14197) 106 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:54.513 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:12:55.054 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:12:55.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:55 smithi178 bash[18765]: cluster 2024-04-24T16:12:54.193743+0000 mgr.smithi178.tjvcci (mgr.14197) 107 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:55.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:55 smithi178 bash[18765]: cluster 2024-04-24T16:12:54.193743+0000 mgr.smithi178.tjvcci (mgr.14197) 107 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:55.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:55 smithi178 bash[18765]: audit 2024-04-24T16:12:54.515460+0000 mon.smithi178 (mon.0) 364 : audit [DBG] from='client.? 172.21.15.178:0/3984246690' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:55.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:55 smithi178 bash[18765]: audit 2024-04-24T16:12:54.515460+0000 mon.smithi178 (mon.0) 364 : audit [DBG] from='client.? 172.21.15.178:0/3984246690' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:55.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:55 smithi204 bash[20295]: cluster 2024-04-24T16:12:54.193743+0000 mgr.smithi178.tjvcci (mgr.14197) 107 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:55.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:55 smithi204 bash[20295]: cluster 2024-04-24T16:12:54.193743+0000 mgr.smithi178.tjvcci (mgr.14197) 107 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:55.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:55 smithi204 bash[20295]: audit 2024-04-24T16:12:54.515460+0000 mon.smithi178 (mon.0) 364 : audit [DBG] from='client.? 172.21.15.178:0/3984246690' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:55.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:55 smithi204 bash[20295]: audit 2024-04-24T16:12:54.515460+0000 mon.smithi178 (mon.0) 364 : audit [DBG] from='client.? 172.21.15.178:0/3984246690' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:12:56.055 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:12:57.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:57 smithi204 bash[20295]: cluster 2024-04-24T16:12:56.194734+0000 mgr.smithi178.tjvcci (mgr.14197) 108 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:57.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:57 smithi204 bash[20295]: cluster 2024-04-24T16:12:56.194734+0000 mgr.smithi178.tjvcci (mgr.14197) 108 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:57.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:57 smithi178 bash[18765]: cluster 2024-04-24T16:12:56.194734+0000 mgr.smithi178.tjvcci (mgr.14197) 108 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:57.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:57 smithi178 bash[18765]: cluster 2024-04-24T16:12:56.194734+0000 mgr.smithi178.tjvcci (mgr.14197) 108 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:58.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:58 smithi204 bash[20295]: audit 2024-04-24T16:12:57.379584+0000 mon.smithi178 (mon.0) 365 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:58.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:58 smithi204 bash[20295]: audit 2024-04-24T16:12:57.379584+0000 mon.smithi178 (mon.0) 365 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:58.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:58 smithi178 bash[18765]: audit 2024-04-24T16:12:57.379584+0000 mon.smithi178 (mon.0) 365 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:58.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:58 smithi178 bash[18765]: audit 2024-04-24T16:12:57.379584+0000 mon.smithi178 (mon.0) 365 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:12:59.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:59 smithi204 bash[20295]: cluster 2024-04-24T16:12:58.195857+0000 mgr.smithi178.tjvcci (mgr.14197) 109 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:59.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:12:59 smithi204 bash[20295]: cluster 2024-04-24T16:12:58.195857+0000 mgr.smithi178.tjvcci (mgr.14197) 109 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:59.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:59 smithi178 bash[18765]: cluster 2024-04-24T16:12:58.195857+0000 mgr.smithi178.tjvcci (mgr.14197) 109 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:12:59.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:12:59 smithi178 bash[18765]: cluster 2024-04-24T16:12:58.195857+0000 mgr.smithi178.tjvcci (mgr.14197) 109 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:00.817 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:13:01.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:01 smithi204 bash[20295]: cluster 2024-04-24T16:13:00.196961+0000 mgr.smithi178.tjvcci (mgr.14197) 110 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:01.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:01 smithi204 bash[20295]: cluster 2024-04-24T16:13:00.196961+0000 mgr.smithi178.tjvcci (mgr.14197) 110 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:01.668 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:01 smithi178 bash[18765]: cluster 2024-04-24T16:13:00.196961+0000 mgr.smithi178.tjvcci (mgr.14197) 110 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:01.668 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:01 smithi178 bash[18765]: cluster 2024-04-24T16:13:00.196961+0000 mgr.smithi178.tjvcci (mgr.14197) 110 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:02.029 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:13:02.615 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:02 smithi178 bash[18765]: audit 2024-04-24T16:13:02.032174+0000 mon.smithi178 (mon.0) 366 : audit [DBG] from='client.? 172.21.15.178:0/2763088139' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:02.615 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:02 smithi178 bash[18765]: audit 2024-04-24T16:13:02.032174+0000 mon.smithi178 (mon.0) 366 : audit [DBG] from='client.? 172.21.15.178:0/2763088139' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:02.616 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:13:02.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:02 smithi204 bash[20295]: audit 2024-04-24T16:13:02.032174+0000 mon.smithi178 (mon.0) 366 : audit [DBG] from='client.? 172.21.15.178:0/2763088139' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:02.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:02 smithi204 bash[20295]: audit 2024-04-24T16:13:02.032174+0000 mon.smithi178 (mon.0) 366 : audit [DBG] from='client.? 172.21.15.178:0/2763088139' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:03.617 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:13:03.628 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:03 smithi178 bash[18765]: cluster 2024-04-24T16:13:02.197797+0000 mgr.smithi178.tjvcci (mgr.14197) 111 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:03.628 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:03 smithi178 bash[18765]: cluster 2024-04-24T16:13:02.197797+0000 mgr.smithi178.tjvcci (mgr.14197) 111 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:03.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:03 smithi204 bash[20295]: cluster 2024-04-24T16:13:02.197797+0000 mgr.smithi178.tjvcci (mgr.14197) 111 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:03.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:03 smithi204 bash[20295]: cluster 2024-04-24T16:13:02.197797+0000 mgr.smithi178.tjvcci (mgr.14197) 111 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:05.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:05 smithi204 bash[20295]: cluster 2024-04-24T16:13:04.198735+0000 mgr.smithi178.tjvcci (mgr.14197) 112 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:05.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:05 smithi204 bash[20295]: cluster 2024-04-24T16:13:04.198735+0000 mgr.smithi178.tjvcci (mgr.14197) 112 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:05.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:05 smithi178 bash[18765]: cluster 2024-04-24T16:13:04.198735+0000 mgr.smithi178.tjvcci (mgr.14197) 112 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:05.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:05 smithi178 bash[18765]: cluster 2024-04-24T16:13:04.198735+0000 mgr.smithi178.tjvcci (mgr.14197) 112 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:07.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:07 smithi204 bash[20295]: cluster 2024-04-24T16:13:06.199696+0000 mgr.smithi178.tjvcci (mgr.14197) 113 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:07.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:07 smithi204 bash[20295]: cluster 2024-04-24T16:13:06.199696+0000 mgr.smithi178.tjvcci (mgr.14197) 113 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:07.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:07 smithi178 bash[18765]: cluster 2024-04-24T16:13:06.199696+0000 mgr.smithi178.tjvcci (mgr.14197) 113 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:07.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:07 smithi178 bash[18765]: cluster 2024-04-24T16:13:06.199696+0000 mgr.smithi178.tjvcci (mgr.14197) 113 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:08.383 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:13:09.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:09 smithi178 bash[18765]: cluster 2024-04-24T16:13:08.200660+0000 mgr.smithi178.tjvcci (mgr.14197) 114 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:09.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:09 smithi178 bash[18765]: cluster 2024-04-24T16:13:08.200660+0000 mgr.smithi178.tjvcci (mgr.14197) 114 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:09.608 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:13:09.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:09 smithi204 bash[20295]: cluster 2024-04-24T16:13:08.200660+0000 mgr.smithi178.tjvcci (mgr.14197) 114 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:09.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:09 smithi204 bash[20295]: cluster 2024-04-24T16:13:08.200660+0000 mgr.smithi178.tjvcci (mgr.14197) 114 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:10.234 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:13:10.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:10 smithi178 bash[18765]: audit 2024-04-24T16:13:09.610936+0000 mon.smithi178 (mon.0) 367 : audit [DBG] from='client.? 172.21.15.178:0/2968506783' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:10.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:10 smithi178 bash[18765]: audit 2024-04-24T16:13:09.610936+0000 mon.smithi178 (mon.0) 367 : audit [DBG] from='client.? 172.21.15.178:0/2968506783' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:10.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:10 smithi204 bash[20295]: audit 2024-04-24T16:13:09.610936+0000 mon.smithi178 (mon.0) 367 : audit [DBG] from='client.? 172.21.15.178:0/2968506783' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:10.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:10 smithi204 bash[20295]: audit 2024-04-24T16:13:09.610936+0000 mon.smithi178 (mon.0) 367 : audit [DBG] from='client.? 172.21.15.178:0/2968506783' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:11.236 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:13:11.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:11 smithi178 bash[18765]: cluster 2024-04-24T16:13:10.201634+0000 mgr.smithi178.tjvcci (mgr.14197) 115 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:11.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:11 smithi178 bash[18765]: cluster 2024-04-24T16:13:10.201634+0000 mgr.smithi178.tjvcci (mgr.14197) 115 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:11.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:11 smithi204 bash[20295]: cluster 2024-04-24T16:13:10.201634+0000 mgr.smithi178.tjvcci (mgr.14197) 115 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:11.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:11 smithi204 bash[20295]: cluster 2024-04-24T16:13:10.201634+0000 mgr.smithi178.tjvcci (mgr.14197) 115 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:12.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:12 smithi178 bash[18765]: audit 2024-04-24T16:13:12.380043+0000 mon.smithi178 (mon.0) 368 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:12.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:12 smithi178 bash[18765]: audit 2024-04-24T16:13:12.380043+0000 mon.smithi178 (mon.0) 368 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:12.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:12 smithi204 bash[20295]: audit 2024-04-24T16:13:12.380043+0000 mon.smithi178 (mon.0) 368 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:12.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:12 smithi204 bash[20295]: audit 2024-04-24T16:13:12.380043+0000 mon.smithi178 (mon.0) 368 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:13.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:13 smithi178 bash[18765]: cluster 2024-04-24T16:13:12.202625+0000 mgr.smithi178.tjvcci (mgr.14197) 116 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:13.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:13 smithi178 bash[18765]: cluster 2024-04-24T16:13:12.202625+0000 mgr.smithi178.tjvcci (mgr.14197) 116 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:13.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:13 smithi204 bash[20295]: cluster 2024-04-24T16:13:12.202625+0000 mgr.smithi178.tjvcci (mgr.14197) 116 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:13.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:13 smithi204 bash[20295]: cluster 2024-04-24T16:13:12.202625+0000 mgr.smithi178.tjvcci (mgr.14197) 116 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:15.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:15 smithi178 bash[18765]: cluster 2024-04-24T16:13:14.203541+0000 mgr.smithi178.tjvcci (mgr.14197) 117 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:15.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:15 smithi178 bash[18765]: cluster 2024-04-24T16:13:14.203541+0000 mgr.smithi178.tjvcci (mgr.14197) 117 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:15.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:15 smithi204 bash[20295]: cluster 2024-04-24T16:13:14.203541+0000 mgr.smithi178.tjvcci (mgr.14197) 117 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:15.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:15 smithi204 bash[20295]: cluster 2024-04-24T16:13:14.203541+0000 mgr.smithi178.tjvcci (mgr.14197) 117 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:15.996 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:13:17.182 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:13:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:17 smithi178 bash[18765]: cluster 2024-04-24T16:13:16.204591+0000 mgr.smithi178.tjvcci (mgr.14197) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:17 smithi178 bash[18765]: cluster 2024-04-24T16:13:16.204591+0000 mgr.smithi178.tjvcci (mgr.14197) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:17 smithi178 bash[18765]: audit 2024-04-24T16:13:17.184869+0000 mon.smithi178 (mon.0) 369 : audit [DBG] from='client.? 172.21.15.178:0/2250122365' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:17.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:17 smithi178 bash[18765]: audit 2024-04-24T16:13:17.184869+0000 mon.smithi178 (mon.0) 369 : audit [DBG] from='client.? 172.21.15.178:0/2250122365' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:17.870 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:13:17.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:17 smithi204 bash[20295]: cluster 2024-04-24T16:13:16.204591+0000 mgr.smithi178.tjvcci (mgr.14197) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:17.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:17 smithi204 bash[20295]: cluster 2024-04-24T16:13:16.204591+0000 mgr.smithi178.tjvcci (mgr.14197) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:17.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:17 smithi204 bash[20295]: audit 2024-04-24T16:13:17.184869+0000 mon.smithi178 (mon.0) 369 : audit [DBG] from='client.? 172.21.15.178:0/2250122365' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:17.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:17 smithi204 bash[20295]: audit 2024-04-24T16:13:17.184869+0000 mon.smithi178 (mon.0) 369 : audit [DBG] from='client.? 172.21.15.178:0/2250122365' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:18.872 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:13:19.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:19 smithi178 bash[18765]: cluster 2024-04-24T16:13:18.205600+0000 mgr.smithi178.tjvcci (mgr.14197) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:19.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:19 smithi178 bash[18765]: cluster 2024-04-24T16:13:18.205600+0000 mgr.smithi178.tjvcci (mgr.14197) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:19.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:19 smithi204 bash[20295]: cluster 2024-04-24T16:13:18.205600+0000 mgr.smithi178.tjvcci (mgr.14197) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:19.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:19 smithi204 bash[20295]: cluster 2024-04-24T16:13:18.205600+0000 mgr.smithi178.tjvcci (mgr.14197) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:21 smithi178 bash[18765]: cluster 2024-04-24T16:13:20.206698+0000 mgr.smithi178.tjvcci (mgr.14197) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:21.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:21 smithi178 bash[18765]: cluster 2024-04-24T16:13:20.206698+0000 mgr.smithi178.tjvcci (mgr.14197) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:21.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:21 smithi204 bash[20295]: cluster 2024-04-24T16:13:20.206698+0000 mgr.smithi178.tjvcci (mgr.14197) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:21.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:21 smithi204 bash[20295]: cluster 2024-04-24T16:13:20.206698+0000 mgr.smithi178.tjvcci (mgr.14197) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:23.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:23 smithi178 bash[18765]: cluster 2024-04-24T16:13:22.207813+0000 mgr.smithi178.tjvcci (mgr.14197) 121 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:23.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:23 smithi178 bash[18765]: cluster 2024-04-24T16:13:22.207813+0000 mgr.smithi178.tjvcci (mgr.14197) 121 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:23.636 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:13:23.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:23 smithi204 bash[20295]: cluster 2024-04-24T16:13:22.207813+0000 mgr.smithi178.tjvcci (mgr.14197) 121 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:23.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:23 smithi204 bash[20295]: cluster 2024-04-24T16:13:22.207813+0000 mgr.smithi178.tjvcci (mgr.14197) 121 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:24.799 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:13:25.402 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:13:25.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:25 smithi178 bash[18765]: cluster 2024-04-24T16:13:24.208759+0000 mgr.smithi178.tjvcci (mgr.14197) 122 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:25.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:25 smithi178 bash[18765]: cluster 2024-04-24T16:13:24.208759+0000 mgr.smithi178.tjvcci (mgr.14197) 122 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:25.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:25 smithi178 bash[18765]: audit 2024-04-24T16:13:24.801706+0000 mon.smithi178 (mon.0) 370 : audit [DBG] from='client.? 172.21.15.178:0/2867849690' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:25.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:25 smithi178 bash[18765]: audit 2024-04-24T16:13:24.801706+0000 mon.smithi178 (mon.0) 370 : audit [DBG] from='client.? 172.21.15.178:0/2867849690' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:25.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:25 smithi204 bash[20295]: cluster 2024-04-24T16:13:24.208759+0000 mgr.smithi178.tjvcci (mgr.14197) 122 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:25.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:25 smithi204 bash[20295]: cluster 2024-04-24T16:13:24.208759+0000 mgr.smithi178.tjvcci (mgr.14197) 122 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:25.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:25 smithi204 bash[20295]: audit 2024-04-24T16:13:24.801706+0000 mon.smithi178 (mon.0) 370 : audit [DBG] from='client.? 172.21.15.178:0/2867849690' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:25.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:25 smithi204 bash[20295]: audit 2024-04-24T16:13:24.801706+0000 mon.smithi178 (mon.0) 370 : audit [DBG] from='client.? 172.21.15.178:0/2867849690' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:26.404 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:13:27.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:27 smithi178 bash[18765]: cluster 2024-04-24T16:13:26.209708+0000 mgr.smithi178.tjvcci (mgr.14197) 123 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:27.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:27 smithi178 bash[18765]: cluster 2024-04-24T16:13:26.209708+0000 mgr.smithi178.tjvcci (mgr.14197) 123 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:27.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:27 smithi178 bash[18765]: audit 2024-04-24T16:13:27.380616+0000 mon.smithi178 (mon.0) 371 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:27.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:27 smithi178 bash[18765]: audit 2024-04-24T16:13:27.380616+0000 mon.smithi178 (mon.0) 371 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:27.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:27 smithi204 bash[20295]: cluster 2024-04-24T16:13:26.209708+0000 mgr.smithi178.tjvcci (mgr.14197) 123 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:27.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:27 smithi204 bash[20295]: cluster 2024-04-24T16:13:26.209708+0000 mgr.smithi178.tjvcci (mgr.14197) 123 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:27.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:27 smithi204 bash[20295]: audit 2024-04-24T16:13:27.380616+0000 mon.smithi178 (mon.0) 371 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:27.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:27 smithi204 bash[20295]: audit 2024-04-24T16:13:27.380616+0000 mon.smithi178 (mon.0) 371 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:28.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:28 smithi178 bash[18765]: audit 2024-04-24T16:13:28.292459+0000 mon.smithi178 (mon.0) 372 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:13:28.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:28 smithi178 bash[18765]: audit 2024-04-24T16:13:28.292459+0000 mon.smithi178 (mon.0) 372 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:13:28.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:28 smithi204 bash[20295]: audit 2024-04-24T16:13:28.292459+0000 mon.smithi178 (mon.0) 372 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:13:28.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:28 smithi204 bash[20295]: audit 2024-04-24T16:13:28.292459+0000 mon.smithi178 (mon.0) 372 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:13:29.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:29 smithi178 bash[18765]: cluster 2024-04-24T16:13:28.210641+0000 mgr.smithi178.tjvcci (mgr.14197) 124 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:29.837 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:29 smithi178 bash[18765]: cluster 2024-04-24T16:13:28.210641+0000 mgr.smithi178.tjvcci (mgr.14197) 124 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:29.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:29 smithi204 bash[20295]: cluster 2024-04-24T16:13:28.210641+0000 mgr.smithi178.tjvcci (mgr.14197) 124 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:29.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:29 smithi204 bash[20295]: cluster 2024-04-24T16:13:28.210641+0000 mgr.smithi178.tjvcci (mgr.14197) 124 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:31.170 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:13:31.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:31 smithi178 bash[18765]: cluster 2024-04-24T16:13:30.211578+0000 mgr.smithi178.tjvcci (mgr.14197) 125 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:31.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:31 smithi178 bash[18765]: cluster 2024-04-24T16:13:30.211578+0000 mgr.smithi178.tjvcci (mgr.14197) 125 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:31.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:31 smithi204 bash[20295]: cluster 2024-04-24T16:13:30.211578+0000 mgr.smithi178.tjvcci (mgr.14197) 125 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:31.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:31 smithi204 bash[20295]: cluster 2024-04-24T16:13:30.211578+0000 mgr.smithi178.tjvcci (mgr.14197) 125 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:32.308 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:13:32.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:32 smithi178 bash[18765]: audit 2024-04-24T16:13:32.311201+0000 mon.smithi178 (mon.0) 373 : audit [DBG] from='client.? 172.21.15.178:0/5202107' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:32.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:32 smithi178 bash[18765]: audit 2024-04-24T16:13:32.311201+0000 mon.smithi178 (mon.0) 373 : audit [DBG] from='client.? 172.21.15.178:0/5202107' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:32.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:32 smithi204 bash[20295]: audit 2024-04-24T16:13:32.311201+0000 mon.smithi178 (mon.0) 373 : audit [DBG] from='client.? 172.21.15.178:0/5202107' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:32.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:32 smithi204 bash[20295]: audit 2024-04-24T16:13:32.311201+0000 mon.smithi178 (mon.0) 373 : audit [DBG] from='client.? 172.21.15.178:0/5202107' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:32.929 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:13:33.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:33 smithi178 bash[18765]: cluster 2024-04-24T16:13:32.212565+0000 mgr.smithi178.tjvcci (mgr.14197) 126 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:33.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:33 smithi178 bash[18765]: cluster 2024-04-24T16:13:32.212565+0000 mgr.smithi178.tjvcci (mgr.14197) 126 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:33.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:33 smithi204 bash[20295]: cluster 2024-04-24T16:13:32.212565+0000 mgr.smithi178.tjvcci (mgr.14197) 126 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:33.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:33 smithi204 bash[20295]: cluster 2024-04-24T16:13:32.212565+0000 mgr.smithi178.tjvcci (mgr.14197) 126 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:33.931 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:13:35.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:34 smithi178 bash[18765]: audit 2024-04-24T16:13:33.782605+0000 mon.smithi178 (mon.0) 374 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:13:35.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:34 smithi178 bash[18765]: audit 2024-04-24T16:13:33.782605+0000 mon.smithi178 (mon.0) 374 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:13:35.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:34 smithi178 bash[18765]: audit 2024-04-24T16:13:34.289427+0000 mon.smithi178 (mon.0) 375 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:13:35.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:34 smithi178 bash[18765]: audit 2024-04-24T16:13:34.289427+0000 mon.smithi178 (mon.0) 375 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:13:35.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:34 smithi204 bash[20295]: audit 2024-04-24T16:13:33.782605+0000 mon.smithi178 (mon.0) 374 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:13:35.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:34 smithi204 bash[20295]: audit 2024-04-24T16:13:33.782605+0000 mon.smithi178 (mon.0) 374 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:13:35.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:34 smithi204 bash[20295]: audit 2024-04-24T16:13:34.289427+0000 mon.smithi178 (mon.0) 375 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:13:35.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:34 smithi204 bash[20295]: audit 2024-04-24T16:13:34.289427+0000 mon.smithi178 (mon.0) 375 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:13:36.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:35 smithi178 bash[18765]: cluster 2024-04-24T16:13:34.213023+0000 mgr.smithi178.tjvcci (mgr.14197) 127 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:36.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:35 smithi178 bash[18765]: cluster 2024-04-24T16:13:34.213023+0000 mgr.smithi178.tjvcci (mgr.14197) 127 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:36.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:35 smithi204 bash[20295]: cluster 2024-04-24T16:13:34.213023+0000 mgr.smithi178.tjvcci (mgr.14197) 127 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:36.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:35 smithi204 bash[20295]: cluster 2024-04-24T16:13:34.213023+0000 mgr.smithi178.tjvcci (mgr.14197) 127 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:38.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:37 smithi178 bash[18765]: cluster 2024-04-24T16:13:36.213982+0000 mgr.smithi178.tjvcci (mgr.14197) 128 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:38.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:37 smithi178 bash[18765]: cluster 2024-04-24T16:13:36.213982+0000 mgr.smithi178.tjvcci (mgr.14197) 128 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:38.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:37 smithi204 bash[20295]: cluster 2024-04-24T16:13:36.213982+0000 mgr.smithi178.tjvcci (mgr.14197) 128 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:38.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:37 smithi204 bash[20295]: cluster 2024-04-24T16:13:36.213982+0000 mgr.smithi178.tjvcci (mgr.14197) 128 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:38.684 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:13:39.932 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:13:40.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:39 smithi178 bash[18765]: cluster 2024-04-24T16:13:38.214489+0000 mgr.smithi178.tjvcci (mgr.14197) 129 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:40.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:39 smithi178 bash[18765]: cluster 2024-04-24T16:13:38.214489+0000 mgr.smithi178.tjvcci (mgr.14197) 129 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:40.111 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:39 smithi204 bash[20295]: cluster 2024-04-24T16:13:38.214489+0000 mgr.smithi178.tjvcci (mgr.14197) 129 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:40.111 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:39 smithi204 bash[20295]: cluster 2024-04-24T16:13:38.214489+0000 mgr.smithi178.tjvcci (mgr.14197) 129 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:40.924 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:13:40.979 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:40 smithi178 bash[18765]: audit 2024-04-24T16:13:39.934918+0000 mon.smithi178 (mon.0) 376 : audit [DBG] from='client.? 172.21.15.178:0/3875816021' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:40.979 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:40 smithi178 bash[18765]: audit 2024-04-24T16:13:39.934918+0000 mon.smithi178 (mon.0) 376 : audit [DBG] from='client.? 172.21.15.178:0/3875816021' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:41.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:40 smithi204 bash[20295]: audit 2024-04-24T16:13:39.934918+0000 mon.smithi178 (mon.0) 376 : audit [DBG] from='client.? 172.21.15.178:0/3875816021' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:41.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:40 smithi204 bash[20295]: audit 2024-04-24T16:13:39.934918+0000 mon.smithi178 (mon.0) 376 : audit [DBG] from='client.? 172.21.15.178:0/3875816021' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:41.925 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:13:42.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:41 smithi178 bash[18765]: cluster 2024-04-24T16:13:40.215375+0000 mgr.smithi178.tjvcci (mgr.14197) 130 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:42.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:41 smithi178 bash[18765]: cluster 2024-04-24T16:13:40.215375+0000 mgr.smithi178.tjvcci (mgr.14197) 130 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:42.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:41 smithi204 bash[20295]: cluster 2024-04-24T16:13:40.215375+0000 mgr.smithi178.tjvcci (mgr.14197) 130 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:42.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:41 smithi204 bash[20295]: cluster 2024-04-24T16:13:40.215375+0000 mgr.smithi178.tjvcci (mgr.14197) 130 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:42 smithi178 bash[18765]: audit 2024-04-24T16:13:42.207760+0000 mon.smithi178 (mon.0) 377 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:13:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:42 smithi178 bash[18765]: audit 2024-04-24T16:13:42.207760+0000 mon.smithi178 (mon.0) 377 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:13:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:42 smithi178 bash[18765]: audit 2024-04-24T16:13:42.209425+0000 mon.smithi178 (mon.0) 378 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:13:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:42 smithi178 bash[18765]: audit 2024-04-24T16:13:42.209425+0000 mon.smithi178 (mon.0) 378 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:13:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:42 smithi178 bash[18765]: audit 2024-04-24T16:13:42.218699+0000 mon.smithi178 (mon.0) 379 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:13:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:42 smithi178 bash[18765]: audit 2024-04-24T16:13:42.218699+0000 mon.smithi178 (mon.0) 379 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:13:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:42 smithi178 bash[18765]: audit 2024-04-24T16:13:42.225059+0000 mon.smithi178 (mon.0) 380 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:13:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:42 smithi178 bash[18765]: audit 2024-04-24T16:13:42.225059+0000 mon.smithi178 (mon.0) 380 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:13:43.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:42 smithi178 bash[18765]: audit 2024-04-24T16:13:42.380956+0000 mon.smithi178 (mon.0) 381 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:43.088 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:42 smithi178 bash[18765]: audit 2024-04-24T16:13:42.380956+0000 mon.smithi178 (mon.0) 381 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:43.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:42 smithi204 bash[20295]: audit 2024-04-24T16:13:42.207760+0000 mon.smithi178 (mon.0) 377 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:13:43.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:42 smithi204 bash[20295]: audit 2024-04-24T16:13:42.207760+0000 mon.smithi178 (mon.0) 377 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:13:43.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:42 smithi204 bash[20295]: audit 2024-04-24T16:13:42.209425+0000 mon.smithi178 (mon.0) 378 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:13:43.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:42 smithi204 bash[20295]: audit 2024-04-24T16:13:42.209425+0000 mon.smithi178 (mon.0) 378 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:13:43.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:42 smithi204 bash[20295]: audit 2024-04-24T16:13:42.218699+0000 mon.smithi178 (mon.0) 379 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:13:43.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:42 smithi204 bash[20295]: audit 2024-04-24T16:13:42.218699+0000 mon.smithi178 (mon.0) 379 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:13:43.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:42 smithi204 bash[20295]: audit 2024-04-24T16:13:42.225059+0000 mon.smithi178 (mon.0) 380 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:13:43.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:42 smithi204 bash[20295]: audit 2024-04-24T16:13:42.225059+0000 mon.smithi178 (mon.0) 380 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:13:43.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:42 smithi204 bash[20295]: audit 2024-04-24T16:13:42.380956+0000 mon.smithi178 (mon.0) 381 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:43.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:42 smithi204 bash[20295]: audit 2024-04-24T16:13:42.380956+0000 mon.smithi178 (mon.0) 381 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:44.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:43 smithi178 bash[18765]: cluster 2024-04-24T16:13:42.211903+0000 mgr.smithi178.tjvcci (mgr.14197) 131 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:44.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:43 smithi178 bash[18765]: cluster 2024-04-24T16:13:42.211903+0000 mgr.smithi178.tjvcci (mgr.14197) 131 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:44.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:43 smithi178 bash[18765]: cluster 2024-04-24T16:13:42.213045+0000 mgr.smithi178.tjvcci (mgr.14197) 132 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:44.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:43 smithi178 bash[18765]: cluster 2024-04-24T16:13:42.213045+0000 mgr.smithi178.tjvcci (mgr.14197) 132 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:43 smithi204 bash[20295]: cluster 2024-04-24T16:13:42.211903+0000 mgr.smithi178.tjvcci (mgr.14197) 131 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:43 smithi204 bash[20295]: cluster 2024-04-24T16:13:42.211903+0000 mgr.smithi178.tjvcci (mgr.14197) 131 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:43 smithi204 bash[20295]: cluster 2024-04-24T16:13:42.213045+0000 mgr.smithi178.tjvcci (mgr.14197) 132 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:44.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:43 smithi204 bash[20295]: cluster 2024-04-24T16:13:42.213045+0000 mgr.smithi178.tjvcci (mgr.14197) 132 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:46.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:45 smithi178 bash[18765]: cluster 2024-04-24T16:13:44.214018+0000 mgr.smithi178.tjvcci (mgr.14197) 133 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:46.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:45 smithi178 bash[18765]: cluster 2024-04-24T16:13:44.214018+0000 mgr.smithi178.tjvcci (mgr.14197) 133 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:46.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:45 smithi204 bash[20295]: cluster 2024-04-24T16:13:44.214018+0000 mgr.smithi178.tjvcci (mgr.14197) 133 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:46.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:45 smithi204 bash[20295]: cluster 2024-04-24T16:13:44.214018+0000 mgr.smithi178.tjvcci (mgr.14197) 133 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:46.689 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:13:47.927 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:13:48.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:47 smithi178 bash[18765]: cluster 2024-04-24T16:13:46.214885+0000 mgr.smithi178.tjvcci (mgr.14197) 134 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:48.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:47 smithi178 bash[18765]: cluster 2024-04-24T16:13:46.214885+0000 mgr.smithi178.tjvcci (mgr.14197) 134 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:48.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:47 smithi204 bash[20295]: cluster 2024-04-24T16:13:46.214885+0000 mgr.smithi178.tjvcci (mgr.14197) 134 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:48.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:47 smithi204 bash[20295]: cluster 2024-04-24T16:13:46.214885+0000 mgr.smithi178.tjvcci (mgr.14197) 134 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:48.510 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:13:49.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:48 smithi178 bash[18765]: audit 2024-04-24T16:13:47.930274+0000 mon.smithi178 (mon.0) 382 : audit [DBG] from='client.? 172.21.15.178:0/99581636' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:49.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:48 smithi178 bash[18765]: audit 2024-04-24T16:13:47.930274+0000 mon.smithi178 (mon.0) 382 : audit [DBG] from='client.? 172.21.15.178:0/99581636' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:49.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:48 smithi204 bash[20295]: audit 2024-04-24T16:13:47.930274+0000 mon.smithi178 (mon.0) 382 : audit [DBG] from='client.? 172.21.15.178:0/99581636' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:49.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:48 smithi204 bash[20295]: audit 2024-04-24T16:13:47.930274+0000 mon.smithi178 (mon.0) 382 : audit [DBG] from='client.? 172.21.15.178:0/99581636' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:49.511 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:13:50.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:49 smithi178 bash[18765]: cluster 2024-04-24T16:13:48.215893+0000 mgr.smithi178.tjvcci (mgr.14197) 135 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:50.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:49 smithi178 bash[18765]: cluster 2024-04-24T16:13:48.215893+0000 mgr.smithi178.tjvcci (mgr.14197) 135 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:50.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:49 smithi204 bash[20295]: cluster 2024-04-24T16:13:48.215893+0000 mgr.smithi178.tjvcci (mgr.14197) 135 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:50.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:49 smithi204 bash[20295]: cluster 2024-04-24T16:13:48.215893+0000 mgr.smithi178.tjvcci (mgr.14197) 135 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:52.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:51 smithi204 bash[20295]: cluster 2024-04-24T16:13:50.216965+0000 mgr.smithi178.tjvcci (mgr.14197) 136 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:52.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:51 smithi204 bash[20295]: cluster 2024-04-24T16:13:50.216965+0000 mgr.smithi178.tjvcci (mgr.14197) 136 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:52.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:51 smithi178 bash[18765]: cluster 2024-04-24T16:13:50.216965+0000 mgr.smithi178.tjvcci (mgr.14197) 136 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:52.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:51 smithi178 bash[18765]: cluster 2024-04-24T16:13:50.216965+0000 mgr.smithi178.tjvcci (mgr.14197) 136 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:54.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:53 smithi204 bash[20295]: cluster 2024-04-24T16:13:52.218062+0000 mgr.smithi178.tjvcci (mgr.14197) 137 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:54.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:53 smithi204 bash[20295]: cluster 2024-04-24T16:13:52.218062+0000 mgr.smithi178.tjvcci (mgr.14197) 137 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:54.280 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:13:54.301 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:53 smithi178 bash[18765]: cluster 2024-04-24T16:13:52.218062+0000 mgr.smithi178.tjvcci (mgr.14197) 137 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:54.301 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:53 smithi178 bash[18765]: cluster 2024-04-24T16:13:52.218062+0000 mgr.smithi178.tjvcci (mgr.14197) 137 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:55.426 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:13:56.004 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:13:56.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:55 smithi204 bash[20295]: cluster 2024-04-24T16:13:54.219055+0000 mgr.smithi178.tjvcci (mgr.14197) 138 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:56.181 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:55 smithi204 bash[20295]: cluster 2024-04-24T16:13:54.219055+0000 mgr.smithi178.tjvcci (mgr.14197) 138 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:56.182 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:55 smithi204 bash[20295]: audit 2024-04-24T16:13:55.428681+0000 mon.smithi178 (mon.0) 383 : audit [DBG] from='client.? 172.21.15.178:0/2946343176' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:56.182 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:55 smithi204 bash[20295]: audit 2024-04-24T16:13:55.428681+0000 mon.smithi178 (mon.0) 383 : audit [DBG] from='client.? 172.21.15.178:0/2946343176' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:56.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:55 smithi178 bash[18765]: cluster 2024-04-24T16:13:54.219055+0000 mgr.smithi178.tjvcci (mgr.14197) 138 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:56.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:55 smithi178 bash[18765]: cluster 2024-04-24T16:13:54.219055+0000 mgr.smithi178.tjvcci (mgr.14197) 138 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:56.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:55 smithi178 bash[18765]: audit 2024-04-24T16:13:55.428681+0000 mon.smithi178 (mon.0) 383 : audit [DBG] from='client.? 172.21.15.178:0/2946343176' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:56.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:55 smithi178 bash[18765]: audit 2024-04-24T16:13:55.428681+0000 mon.smithi178 (mon.0) 383 : audit [DBG] from='client.? 172.21.15.178:0/2946343176' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:13:57.005 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:13:58.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:57 smithi204 bash[20295]: cluster 2024-04-24T16:13:56.220019+0000 mgr.smithi178.tjvcci (mgr.14197) 139 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:58.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:57 smithi204 bash[20295]: cluster 2024-04-24T16:13:56.220019+0000 mgr.smithi178.tjvcci (mgr.14197) 139 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:58.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:57 smithi204 bash[20295]: audit 2024-04-24T16:13:57.381399+0000 mon.smithi178 (mon.0) 384 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:58.132 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:57 smithi204 bash[20295]: audit 2024-04-24T16:13:57.381399+0000 mon.smithi178 (mon.0) 384 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:58.311 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:57 smithi178 bash[18765]: cluster 2024-04-24T16:13:56.220019+0000 mgr.smithi178.tjvcci (mgr.14197) 139 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:58.312 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:57 smithi178 bash[18765]: cluster 2024-04-24T16:13:56.220019+0000 mgr.smithi178.tjvcci (mgr.14197) 139 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:13:58.312 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:57 smithi178 bash[18765]: audit 2024-04-24T16:13:57.381399+0000 mon.smithi178 (mon.0) 384 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:13:58.312 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:57 smithi178 bash[18765]: audit 2024-04-24T16:13:57.381399+0000 mon.smithi178 (mon.0) 384 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:00.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:59 smithi204 bash[20295]: cluster 2024-04-24T16:13:58.220649+0000 mgr.smithi178.tjvcci (mgr.14197) 140 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:00.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:13:59 smithi204 bash[20295]: cluster 2024-04-24T16:13:58.220649+0000 mgr.smithi178.tjvcci (mgr.14197) 140 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:00.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:59 smithi178 bash[18765]: cluster 2024-04-24T16:13:58.220649+0000 mgr.smithi178.tjvcci (mgr.14197) 140 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:00.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:13:59 smithi178 bash[18765]: cluster 2024-04-24T16:13:58.220649+0000 mgr.smithi178.tjvcci (mgr.14197) 140 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:01.775 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:14:02.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:01 smithi178 bash[18765]: cluster 2024-04-24T16:14:00.221595+0000 mgr.smithi178.tjvcci (mgr.14197) 141 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:02.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:01 smithi178 bash[18765]: cluster 2024-04-24T16:14:00.221595+0000 mgr.smithi178.tjvcci (mgr.14197) 141 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:02.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:01 smithi204 bash[20295]: cluster 2024-04-24T16:14:00.221595+0000 mgr.smithi178.tjvcci (mgr.14197) 141 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:02.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:01 smithi204 bash[20295]: cluster 2024-04-24T16:14:00.221595+0000 mgr.smithi178.tjvcci (mgr.14197) 141 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:03.188 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:14:03.762 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:14:04.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:03 smithi178 bash[18765]: cluster 2024-04-24T16:14:02.222605+0000 mgr.smithi178.tjvcci (mgr.14197) 142 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:04.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:03 smithi178 bash[18765]: cluster 2024-04-24T16:14:02.222605+0000 mgr.smithi178.tjvcci (mgr.14197) 142 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:04.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:03 smithi178 bash[18765]: audit 2024-04-24T16:14:03.190951+0000 mon.smithi178 (mon.0) 385 : audit [DBG] from='client.? 172.21.15.178:0/2080824721' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:04.087 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:03 smithi178 bash[18765]: audit 2024-04-24T16:14:03.190951+0000 mon.smithi178 (mon.0) 385 : audit [DBG] from='client.? 172.21.15.178:0/2080824721' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:04.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:03 smithi204 bash[20295]: cluster 2024-04-24T16:14:02.222605+0000 mgr.smithi178.tjvcci (mgr.14197) 142 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:04.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:03 smithi204 bash[20295]: cluster 2024-04-24T16:14:02.222605+0000 mgr.smithi178.tjvcci (mgr.14197) 142 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:04.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:03 smithi204 bash[20295]: audit 2024-04-24T16:14:03.190951+0000 mon.smithi178 (mon.0) 385 : audit [DBG] from='client.? 172.21.15.178:0/2080824721' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:04.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:03 smithi204 bash[20295]: audit 2024-04-24T16:14:03.190951+0000 mon.smithi178 (mon.0) 385 : audit [DBG] from='client.? 172.21.15.178:0/2080824721' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:04.763 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:14:06.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:05 smithi204 bash[20295]: cluster 2024-04-24T16:14:04.223618+0000 mgr.smithi178.tjvcci (mgr.14197) 143 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:06.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:05 smithi204 bash[20295]: cluster 2024-04-24T16:14:04.223618+0000 mgr.smithi178.tjvcci (mgr.14197) 143 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:06.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:05 smithi178 bash[18765]: cluster 2024-04-24T16:14:04.223618+0000 mgr.smithi178.tjvcci (mgr.14197) 143 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:06.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:05 smithi178 bash[18765]: cluster 2024-04-24T16:14:04.223618+0000 mgr.smithi178.tjvcci (mgr.14197) 143 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:08.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:07 smithi204 bash[20295]: cluster 2024-04-24T16:14:06.224664+0000 mgr.smithi178.tjvcci (mgr.14197) 144 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:08.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:07 smithi204 bash[20295]: cluster 2024-04-24T16:14:06.224664+0000 mgr.smithi178.tjvcci (mgr.14197) 144 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:08.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:07 smithi178 bash[18765]: cluster 2024-04-24T16:14:06.224664+0000 mgr.smithi178.tjvcci (mgr.14197) 144 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:08.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:07 smithi178 bash[18765]: cluster 2024-04-24T16:14:06.224664+0000 mgr.smithi178.tjvcci (mgr.14197) 144 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:09.535 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:14:10.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:09 smithi204 bash[20295]: cluster 2024-04-24T16:14:08.225811+0000 mgr.smithi178.tjvcci (mgr.14197) 145 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:10.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:09 smithi204 bash[20295]: cluster 2024-04-24T16:14:08.225811+0000 mgr.smithi178.tjvcci (mgr.14197) 145 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:10.266 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:09 smithi178 bash[18765]: cluster 2024-04-24T16:14:08.225811+0000 mgr.smithi178.tjvcci (mgr.14197) 145 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:10.266 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:09 smithi178 bash[18765]: cluster 2024-04-24T16:14:08.225811+0000 mgr.smithi178.tjvcci (mgr.14197) 145 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:10.661 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:14:11.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:10 smithi178 bash[18765]: audit 2024-04-24T16:14:10.664492+0000 mon.smithi178 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.178:0/1497640871' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:11.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:10 smithi178 bash[18765]: audit 2024-04-24T16:14:10.664492+0000 mon.smithi178 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.178:0/1497640871' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:11.332 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:14:11.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:10 smithi204 bash[20295]: audit 2024-04-24T16:14:10.664492+0000 mon.smithi178 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.178:0/1497640871' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:11.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:10 smithi204 bash[20295]: audit 2024-04-24T16:14:10.664492+0000 mon.smithi178 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.178:0/1497640871' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:12.334 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:14:12.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:11 smithi178 bash[18765]: cluster 2024-04-24T16:14:10.233483+0000 mgr.smithi178.tjvcci (mgr.14197) 146 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:12.338 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:11 smithi178 bash[18765]: cluster 2024-04-24T16:14:10.233483+0000 mgr.smithi178.tjvcci (mgr.14197) 146 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:12.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:11 smithi204 bash[20295]: cluster 2024-04-24T16:14:10.233483+0000 mgr.smithi178.tjvcci (mgr.14197) 146 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:12.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:11 smithi204 bash[20295]: cluster 2024-04-24T16:14:10.233483+0000 mgr.smithi178.tjvcci (mgr.14197) 146 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:13.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:12 smithi178 bash[18765]: audit 2024-04-24T16:14:12.381549+0000 mon.smithi178 (mon.0) 387 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:13.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:12 smithi178 bash[18765]: audit 2024-04-24T16:14:12.381549+0000 mon.smithi178 (mon.0) 387 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:13.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:12 smithi204 bash[20295]: audit 2024-04-24T16:14:12.381549+0000 mon.smithi178 (mon.0) 387 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:13.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:12 smithi204 bash[20295]: audit 2024-04-24T16:14:12.381549+0000 mon.smithi178 (mon.0) 387 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:14.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:13 smithi178 bash[18765]: cluster 2024-04-24T16:14:12.234531+0000 mgr.smithi178.tjvcci (mgr.14197) 147 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:14.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:13 smithi178 bash[18765]: cluster 2024-04-24T16:14:12.234531+0000 mgr.smithi178.tjvcci (mgr.14197) 147 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:14.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:13 smithi204 bash[20295]: cluster 2024-04-24T16:14:12.234531+0000 mgr.smithi178.tjvcci (mgr.14197) 147 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:14.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:13 smithi204 bash[20295]: cluster 2024-04-24T16:14:12.234531+0000 mgr.smithi178.tjvcci (mgr.14197) 147 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:16.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:15 smithi178 bash[18765]: cluster 2024-04-24T16:14:14.235537+0000 mgr.smithi178.tjvcci (mgr.14197) 148 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:16.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:15 smithi178 bash[18765]: cluster 2024-04-24T16:14:14.235537+0000 mgr.smithi178.tjvcci (mgr.14197) 148 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:16.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:15 smithi204 bash[20295]: cluster 2024-04-24T16:14:14.235537+0000 mgr.smithi178.tjvcci (mgr.14197) 148 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:16.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:15 smithi204 bash[20295]: cluster 2024-04-24T16:14:14.235537+0000 mgr.smithi178.tjvcci (mgr.14197) 148 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:17.104 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:14:17.947 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:17 smithi178 bash[18765]: cluster 2024-04-24T16:14:16.236534+0000 mgr.smithi178.tjvcci (mgr.14197) 149 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:17.947 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:17 smithi178 bash[18765]: cluster 2024-04-24T16:14:16.236534+0000 mgr.smithi178.tjvcci (mgr.14197) 149 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:18.302 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:14:18.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:17 smithi204 bash[20295]: cluster 2024-04-24T16:14:16.236534+0000 mgr.smithi178.tjvcci (mgr.14197) 149 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:18.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:17 smithi204 bash[20295]: cluster 2024-04-24T16:14:16.236534+0000 mgr.smithi178.tjvcci (mgr.14197) 149 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:18.978 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:14:19.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:18 smithi178 bash[18765]: audit 2024-04-24T16:14:18.305086+0000 mon.smithi178 (mon.0) 388 : audit [DBG] from='client.? 172.21.15.178:0/4290819764' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:19.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:18 smithi178 bash[18765]: audit 2024-04-24T16:14:18.305086+0000 mon.smithi178 (mon.0) 388 : audit [DBG] from='client.? 172.21.15.178:0/4290819764' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:19.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:18 smithi204 bash[20295]: audit 2024-04-24T16:14:18.305086+0000 mon.smithi178 (mon.0) 388 : audit [DBG] from='client.? 172.21.15.178:0/4290819764' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:19.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:18 smithi204 bash[20295]: audit 2024-04-24T16:14:18.305086+0000 mon.smithi178 (mon.0) 388 : audit [DBG] from='client.? 172.21.15.178:0/4290819764' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:19.979 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:14:20.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:19 smithi178 bash[18765]: cluster 2024-04-24T16:14:18.237101+0000 mgr.smithi178.tjvcci (mgr.14197) 150 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:20.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:19 smithi178 bash[18765]: cluster 2024-04-24T16:14:18.237101+0000 mgr.smithi178.tjvcci (mgr.14197) 150 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:20.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:19 smithi204 bash[20295]: cluster 2024-04-24T16:14:18.237101+0000 mgr.smithi178.tjvcci (mgr.14197) 150 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:20.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:19 smithi204 bash[20295]: cluster 2024-04-24T16:14:18.237101+0000 mgr.smithi178.tjvcci (mgr.14197) 150 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:22.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:21 smithi178 bash[18765]: cluster 2024-04-24T16:14:20.238062+0000 mgr.smithi178.tjvcci (mgr.14197) 151 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:22.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:21 smithi178 bash[18765]: cluster 2024-04-24T16:14:20.238062+0000 mgr.smithi178.tjvcci (mgr.14197) 151 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:22.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:21 smithi204 bash[20295]: cluster 2024-04-24T16:14:20.238062+0000 mgr.smithi178.tjvcci (mgr.14197) 151 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:22.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:21 smithi204 bash[20295]: cluster 2024-04-24T16:14:20.238062+0000 mgr.smithi178.tjvcci (mgr.14197) 151 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:24.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:23 smithi178 bash[18765]: cluster 2024-04-24T16:14:22.239031+0000 mgr.smithi178.tjvcci (mgr.14197) 152 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:24.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:23 smithi178 bash[18765]: cluster 2024-04-24T16:14:22.239031+0000 mgr.smithi178.tjvcci (mgr.14197) 152 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:24.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:23 smithi204 bash[20295]: cluster 2024-04-24T16:14:22.239031+0000 mgr.smithi178.tjvcci (mgr.14197) 152 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:24.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:23 smithi204 bash[20295]: cluster 2024-04-24T16:14:22.239031+0000 mgr.smithi178.tjvcci (mgr.14197) 152 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:24.745 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:14:25.888 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:14:26.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:25 smithi178 bash[18765]: cluster 2024-04-24T16:14:24.239690+0000 mgr.smithi178.tjvcci (mgr.14197) 153 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:26.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:25 smithi178 bash[18765]: cluster 2024-04-24T16:14:24.239690+0000 mgr.smithi178.tjvcci (mgr.14197) 153 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:26.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:25 smithi178 bash[18765]: audit 2024-04-24T16:14:25.891313+0000 mon.smithi178 (mon.0) 389 : audit [DBG] from='client.? 172.21.15.178:0/220510334' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:26.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:25 smithi178 bash[18765]: audit 2024-04-24T16:14:25.891313+0000 mon.smithi178 (mon.0) 389 : audit [DBG] from='client.? 172.21.15.178:0/220510334' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:26.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:25 smithi204 bash[20295]: cluster 2024-04-24T16:14:24.239690+0000 mgr.smithi178.tjvcci (mgr.14197) 153 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:26.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:25 smithi204 bash[20295]: cluster 2024-04-24T16:14:24.239690+0000 mgr.smithi178.tjvcci (mgr.14197) 153 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:26.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:25 smithi204 bash[20295]: audit 2024-04-24T16:14:25.891313+0000 mon.smithi178 (mon.0) 389 : audit [DBG] from='client.? 172.21.15.178:0/220510334' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:26.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:25 smithi204 bash[20295]: audit 2024-04-24T16:14:25.891313+0000 mon.smithi178 (mon.0) 389 : audit [DBG] from='client.? 172.21.15.178:0/220510334' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:26.455 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:14:27.456 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:14:28.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:27 smithi178 bash[18765]: cluster 2024-04-24T16:14:26.240608+0000 mgr.smithi178.tjvcci (mgr.14197) 154 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:28.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:27 smithi178 bash[18765]: cluster 2024-04-24T16:14:26.240608+0000 mgr.smithi178.tjvcci (mgr.14197) 154 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:28.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:27 smithi178 bash[18765]: audit 2024-04-24T16:14:27.382102+0000 mon.smithi178 (mon.0) 390 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:28.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:27 smithi178 bash[18765]: audit 2024-04-24T16:14:27.382102+0000 mon.smithi178 (mon.0) 390 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:28.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:27 smithi204 bash[20295]: cluster 2024-04-24T16:14:26.240608+0000 mgr.smithi178.tjvcci (mgr.14197) 154 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:28.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:27 smithi204 bash[20295]: cluster 2024-04-24T16:14:26.240608+0000 mgr.smithi178.tjvcci (mgr.14197) 154 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:28.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:27 smithi204 bash[20295]: audit 2024-04-24T16:14:27.382102+0000 mon.smithi178 (mon.0) 390 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:28.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:27 smithi204 bash[20295]: audit 2024-04-24T16:14:27.382102+0000 mon.smithi178 (mon.0) 390 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:30.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:29 smithi178 bash[18765]: cluster 2024-04-24T16:14:28.241624+0000 mgr.smithi178.tjvcci (mgr.14197) 155 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:30.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:29 smithi178 bash[18765]: cluster 2024-04-24T16:14:28.241624+0000 mgr.smithi178.tjvcci (mgr.14197) 155 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:30.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:29 smithi204 bash[20295]: cluster 2024-04-24T16:14:28.241624+0000 mgr.smithi178.tjvcci (mgr.14197) 155 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:30.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:29 smithi204 bash[20295]: cluster 2024-04-24T16:14:28.241624+0000 mgr.smithi178.tjvcci (mgr.14197) 155 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:32.220 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:14:32.243 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:31 smithi178 bash[18765]: cluster 2024-04-24T16:14:30.242558+0000 mgr.smithi178.tjvcci (mgr.14197) 156 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:32.243 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:31 smithi178 bash[18765]: cluster 2024-04-24T16:14:30.242558+0000 mgr.smithi178.tjvcci (mgr.14197) 156 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:32.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:31 smithi204 bash[20295]: cluster 2024-04-24T16:14:30.242558+0000 mgr.smithi178.tjvcci (mgr.14197) 156 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:32.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:31 smithi204 bash[20295]: cluster 2024-04-24T16:14:30.242558+0000 mgr.smithi178.tjvcci (mgr.14197) 156 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:33.371 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:14:33.953 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:14:34.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:33 smithi178 bash[18765]: cluster 2024-04-24T16:14:32.243088+0000 mgr.smithi178.tjvcci (mgr.14197) 157 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:34.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:33 smithi178 bash[18765]: cluster 2024-04-24T16:14:32.243088+0000 mgr.smithi178.tjvcci (mgr.14197) 157 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:34.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:33 smithi178 bash[18765]: audit 2024-04-24T16:14:33.374363+0000 mon.smithi178 (mon.0) 391 : audit [DBG] from='client.? 172.21.15.178:0/1951819372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:34.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:33 smithi178 bash[18765]: audit 2024-04-24T16:14:33.374363+0000 mon.smithi178 (mon.0) 391 : audit [DBG] from='client.? 172.21.15.178:0/1951819372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:34.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:33 smithi204 bash[20295]: cluster 2024-04-24T16:14:32.243088+0000 mgr.smithi178.tjvcci (mgr.14197) 157 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:34.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:33 smithi204 bash[20295]: cluster 2024-04-24T16:14:32.243088+0000 mgr.smithi178.tjvcci (mgr.14197) 157 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:34.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:33 smithi204 bash[20295]: audit 2024-04-24T16:14:33.374363+0000 mon.smithi178 (mon.0) 391 : audit [DBG] from='client.? 172.21.15.178:0/1951819372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:34.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:33 smithi204 bash[20295]: audit 2024-04-24T16:14:33.374363+0000 mon.smithi178 (mon.0) 391 : audit [DBG] from='client.? 172.21.15.178:0/1951819372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:34.954 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:14:36.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:35 smithi178 bash[18765]: cluster 2024-04-24T16:14:34.244422+0000 mgr.smithi178.tjvcci (mgr.14197) 158 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:36.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:35 smithi178 bash[18765]: cluster 2024-04-24T16:14:34.244422+0000 mgr.smithi178.tjvcci (mgr.14197) 158 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:36.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:35 smithi204 bash[20295]: cluster 2024-04-24T16:14:34.244422+0000 mgr.smithi178.tjvcci (mgr.14197) 158 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:36.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:35 smithi204 bash[20295]: cluster 2024-04-24T16:14:34.244422+0000 mgr.smithi178.tjvcci (mgr.14197) 158 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:38.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:37 smithi178 bash[18765]: cluster 2024-04-24T16:14:36.245431+0000 mgr.smithi178.tjvcci (mgr.14197) 159 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:38.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:37 smithi178 bash[18765]: cluster 2024-04-24T16:14:36.245431+0000 mgr.smithi178.tjvcci (mgr.14197) 159 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:38.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:37 smithi204 bash[20295]: cluster 2024-04-24T16:14:36.245431+0000 mgr.smithi178.tjvcci (mgr.14197) 159 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:38.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:37 smithi204 bash[20295]: cluster 2024-04-24T16:14:36.245431+0000 mgr.smithi178.tjvcci (mgr.14197) 159 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:39.718 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:14:40.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:39 smithi178 bash[18765]: cluster 2024-04-24T16:14:38.246448+0000 mgr.smithi178.tjvcci (mgr.14197) 160 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:40.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:39 smithi178 bash[18765]: cluster 2024-04-24T16:14:38.246448+0000 mgr.smithi178.tjvcci (mgr.14197) 160 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:40.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:39 smithi204 bash[20295]: cluster 2024-04-24T16:14:38.246448+0000 mgr.smithi178.tjvcci (mgr.14197) 160 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:40.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:39 smithi204 bash[20295]: cluster 2024-04-24T16:14:38.246448+0000 mgr.smithi178.tjvcci (mgr.14197) 160 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:41.035 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:14:41.707 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:14:42.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:41 smithi178 bash[18765]: cluster 2024-04-24T16:14:40.253838+0000 mgr.smithi178.tjvcci (mgr.14197) 161 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:42.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:41 smithi178 bash[18765]: cluster 2024-04-24T16:14:40.253838+0000 mgr.smithi178.tjvcci (mgr.14197) 161 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:42.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:41 smithi178 bash[18765]: audit 2024-04-24T16:14:41.038826+0000 mon.smithi178 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.178:0/3378816262' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:42.337 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:41 smithi178 bash[18765]: audit 2024-04-24T16:14:41.038826+0000 mon.smithi178 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.178:0/3378816262' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:42.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:41 smithi204 bash[20295]: cluster 2024-04-24T16:14:40.253838+0000 mgr.smithi178.tjvcci (mgr.14197) 161 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:42.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:41 smithi204 bash[20295]: cluster 2024-04-24T16:14:40.253838+0000 mgr.smithi178.tjvcci (mgr.14197) 161 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:42.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:41 smithi204 bash[20295]: audit 2024-04-24T16:14:41.038826+0000 mon.smithi178 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.178:0/3378816262' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:42.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:41 smithi204 bash[20295]: audit 2024-04-24T16:14:41.038826+0000 mon.smithi178 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.178:0/3378816262' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:42.708 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:14:43.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:42 smithi178 bash[18765]: audit 2024-04-24T16:14:42.323816+0000 mon.smithi178 (mon.0) 393 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:14:43.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:42 smithi178 bash[18765]: audit 2024-04-24T16:14:42.323816+0000 mon.smithi178 (mon.0) 393 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:14:43.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:42 smithi178 bash[18765]: audit 2024-04-24T16:14:42.383012+0000 mon.smithi178 (mon.0) 394 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:43.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:42 smithi178 bash[18765]: audit 2024-04-24T16:14:42.383012+0000 mon.smithi178 (mon.0) 394 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:43.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:42 smithi204 bash[20295]: audit 2024-04-24T16:14:42.323816+0000 mon.smithi178 (mon.0) 393 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:14:43.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:42 smithi204 bash[20295]: audit 2024-04-24T16:14:42.323816+0000 mon.smithi178 (mon.0) 393 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:14:43.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:42 smithi204 bash[20295]: audit 2024-04-24T16:14:42.383012+0000 mon.smithi178 (mon.0) 394 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:43.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:42 smithi204 bash[20295]: audit 2024-04-24T16:14:42.383012+0000 mon.smithi178 (mon.0) 394 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:44.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:43 smithi178 bash[18765]: cluster 2024-04-24T16:14:42.254806+0000 mgr.smithi178.tjvcci (mgr.14197) 162 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:44.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:43 smithi178 bash[18765]: cluster 2024-04-24T16:14:42.254806+0000 mgr.smithi178.tjvcci (mgr.14197) 162 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:44.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:43 smithi204 bash[20295]: cluster 2024-04-24T16:14:42.254806+0000 mgr.smithi178.tjvcci (mgr.14197) 162 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:44.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:43 smithi204 bash[20295]: cluster 2024-04-24T16:14:42.254806+0000 mgr.smithi178.tjvcci (mgr.14197) 162 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:46.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:45 smithi178 bash[18765]: cluster 2024-04-24T16:14:44.255767+0000 mgr.smithi178.tjvcci (mgr.14197) 163 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:46.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:45 smithi178 bash[18765]: cluster 2024-04-24T16:14:44.255767+0000 mgr.smithi178.tjvcci (mgr.14197) 163 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:46.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:45 smithi204 bash[20295]: cluster 2024-04-24T16:14:44.255767+0000 mgr.smithi178.tjvcci (mgr.14197) 163 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:46.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:45 smithi204 bash[20295]: cluster 2024-04-24T16:14:44.255767+0000 mgr.smithi178.tjvcci (mgr.14197) 163 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:47.386 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:14:48.228 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:47 smithi178 bash[18765]: cluster 2024-04-24T16:14:46.256751+0000 mgr.smithi178.tjvcci (mgr.14197) 164 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:48.228 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:47 smithi178 bash[18765]: cluster 2024-04-24T16:14:46.256751+0000 mgr.smithi178.tjvcci (mgr.14197) 164 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:48.228 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:47 smithi178 bash[18765]: audit 2024-04-24T16:14:47.814210+0000 mon.smithi178 (mon.0) 395 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:14:48.228 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:47 smithi178 bash[18765]: audit 2024-04-24T16:14:47.814210+0000 mon.smithi178 (mon.0) 395 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:14:48.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:47 smithi204 bash[20295]: cluster 2024-04-24T16:14:46.256751+0000 mgr.smithi178.tjvcci (mgr.14197) 164 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:48.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:47 smithi204 bash[20295]: cluster 2024-04-24T16:14:46.256751+0000 mgr.smithi178.tjvcci (mgr.14197) 164 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:48.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:47 smithi204 bash[20295]: audit 2024-04-24T16:14:47.814210+0000 mon.smithi178 (mon.0) 395 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:14:48.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:47 smithi204 bash[20295]: audit 2024-04-24T16:14:47.814210+0000 mon.smithi178 (mon.0) 395 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:14:48.561 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:14:49.204 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:14:49.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:49 smithi178 bash[18765]: cluster 2024-04-24T16:14:48.257226+0000 mgr.smithi178.tjvcci (mgr.14197) 165 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:49.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:49 smithi178 bash[18765]: cluster 2024-04-24T16:14:48.257226+0000 mgr.smithi178.tjvcci (mgr.14197) 165 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:49.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:49 smithi178 bash[18765]: audit 2024-04-24T16:14:48.322179+0000 mon.smithi178 (mon.0) 396 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:14:49.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:49 smithi178 bash[18765]: audit 2024-04-24T16:14:48.322179+0000 mon.smithi178 (mon.0) 396 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:14:49.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:49 smithi178 bash[18765]: audit 2024-04-24T16:14:48.564188+0000 mon.smithi178 (mon.0) 397 : audit [DBG] from='client.? 172.21.15.178:0/4070327707' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:49.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:49 smithi178 bash[18765]: audit 2024-04-24T16:14:48.564188+0000 mon.smithi178 (mon.0) 397 : audit [DBG] from='client.? 172.21.15.178:0/4070327707' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:49.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:49 smithi204 bash[20295]: cluster 2024-04-24T16:14:48.257226+0000 mgr.smithi178.tjvcci (mgr.14197) 165 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:49.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:49 smithi204 bash[20295]: cluster 2024-04-24T16:14:48.257226+0000 mgr.smithi178.tjvcci (mgr.14197) 165 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:49.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:49 smithi204 bash[20295]: audit 2024-04-24T16:14:48.322179+0000 mon.smithi178 (mon.0) 396 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:14:49.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:49 smithi204 bash[20295]: audit 2024-04-24T16:14:48.322179+0000 mon.smithi178 (mon.0) 396 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:14:49.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:49 smithi204 bash[20295]: audit 2024-04-24T16:14:48.564188+0000 mon.smithi178 (mon.0) 397 : audit [DBG] from='client.? 172.21.15.178:0/4070327707' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:49.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:49 smithi204 bash[20295]: audit 2024-04-24T16:14:48.564188+0000 mon.smithi178 (mon.0) 397 : audit [DBG] from='client.? 172.21.15.178:0/4070327707' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:50.205 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:14:51.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:51 smithi178 bash[18765]: cluster 2024-04-24T16:14:50.257827+0000 mgr.smithi178.tjvcci (mgr.14197) 166 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:51.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:51 smithi178 bash[18765]: cluster 2024-04-24T16:14:50.257827+0000 mgr.smithi178.tjvcci (mgr.14197) 166 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:51.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:51 smithi204 bash[20295]: cluster 2024-04-24T16:14:50.257827+0000 mgr.smithi178.tjvcci (mgr.14197) 166 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:51.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:51 smithi204 bash[20295]: cluster 2024-04-24T16:14:50.257827+0000 mgr.smithi178.tjvcci (mgr.14197) 166 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:53.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:53 smithi178 bash[18765]: cluster 2024-04-24T16:14:52.258763+0000 mgr.smithi178.tjvcci (mgr.14197) 167 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:53.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:53 smithi178 bash[18765]: cluster 2024-04-24T16:14:52.258763+0000 mgr.smithi178.tjvcci (mgr.14197) 167 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:53.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:53 smithi204 bash[20295]: cluster 2024-04-24T16:14:52.258763+0000 mgr.smithi178.tjvcci (mgr.14197) 167 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:53.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:53 smithi204 bash[20295]: cluster 2024-04-24T16:14:52.258763+0000 mgr.smithi178.tjvcci (mgr.14197) 167 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:54.904 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:14:55.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:55 smithi178 bash[18765]: cluster 2024-04-24T16:14:54.259714+0000 mgr.smithi178.tjvcci (mgr.14197) 168 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:55.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:55 smithi178 bash[18765]: cluster 2024-04-24T16:14:54.259714+0000 mgr.smithi178.tjvcci (mgr.14197) 168 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:55.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:55 smithi204 bash[20295]: cluster 2024-04-24T16:14:54.259714+0000 mgr.smithi178.tjvcci (mgr.14197) 168 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:55.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:55 smithi204 bash[20295]: cluster 2024-04-24T16:14:54.259714+0000 mgr.smithi178.tjvcci (mgr.14197) 168 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:56.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:56 smithi178 bash[18765]: audit 2024-04-24T16:14:56.192352+0000 mon.smithi178 (mon.0) 398 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:14:56.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:56 smithi178 bash[18765]: audit 2024-04-24T16:14:56.192352+0000 mon.smithi178 (mon.0) 398 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:14:56.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:56 smithi178 bash[18765]: audit 2024-04-24T16:14:56.193975+0000 mon.smithi178 (mon.0) 399 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:14:56.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:56 smithi178 bash[18765]: audit 2024-04-24T16:14:56.193975+0000 mon.smithi178 (mon.0) 399 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:14:56.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:56 smithi178 bash[18765]: audit 2024-04-24T16:14:56.204409+0000 mon.smithi178 (mon.0) 400 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:14:56.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:56 smithi178 bash[18765]: audit 2024-04-24T16:14:56.204409+0000 mon.smithi178 (mon.0) 400 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:14:56.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:56 smithi178 bash[18765]: audit 2024-04-24T16:14:56.210152+0000 mon.smithi178 (mon.0) 401 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:14:56.587 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:56 smithi178 bash[18765]: audit 2024-04-24T16:14:56.210152+0000 mon.smithi178 (mon.0) 401 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:14:56.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:56 smithi204 bash[20295]: audit 2024-04-24T16:14:56.192352+0000 mon.smithi178 (mon.0) 398 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:14:56.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:56 smithi204 bash[20295]: audit 2024-04-24T16:14:56.192352+0000 mon.smithi178 (mon.0) 398 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:14:56.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:56 smithi204 bash[20295]: audit 2024-04-24T16:14:56.193975+0000 mon.smithi178 (mon.0) 399 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:14:56.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:56 smithi204 bash[20295]: audit 2024-04-24T16:14:56.193975+0000 mon.smithi178 (mon.0) 399 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:14:56.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:56 smithi204 bash[20295]: audit 2024-04-24T16:14:56.204409+0000 mon.smithi178 (mon.0) 400 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:14:56.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:56 smithi204 bash[20295]: audit 2024-04-24T16:14:56.204409+0000 mon.smithi178 (mon.0) 400 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:14:56.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:56 smithi204 bash[20295]: audit 2024-04-24T16:14:56.210152+0000 mon.smithi178 (mon.0) 401 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:14:56.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:56 smithi204 bash[20295]: audit 2024-04-24T16:14:56.210152+0000 mon.smithi178 (mon.0) 401 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:14:56.653 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:14:57.347 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:14:57.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:57 smithi204 bash[20295]: cluster 2024-04-24T16:14:56.196372+0000 mgr.smithi178.tjvcci (mgr.14197) 169 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:57.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:57 smithi204 bash[20295]: cluster 2024-04-24T16:14:56.196372+0000 mgr.smithi178.tjvcci (mgr.14197) 169 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:57.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:57 smithi204 bash[20295]: cluster 2024-04-24T16:14:56.197314+0000 mgr.smithi178.tjvcci (mgr.14197) 170 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:57.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:57 smithi204 bash[20295]: cluster 2024-04-24T16:14:56.197314+0000 mgr.smithi178.tjvcci (mgr.14197) 170 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:57.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:57 smithi204 bash[20295]: audit 2024-04-24T16:14:56.657227+0000 mon.smithi178 (mon.0) 402 : audit [DBG] from='client.? 172.21.15.178:0/3923581838' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:57.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:57 smithi204 bash[20295]: audit 2024-04-24T16:14:56.657227+0000 mon.smithi178 (mon.0) 402 : audit [DBG] from='client.? 172.21.15.178:0/3923581838' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:57.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:57 smithi178 bash[18765]: cluster 2024-04-24T16:14:56.196372+0000 mgr.smithi178.tjvcci (mgr.14197) 169 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:57.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:57 smithi178 bash[18765]: cluster 2024-04-24T16:14:56.196372+0000 mgr.smithi178.tjvcci (mgr.14197) 169 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:57.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:57 smithi178 bash[18765]: cluster 2024-04-24T16:14:56.197314+0000 mgr.smithi178.tjvcci (mgr.14197) 170 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:57.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:57 smithi178 bash[18765]: cluster 2024-04-24T16:14:56.197314+0000 mgr.smithi178.tjvcci (mgr.14197) 170 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:57.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:57 smithi178 bash[18765]: audit 2024-04-24T16:14:56.657227+0000 mon.smithi178 (mon.0) 402 : audit [DBG] from='client.? 172.21.15.178:0/3923581838' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:57.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:57 smithi178 bash[18765]: audit 2024-04-24T16:14:56.657227+0000 mon.smithi178 (mon.0) 402 : audit [DBG] from='client.? 172.21.15.178:0/3923581838' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:14:58.347 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:14:58.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:58 smithi204 bash[20295]: audit 2024-04-24T16:14:57.383414+0000 mon.smithi178 (mon.0) 403 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:58.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:58 smithi204 bash[20295]: audit 2024-04-24T16:14:57.383414+0000 mon.smithi178 (mon.0) 403 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:58.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:58 smithi178 bash[18765]: audit 2024-04-24T16:14:57.383414+0000 mon.smithi178 (mon.0) 403 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:58.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:58 smithi178 bash[18765]: audit 2024-04-24T16:14:57.383414+0000 mon.smithi178 (mon.0) 403 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:14:59.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:59 smithi204 bash[20295]: cluster 2024-04-24T16:14:58.198261+0000 mgr.smithi178.tjvcci (mgr.14197) 171 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:59.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:14:59 smithi204 bash[20295]: cluster 2024-04-24T16:14:58.198261+0000 mgr.smithi178.tjvcci (mgr.14197) 171 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:59.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:59 smithi178 bash[18765]: cluster 2024-04-24T16:14:58.198261+0000 mgr.smithi178.tjvcci (mgr.14197) 171 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:14:59.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:14:59 smithi178 bash[18765]: cluster 2024-04-24T16:14:58.198261+0000 mgr.smithi178.tjvcci (mgr.14197) 171 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:01.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:01 smithi204 bash[20295]: cluster 2024-04-24T16:15:00.199291+0000 mgr.smithi178.tjvcci (mgr.14197) 172 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:01.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:01 smithi204 bash[20295]: cluster 2024-04-24T16:15:00.199291+0000 mgr.smithi178.tjvcci (mgr.14197) 172 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:01.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:01 smithi178 bash[18765]: cluster 2024-04-24T16:15:00.199291+0000 mgr.smithi178.tjvcci (mgr.14197) 172 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:01.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:01 smithi178 bash[18765]: cluster 2024-04-24T16:15:00.199291+0000 mgr.smithi178.tjvcci (mgr.14197) 172 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:03.112 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:15:03.518 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:03 smithi178 bash[18765]: cluster 2024-04-24T16:15:02.200290+0000 mgr.smithi178.tjvcci (mgr.14197) 173 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:03.518 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:03 smithi178 bash[18765]: cluster 2024-04-24T16:15:02.200290+0000 mgr.smithi178.tjvcci (mgr.14197) 173 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:03.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:03 smithi204 bash[20295]: cluster 2024-04-24T16:15:02.200290+0000 mgr.smithi178.tjvcci (mgr.14197) 173 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:03.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:03 smithi204 bash[20295]: cluster 2024-04-24T16:15:02.200290+0000 mgr.smithi178.tjvcci (mgr.14197) 173 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:04.193 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:15:04.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:04 smithi178 bash[18765]: audit 2024-04-24T16:15:04.196834+0000 mon.smithi178 (mon.0) 404 : audit [DBG] from='client.? 172.21.15.178:0/1029764872' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:04.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:04 smithi178 bash[18765]: audit 2024-04-24T16:15:04.196834+0000 mon.smithi178 (mon.0) 404 : audit [DBG] from='client.? 172.21.15.178:0/1029764872' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:04.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:04 smithi204 bash[20295]: audit 2024-04-24T16:15:04.196834+0000 mon.smithi178 (mon.0) 404 : audit [DBG] from='client.? 172.21.15.178:0/1029764872' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:04.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:04 smithi204 bash[20295]: audit 2024-04-24T16:15:04.196834+0000 mon.smithi178 (mon.0) 404 : audit [DBG] from='client.? 172.21.15.178:0/1029764872' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:04.814 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:15:05.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:05 smithi178 bash[18765]: cluster 2024-04-24T16:15:04.200882+0000 mgr.smithi178.tjvcci (mgr.14197) 174 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:05.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:05 smithi178 bash[18765]: cluster 2024-04-24T16:15:04.200882+0000 mgr.smithi178.tjvcci (mgr.14197) 174 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:05.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:05 smithi204 bash[20295]: cluster 2024-04-24T16:15:04.200882+0000 mgr.smithi178.tjvcci (mgr.14197) 174 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:05.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:05 smithi204 bash[20295]: cluster 2024-04-24T16:15:04.200882+0000 mgr.smithi178.tjvcci (mgr.14197) 174 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:05.816 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:15:07.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:07 smithi204 bash[20295]: cluster 2024-04-24T16:15:06.201868+0000 mgr.smithi178.tjvcci (mgr.14197) 175 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:07.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:07 smithi204 bash[20295]: cluster 2024-04-24T16:15:06.201868+0000 mgr.smithi178.tjvcci (mgr.14197) 175 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:07.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:07 smithi178 bash[18765]: cluster 2024-04-24T16:15:06.201868+0000 mgr.smithi178.tjvcci (mgr.14197) 175 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:07.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:07 smithi178 bash[18765]: cluster 2024-04-24T16:15:06.201868+0000 mgr.smithi178.tjvcci (mgr.14197) 175 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:09.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:09 smithi204 bash[20295]: cluster 2024-04-24T16:15:08.202844+0000 mgr.smithi178.tjvcci (mgr.14197) 176 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:09.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:09 smithi204 bash[20295]: cluster 2024-04-24T16:15:08.202844+0000 mgr.smithi178.tjvcci (mgr.14197) 176 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:09.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:09 smithi178 bash[18765]: cluster 2024-04-24T16:15:08.202844+0000 mgr.smithi178.tjvcci (mgr.14197) 176 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:09.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:09 smithi178 bash[18765]: cluster 2024-04-24T16:15:08.202844+0000 mgr.smithi178.tjvcci (mgr.14197) 176 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:10.580 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:15:11.722 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:15:11.735 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:11 smithi178 bash[18765]: cluster 2024-04-24T16:15:10.203878+0000 mgr.smithi178.tjvcci (mgr.14197) 177 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:11.735 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:11 smithi178 bash[18765]: cluster 2024-04-24T16:15:10.203878+0000 mgr.smithi178.tjvcci (mgr.14197) 177 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:11.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:11 smithi204 bash[20295]: cluster 2024-04-24T16:15:10.203878+0000 mgr.smithi178.tjvcci (mgr.14197) 177 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:11.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:11 smithi204 bash[20295]: cluster 2024-04-24T16:15:10.203878+0000 mgr.smithi178.tjvcci (mgr.14197) 177 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:12.290 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:15:12.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:12 smithi178 bash[18765]: audit 2024-04-24T16:15:11.725806+0000 mon.smithi178 (mon.0) 405 : audit [DBG] from='client.? 172.21.15.178:0/1022624449' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:12.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:12 smithi178 bash[18765]: audit 2024-04-24T16:15:11.725806+0000 mon.smithi178 (mon.0) 405 : audit [DBG] from='client.? 172.21.15.178:0/1022624449' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:12.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:12 smithi178 bash[18765]: audit 2024-04-24T16:15:12.383882+0000 mon.smithi178 (mon.0) 406 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:12.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:12 smithi178 bash[18765]: audit 2024-04-24T16:15:12.383882+0000 mon.smithi178 (mon.0) 406 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:12.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:12 smithi204 bash[20295]: audit 2024-04-24T16:15:11.725806+0000 mon.smithi178 (mon.0) 405 : audit [DBG] from='client.? 172.21.15.178:0/1022624449' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:12.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:12 smithi204 bash[20295]: audit 2024-04-24T16:15:11.725806+0000 mon.smithi178 (mon.0) 405 : audit [DBG] from='client.? 172.21.15.178:0/1022624449' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:12.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:12 smithi204 bash[20295]: audit 2024-04-24T16:15:12.383882+0000 mon.smithi178 (mon.0) 406 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:12.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:12 smithi204 bash[20295]: audit 2024-04-24T16:15:12.383882+0000 mon.smithi178 (mon.0) 406 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:13.291 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:15:13.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:13 smithi178 bash[18765]: cluster 2024-04-24T16:15:12.204864+0000 mgr.smithi178.tjvcci (mgr.14197) 178 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:13.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:13 smithi178 bash[18765]: cluster 2024-04-24T16:15:12.204864+0000 mgr.smithi178.tjvcci (mgr.14197) 178 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:13.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:13 smithi204 bash[20295]: cluster 2024-04-24T16:15:12.204864+0000 mgr.smithi178.tjvcci (mgr.14197) 178 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:13.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:13 smithi204 bash[20295]: cluster 2024-04-24T16:15:12.204864+0000 mgr.smithi178.tjvcci (mgr.14197) 178 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:15.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:15 smithi178 bash[18765]: cluster 2024-04-24T16:15:14.205858+0000 mgr.smithi178.tjvcci (mgr.14197) 179 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:15.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:15 smithi178 bash[18765]: cluster 2024-04-24T16:15:14.205858+0000 mgr.smithi178.tjvcci (mgr.14197) 179 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:15.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:15 smithi204 bash[20295]: cluster 2024-04-24T16:15:14.205858+0000 mgr.smithi178.tjvcci (mgr.14197) 179 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:15.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:15 smithi204 bash[20295]: cluster 2024-04-24T16:15:14.205858+0000 mgr.smithi178.tjvcci (mgr.14197) 179 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:17.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:17 smithi178 bash[18765]: cluster 2024-04-24T16:15:16.206828+0000 mgr.smithi178.tjvcci (mgr.14197) 180 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:17.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:17 smithi178 bash[18765]: cluster 2024-04-24T16:15:16.206828+0000 mgr.smithi178.tjvcci (mgr.14197) 180 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:17.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:17 smithi204 bash[20295]: cluster 2024-04-24T16:15:16.206828+0000 mgr.smithi178.tjvcci (mgr.14197) 180 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:17.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:17 smithi204 bash[20295]: cluster 2024-04-24T16:15:16.206828+0000 mgr.smithi178.tjvcci (mgr.14197) 180 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:18.053 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:15:19.191 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:15:19.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:19 smithi178 bash[18765]: cluster 2024-04-24T16:15:18.207936+0000 mgr.smithi178.tjvcci (mgr.14197) 181 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:19.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:19 smithi178 bash[18765]: cluster 2024-04-24T16:15:18.207936+0000 mgr.smithi178.tjvcci (mgr.14197) 181 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:19.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:19 smithi178 bash[18765]: audit 2024-04-24T16:15:19.194608+0000 mon.smithi178 (mon.0) 407 : audit [DBG] from='client.? 172.21.15.178:0/1961766327' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:19.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:19 smithi178 bash[18765]: audit 2024-04-24T16:15:19.194608+0000 mon.smithi178 (mon.0) 407 : audit [DBG] from='client.? 172.21.15.178:0/1961766327' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:19.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:19 smithi204 bash[20295]: cluster 2024-04-24T16:15:18.207936+0000 mgr.smithi178.tjvcci (mgr.14197) 181 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:19.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:19 smithi204 bash[20295]: cluster 2024-04-24T16:15:18.207936+0000 mgr.smithi178.tjvcci (mgr.14197) 181 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:19.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:19 smithi204 bash[20295]: audit 2024-04-24T16:15:19.194608+0000 mon.smithi178 (mon.0) 407 : audit [DBG] from='client.? 172.21.15.178:0/1961766327' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:19.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:19 smithi204 bash[20295]: audit 2024-04-24T16:15:19.194608+0000 mon.smithi178 (mon.0) 407 : audit [DBG] from='client.? 172.21.15.178:0/1961766327' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:19.896 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:15:20.897 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:15:21.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:21 smithi178 bash[18765]: cluster 2024-04-24T16:15:20.209065+0000 mgr.smithi178.tjvcci (mgr.14197) 182 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:21.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:21 smithi178 bash[18765]: cluster 2024-04-24T16:15:20.209065+0000 mgr.smithi178.tjvcci (mgr.14197) 182 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:21.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:21 smithi204 bash[20295]: cluster 2024-04-24T16:15:20.209065+0000 mgr.smithi178.tjvcci (mgr.14197) 182 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:21.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:21 smithi204 bash[20295]: cluster 2024-04-24T16:15:20.209065+0000 mgr.smithi178.tjvcci (mgr.14197) 182 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:23.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:23 smithi178 bash[18765]: cluster 2024-04-24T16:15:22.210103+0000 mgr.smithi178.tjvcci (mgr.14197) 183 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:23.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:23 smithi178 bash[18765]: cluster 2024-04-24T16:15:22.210103+0000 mgr.smithi178.tjvcci (mgr.14197) 183 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:23.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:23 smithi204 bash[20295]: cluster 2024-04-24T16:15:22.210103+0000 mgr.smithi178.tjvcci (mgr.14197) 183 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:23.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:23 smithi204 bash[20295]: cluster 2024-04-24T16:15:22.210103+0000 mgr.smithi178.tjvcci (mgr.14197) 183 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:25.655 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:15:25.675 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:25 smithi178 bash[18765]: cluster 2024-04-24T16:15:24.211128+0000 mgr.smithi178.tjvcci (mgr.14197) 184 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:25.675 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:25 smithi178 bash[18765]: cluster 2024-04-24T16:15:24.211128+0000 mgr.smithi178.tjvcci (mgr.14197) 184 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:25.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:25 smithi204 bash[20295]: cluster 2024-04-24T16:15:24.211128+0000 mgr.smithi178.tjvcci (mgr.14197) 184 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:25.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:25 smithi204 bash[20295]: cluster 2024-04-24T16:15:24.211128+0000 mgr.smithi178.tjvcci (mgr.14197) 184 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:26.844 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:15:27.400 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:15:27.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:27 smithi178 bash[18765]: cluster 2024-04-24T16:15:26.212109+0000 mgr.smithi178.tjvcci (mgr.14197) 185 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:27.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:27 smithi178 bash[18765]: cluster 2024-04-24T16:15:26.212109+0000 mgr.smithi178.tjvcci (mgr.14197) 185 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:27.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:27 smithi178 bash[18765]: audit 2024-04-24T16:15:26.848525+0000 mon.smithi178 (mon.0) 408 : audit [DBG] from='client.? 172.21.15.178:0/1991120307' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:27.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:27 smithi178 bash[18765]: audit 2024-04-24T16:15:26.848525+0000 mon.smithi178 (mon.0) 408 : audit [DBG] from='client.? 172.21.15.178:0/1991120307' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:27.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:27 smithi178 bash[18765]: audit 2024-04-24T16:15:27.384518+0000 mon.smithi178 (mon.0) 409 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:27.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:27 smithi178 bash[18765]: audit 2024-04-24T16:15:27.384518+0000 mon.smithi178 (mon.0) 409 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:27.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:27 smithi204 bash[20295]: cluster 2024-04-24T16:15:26.212109+0000 mgr.smithi178.tjvcci (mgr.14197) 185 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:27.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:27 smithi204 bash[20295]: cluster 2024-04-24T16:15:26.212109+0000 mgr.smithi178.tjvcci (mgr.14197) 185 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:27.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:27 smithi204 bash[20295]: audit 2024-04-24T16:15:26.848525+0000 mon.smithi178 (mon.0) 408 : audit [DBG] from='client.? 172.21.15.178:0/1991120307' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:27.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:27 smithi204 bash[20295]: audit 2024-04-24T16:15:26.848525+0000 mon.smithi178 (mon.0) 408 : audit [DBG] from='client.? 172.21.15.178:0/1991120307' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:27.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:27 smithi204 bash[20295]: audit 2024-04-24T16:15:27.384518+0000 mon.smithi178 (mon.0) 409 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:27.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:27 smithi204 bash[20295]: audit 2024-04-24T16:15:27.384518+0000 mon.smithi178 (mon.0) 409 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:28.402 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:15:29.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:29 smithi178 bash[18765]: cluster 2024-04-24T16:15:28.213085+0000 mgr.smithi178.tjvcci (mgr.14197) 186 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:29.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:29 smithi178 bash[18765]: cluster 2024-04-24T16:15:28.213085+0000 mgr.smithi178.tjvcci (mgr.14197) 186 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:29.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:29 smithi204 bash[20295]: cluster 2024-04-24T16:15:28.213085+0000 mgr.smithi178.tjvcci (mgr.14197) 186 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:29.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:29 smithi204 bash[20295]: cluster 2024-04-24T16:15:28.213085+0000 mgr.smithi178.tjvcci (mgr.14197) 186 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:31.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:31 smithi178 bash[18765]: cluster 2024-04-24T16:15:30.214081+0000 mgr.smithi178.tjvcci (mgr.14197) 187 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:31.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:31 smithi178 bash[18765]: cluster 2024-04-24T16:15:30.214081+0000 mgr.smithi178.tjvcci (mgr.14197) 187 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:31.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:31 smithi204 bash[20295]: cluster 2024-04-24T16:15:30.214081+0000 mgr.smithi178.tjvcci (mgr.14197) 187 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:31.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:31 smithi204 bash[20295]: cluster 2024-04-24T16:15:30.214081+0000 mgr.smithi178.tjvcci (mgr.14197) 187 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:33.176 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:15:33.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:33 smithi178 bash[18765]: cluster 2024-04-24T16:15:32.215054+0000 mgr.smithi178.tjvcci (mgr.14197) 188 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:33.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:33 smithi178 bash[18765]: cluster 2024-04-24T16:15:32.215054+0000 mgr.smithi178.tjvcci (mgr.14197) 188 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:33.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:33 smithi204 bash[20295]: cluster 2024-04-24T16:15:32.215054+0000 mgr.smithi178.tjvcci (mgr.14197) 188 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:33.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:33 smithi204 bash[20295]: cluster 2024-04-24T16:15:32.215054+0000 mgr.smithi178.tjvcci (mgr.14197) 188 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:34.448 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:15:35.056 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:15:35.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:35 smithi178 bash[18765]: cluster 2024-04-24T16:15:34.215654+0000 mgr.smithi178.tjvcci (mgr.14197) 189 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:35.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:35 smithi178 bash[18765]: cluster 2024-04-24T16:15:34.215654+0000 mgr.smithi178.tjvcci (mgr.14197) 189 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:35.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:35 smithi178 bash[18765]: audit 2024-04-24T16:15:34.451714+0000 mon.smithi178 (mon.0) 410 : audit [DBG] from='client.? 172.21.15.178:0/2693865782' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:35.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:35 smithi178 bash[18765]: audit 2024-04-24T16:15:34.451714+0000 mon.smithi178 (mon.0) 410 : audit [DBG] from='client.? 172.21.15.178:0/2693865782' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:35.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:35 smithi204 bash[20295]: cluster 2024-04-24T16:15:34.215654+0000 mgr.smithi178.tjvcci (mgr.14197) 189 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:35.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:35 smithi204 bash[20295]: cluster 2024-04-24T16:15:34.215654+0000 mgr.smithi178.tjvcci (mgr.14197) 189 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:35.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:35 smithi204 bash[20295]: audit 2024-04-24T16:15:34.451714+0000 mon.smithi178 (mon.0) 410 : audit [DBG] from='client.? 172.21.15.178:0/2693865782' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:35.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:35 smithi204 bash[20295]: audit 2024-04-24T16:15:34.451714+0000 mon.smithi178 (mon.0) 410 : audit [DBG] from='client.? 172.21.15.178:0/2693865782' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:36.057 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:15:37.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:37 smithi178 bash[18765]: cluster 2024-04-24T16:15:36.216589+0000 mgr.smithi178.tjvcci (mgr.14197) 190 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:37.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:37 smithi178 bash[18765]: cluster 2024-04-24T16:15:36.216589+0000 mgr.smithi178.tjvcci (mgr.14197) 190 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:37.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:37 smithi204 bash[20295]: cluster 2024-04-24T16:15:36.216589+0000 mgr.smithi178.tjvcci (mgr.14197) 190 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:37.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:37 smithi204 bash[20295]: cluster 2024-04-24T16:15:36.216589+0000 mgr.smithi178.tjvcci (mgr.14197) 190 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:39.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:39 smithi178 bash[18765]: cluster 2024-04-24T16:15:38.217622+0000 mgr.smithi178.tjvcci (mgr.14197) 191 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:39.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:39 smithi178 bash[18765]: cluster 2024-04-24T16:15:38.217622+0000 mgr.smithi178.tjvcci (mgr.14197) 191 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:39.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:39 smithi204 bash[20295]: cluster 2024-04-24T16:15:38.217622+0000 mgr.smithi178.tjvcci (mgr.14197) 191 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:39.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:39 smithi204 bash[20295]: cluster 2024-04-24T16:15:38.217622+0000 mgr.smithi178.tjvcci (mgr.14197) 191 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:40.825 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:15:41.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:41 smithi178 bash[18765]: cluster 2024-04-24T16:15:40.218732+0000 mgr.smithi178.tjvcci (mgr.14197) 192 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:41.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:41 smithi178 bash[18765]: cluster 2024-04-24T16:15:40.218732+0000 mgr.smithi178.tjvcci (mgr.14197) 192 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:41.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:41 smithi204 bash[20295]: cluster 2024-04-24T16:15:40.218732+0000 mgr.smithi178.tjvcci (mgr.14197) 192 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:41.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:41 smithi204 bash[20295]: cluster 2024-04-24T16:15:40.218732+0000 mgr.smithi178.tjvcci (mgr.14197) 192 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:41.998 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:15:42.604 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:15:42.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:42 smithi178 bash[18765]: audit 2024-04-24T16:15:42.001744+0000 mon.smithi178 (mon.0) 411 : audit [DBG] from='client.? 172.21.15.178:0/133832998' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:42.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:42 smithi178 bash[18765]: audit 2024-04-24T16:15:42.001744+0000 mon.smithi178 (mon.0) 411 : audit [DBG] from='client.? 172.21.15.178:0/133832998' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:42.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:42 smithi178 bash[18765]: audit 2024-04-24T16:15:42.384918+0000 mon.smithi178 (mon.0) 412 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:42.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:42 smithi178 bash[18765]: audit 2024-04-24T16:15:42.384918+0000 mon.smithi178 (mon.0) 412 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:42.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:42 smithi204 bash[20295]: audit 2024-04-24T16:15:42.001744+0000 mon.smithi178 (mon.0) 411 : audit [DBG] from='client.? 172.21.15.178:0/133832998' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:42.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:42 smithi204 bash[20295]: audit 2024-04-24T16:15:42.001744+0000 mon.smithi178 (mon.0) 411 : audit [DBG] from='client.? 172.21.15.178:0/133832998' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:42.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:42 smithi204 bash[20295]: audit 2024-04-24T16:15:42.384918+0000 mon.smithi178 (mon.0) 412 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:42.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:42 smithi204 bash[20295]: audit 2024-04-24T16:15:42.384918+0000 mon.smithi178 (mon.0) 412 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:43.605 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:15:43.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:43 smithi178 bash[18765]: cluster 2024-04-24T16:15:42.219776+0000 mgr.smithi178.tjvcci (mgr.14197) 193 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:43.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:43 smithi178 bash[18765]: cluster 2024-04-24T16:15:42.219776+0000 mgr.smithi178.tjvcci (mgr.14197) 193 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:43.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:43 smithi204 bash[20295]: cluster 2024-04-24T16:15:42.219776+0000 mgr.smithi178.tjvcci (mgr.14197) 193 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:43.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:43 smithi204 bash[20295]: cluster 2024-04-24T16:15:42.219776+0000 mgr.smithi178.tjvcci (mgr.14197) 193 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:45.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:45 smithi178 bash[18765]: cluster 2024-04-24T16:15:44.220873+0000 mgr.smithi178.tjvcci (mgr.14197) 194 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:45.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:45 smithi178 bash[18765]: cluster 2024-04-24T16:15:44.220873+0000 mgr.smithi178.tjvcci (mgr.14197) 194 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:45.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:45 smithi204 bash[20295]: cluster 2024-04-24T16:15:44.220873+0000 mgr.smithi178.tjvcci (mgr.14197) 194 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:45.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:45 smithi204 bash[20295]: cluster 2024-04-24T16:15:44.220873+0000 mgr.smithi178.tjvcci (mgr.14197) 194 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:47.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:47 smithi178 bash[18765]: cluster 2024-04-24T16:15:46.222026+0000 mgr.smithi178.tjvcci (mgr.14197) 195 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:47.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:47 smithi178 bash[18765]: cluster 2024-04-24T16:15:46.222026+0000 mgr.smithi178.tjvcci (mgr.14197) 195 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:47.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:47 smithi204 bash[20295]: cluster 2024-04-24T16:15:46.222026+0000 mgr.smithi178.tjvcci (mgr.14197) 195 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:47.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:47 smithi204 bash[20295]: cluster 2024-04-24T16:15:46.222026+0000 mgr.smithi178.tjvcci (mgr.14197) 195 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:48.372 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:15:49.580 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:15:49.813 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:49 smithi178 bash[18765]: cluster 2024-04-24T16:15:48.223163+0000 mgr.smithi178.tjvcci (mgr.14197) 196 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:49.813 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:49 smithi178 bash[18765]: cluster 2024-04-24T16:15:48.223163+0000 mgr.smithi178.tjvcci (mgr.14197) 196 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:49.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:49 smithi204 bash[20295]: cluster 2024-04-24T16:15:48.223163+0000 mgr.smithi178.tjvcci (mgr.14197) 196 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:49.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:49 smithi204 bash[20295]: cluster 2024-04-24T16:15:48.223163+0000 mgr.smithi178.tjvcci (mgr.14197) 196 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:50.249 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:15:50.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:50 smithi178 bash[18765]: audit 2024-04-24T16:15:49.583937+0000 mon.smithi178 (mon.0) 413 : audit [DBG] from='client.? 172.21.15.178:0/3711638041' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:50.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:50 smithi178 bash[18765]: audit 2024-04-24T16:15:49.583937+0000 mon.smithi178 (mon.0) 413 : audit [DBG] from='client.? 172.21.15.178:0/3711638041' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:50.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:50 smithi204 bash[20295]: audit 2024-04-24T16:15:49.583937+0000 mon.smithi178 (mon.0) 413 : audit [DBG] from='client.? 172.21.15.178:0/3711638041' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:50.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:50 smithi204 bash[20295]: audit 2024-04-24T16:15:49.583937+0000 mon.smithi178 (mon.0) 413 : audit [DBG] from='client.? 172.21.15.178:0/3711638041' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:51.250 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:15:51.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:51 smithi178 bash[18765]: cluster 2024-04-24T16:15:50.224301+0000 mgr.smithi178.tjvcci (mgr.14197) 197 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:51.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:51 smithi178 bash[18765]: cluster 2024-04-24T16:15:50.224301+0000 mgr.smithi178.tjvcci (mgr.14197) 197 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:51.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:51 smithi204 bash[20295]: cluster 2024-04-24T16:15:50.224301+0000 mgr.smithi178.tjvcci (mgr.14197) 197 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:51.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:51 smithi204 bash[20295]: cluster 2024-04-24T16:15:50.224301+0000 mgr.smithi178.tjvcci (mgr.14197) 197 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:53.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:53 smithi178 bash[18765]: cluster 2024-04-24T16:15:52.231609+0000 mgr.smithi178.tjvcci (mgr.14197) 198 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:53.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:53 smithi178 bash[18765]: cluster 2024-04-24T16:15:52.231609+0000 mgr.smithi178.tjvcci (mgr.14197) 198 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:53.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:53 smithi204 bash[20295]: cluster 2024-04-24T16:15:52.231609+0000 mgr.smithi178.tjvcci (mgr.14197) 198 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:53.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:53 smithi204 bash[20295]: cluster 2024-04-24T16:15:52.231609+0000 mgr.smithi178.tjvcci (mgr.14197) 198 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:55.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:55 smithi178 bash[18765]: cluster 2024-04-24T16:15:54.232578+0000 mgr.smithi178.tjvcci (mgr.14197) 199 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:55.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:55 smithi178 bash[18765]: cluster 2024-04-24T16:15:54.232578+0000 mgr.smithi178.tjvcci (mgr.14197) 199 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:55.882 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:55 smithi204 bash[20295]: cluster 2024-04-24T16:15:54.232578+0000 mgr.smithi178.tjvcci (mgr.14197) 199 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:55.882 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:55 smithi204 bash[20295]: cluster 2024-04-24T16:15:54.232578+0000 mgr.smithi178.tjvcci (mgr.14197) 199 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:56.017 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:15:56.774 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:56 smithi178 bash[18765]: audit 2024-04-24T16:15:56.295977+0000 mon.smithi178 (mon.0) 414 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:15:56.775 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:56 smithi178 bash[18765]: audit 2024-04-24T16:15:56.295977+0000 mon.smithi178 (mon.0) 414 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:15:56.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:56 smithi204 bash[20295]: audit 2024-04-24T16:15:56.295977+0000 mon.smithi178 (mon.0) 414 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:15:56.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:56 smithi204 bash[20295]: audit 2024-04-24T16:15:56.295977+0000 mon.smithi178 (mon.0) 414 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:15:57.172 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:15:57.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:57 smithi178 bash[18765]: cluster 2024-04-24T16:15:56.233577+0000 mgr.smithi178.tjvcci (mgr.14197) 200 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:57.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:57 smithi178 bash[18765]: cluster 2024-04-24T16:15:56.233577+0000 mgr.smithi178.tjvcci (mgr.14197) 200 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:57.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:57 smithi178 bash[18765]: audit 2024-04-24T16:15:57.176059+0000 mon.smithi178 (mon.0) 415 : audit [DBG] from='client.? 172.21.15.178:0/4251988720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:57.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:57 smithi178 bash[18765]: audit 2024-04-24T16:15:57.176059+0000 mon.smithi178 (mon.0) 415 : audit [DBG] from='client.? 172.21.15.178:0/4251988720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:57.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:57 smithi178 bash[18765]: audit 2024-04-24T16:15:57.384996+0000 mon.smithi178 (mon.0) 416 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:57.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:57 smithi178 bash[18765]: audit 2024-04-24T16:15:57.384996+0000 mon.smithi178 (mon.0) 416 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:57.834 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:15:57.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:57 smithi204 bash[20295]: cluster 2024-04-24T16:15:56.233577+0000 mgr.smithi178.tjvcci (mgr.14197) 200 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:57.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:57 smithi204 bash[20295]: cluster 2024-04-24T16:15:56.233577+0000 mgr.smithi178.tjvcci (mgr.14197) 200 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:57.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:57 smithi204 bash[20295]: audit 2024-04-24T16:15:57.176059+0000 mon.smithi178 (mon.0) 415 : audit [DBG] from='client.? 172.21.15.178:0/4251988720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:57.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:57 smithi204 bash[20295]: audit 2024-04-24T16:15:57.176059+0000 mon.smithi178 (mon.0) 415 : audit [DBG] from='client.? 172.21.15.178:0/4251988720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:15:57.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:57 smithi204 bash[20295]: audit 2024-04-24T16:15:57.384996+0000 mon.smithi178 (mon.0) 416 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:57.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:57 smithi204 bash[20295]: audit 2024-04-24T16:15:57.384996+0000 mon.smithi178 (mon.0) 416 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:15:58.835 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:15:59.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:59 smithi178 bash[18765]: cluster 2024-04-24T16:15:58.234606+0000 mgr.smithi178.tjvcci (mgr.14197) 201 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:59.836 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:15:59 smithi178 bash[18765]: cluster 2024-04-24T16:15:58.234606+0000 mgr.smithi178.tjvcci (mgr.14197) 201 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:59.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:59 smithi204 bash[20295]: cluster 2024-04-24T16:15:58.234606+0000 mgr.smithi178.tjvcci (mgr.14197) 201 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:15:59.881 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:15:59 smithi204 bash[20295]: cluster 2024-04-24T16:15:58.234606+0000 mgr.smithi178.tjvcci (mgr.14197) 201 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:01.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:01 smithi178 bash[18765]: cluster 2024-04-24T16:16:00.235595+0000 mgr.smithi178.tjvcci (mgr.14197) 202 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:01.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:01 smithi178 bash[18765]: cluster 2024-04-24T16:16:00.235595+0000 mgr.smithi178.tjvcci (mgr.14197) 202 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:01.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:01 smithi204 bash[20295]: cluster 2024-04-24T16:16:00.235595+0000 mgr.smithi178.tjvcci (mgr.14197) 202 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:01.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:01 smithi204 bash[20295]: cluster 2024-04-24T16:16:00.235595+0000 mgr.smithi178.tjvcci (mgr.14197) 202 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:02.913 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:16:02.919 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:02 smithi178 bash[18765]: audit 2024-04-24T16:16:01.744114+0000 mon.smithi178 (mon.0) 417 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:16:02.919 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:02 smithi178 bash[18765]: audit 2024-04-24T16:16:01.744114+0000 mon.smithi178 (mon.0) 417 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:16:03.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:02 smithi204 bash[20295]: audit 2024-04-24T16:16:01.744114+0000 mon.smithi178 (mon.0) 417 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:16:03.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:02 smithi204 bash[20295]: audit 2024-04-24T16:16:01.744114+0000 mon.smithi178 (mon.0) 417 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:16:04.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:03 smithi178 bash[18765]: cluster 2024-04-24T16:16:02.236533+0000 mgr.smithi178.tjvcci (mgr.14197) 203 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:04.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:03 smithi178 bash[18765]: cluster 2024-04-24T16:16:02.236533+0000 mgr.smithi178.tjvcci (mgr.14197) 203 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:04.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:03 smithi204 bash[20295]: cluster 2024-04-24T16:16:02.236533+0000 mgr.smithi178.tjvcci (mgr.14197) 203 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:04.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:03 smithi204 bash[20295]: cluster 2024-04-24T16:16:02.236533+0000 mgr.smithi178.tjvcci (mgr.14197) 203 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:04.231 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:16:04.964 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:16:05.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:04 smithi178 bash[18765]: audit 2024-04-24T16:16:04.234929+0000 mon.smithi178 (mon.0) 418 : audit [DBG] from='client.? 172.21.15.178:0/1743429921' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:05.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:04 smithi178 bash[18765]: audit 2024-04-24T16:16:04.234929+0000 mon.smithi178 (mon.0) 418 : audit [DBG] from='client.? 172.21.15.178:0/1743429921' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:05.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:04 smithi204 bash[20295]: audit 2024-04-24T16:16:04.234929+0000 mon.smithi178 (mon.0) 418 : audit [DBG] from='client.? 172.21.15.178:0/1743429921' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:05.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:04 smithi204 bash[20295]: audit 2024-04-24T16:16:04.234929+0000 mon.smithi178 (mon.0) 418 : audit [DBG] from='client.? 172.21.15.178:0/1743429921' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:05.965 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:16:06.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:05 smithi178 bash[18765]: cluster 2024-04-24T16:16:04.237156+0000 mgr.smithi178.tjvcci (mgr.14197) 204 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:06.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:05 smithi178 bash[18765]: cluster 2024-04-24T16:16:04.237156+0000 mgr.smithi178.tjvcci (mgr.14197) 204 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:06.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:05 smithi204 bash[20295]: cluster 2024-04-24T16:16:04.237156+0000 mgr.smithi178.tjvcci (mgr.14197) 204 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:06.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:05 smithi204 bash[20295]: cluster 2024-04-24T16:16:04.237156+0000 mgr.smithi178.tjvcci (mgr.14197) 204 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:08.024 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:07 smithi204 bash[20295]: cluster 2024-04-24T16:16:06.237968+0000 mgr.smithi178.tjvcci (mgr.14197) 205 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:08.024 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:07 smithi204 bash[20295]: cluster 2024-04-24T16:16:06.237968+0000 mgr.smithi178.tjvcci (mgr.14197) 205 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:08.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:07 smithi178 bash[18765]: cluster 2024-04-24T16:16:06.237968+0000 mgr.smithi178.tjvcci (mgr.14197) 205 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:08.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:07 smithi178 bash[18765]: cluster 2024-04-24T16:16:06.237968+0000 mgr.smithi178.tjvcci (mgr.14197) 205 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:10.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:09 smithi178 bash[18765]: cluster 2024-04-24T16:16:08.238658+0000 mgr.smithi178.tjvcci (mgr.14197) 206 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:10.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:09 smithi178 bash[18765]: cluster 2024-04-24T16:16:08.238658+0000 mgr.smithi178.tjvcci (mgr.14197) 206 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:10.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:09 smithi178 bash[18765]: audit 2024-04-24T16:16:09.260414+0000 mon.smithi178 (mon.0) 419 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:16:10.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:09 smithi178 bash[18765]: audit 2024-04-24T16:16:09.260414+0000 mon.smithi178 (mon.0) 419 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:16:10.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:09 smithi178 bash[18765]: audit 2024-04-24T16:16:09.262447+0000 mon.smithi178 (mon.0) 420 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:16:10.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:09 smithi178 bash[18765]: audit 2024-04-24T16:16:09.262447+0000 mon.smithi178 (mon.0) 420 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:16:10.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:09 smithi178 bash[18765]: audit 2024-04-24T16:16:09.274467+0000 mon.smithi178 (mon.0) 421 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:16:10.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:09 smithi178 bash[18765]: audit 2024-04-24T16:16:09.274467+0000 mon.smithi178 (mon.0) 421 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:16:10.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:09 smithi178 bash[18765]: audit 2024-04-24T16:16:09.282506+0000 mon.smithi178 (mon.0) 422 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:16:10.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:09 smithi178 bash[18765]: audit 2024-04-24T16:16:09.282506+0000 mon.smithi178 (mon.0) 422 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:16:10.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:09 smithi204 bash[20295]: cluster 2024-04-24T16:16:08.238658+0000 mgr.smithi178.tjvcci (mgr.14197) 206 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:10.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:09 smithi204 bash[20295]: cluster 2024-04-24T16:16:08.238658+0000 mgr.smithi178.tjvcci (mgr.14197) 206 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:10.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:09 smithi204 bash[20295]: audit 2024-04-24T16:16:09.260414+0000 mon.smithi178 (mon.0) 419 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:16:10.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:09 smithi204 bash[20295]: audit 2024-04-24T16:16:09.260414+0000 mon.smithi178 (mon.0) 419 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:16:10.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:09 smithi204 bash[20295]: audit 2024-04-24T16:16:09.262447+0000 mon.smithi178 (mon.0) 420 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:16:10.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:09 smithi204 bash[20295]: audit 2024-04-24T16:16:09.262447+0000 mon.smithi178 (mon.0) 420 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:16:10.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:09 smithi204 bash[20295]: audit 2024-04-24T16:16:09.274467+0000 mon.smithi178 (mon.0) 421 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:16:10.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:09 smithi204 bash[20295]: audit 2024-04-24T16:16:09.274467+0000 mon.smithi178 (mon.0) 421 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:16:10.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:09 smithi204 bash[20295]: audit 2024-04-24T16:16:09.282506+0000 mon.smithi178 (mon.0) 422 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:16:10.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:09 smithi204 bash[20295]: audit 2024-04-24T16:16:09.282506+0000 mon.smithi178 (mon.0) 422 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:16:10.741 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:16:11.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:10 smithi178 bash[18765]: cluster 2024-04-24T16:16:09.265386+0000 mgr.smithi178.tjvcci (mgr.14197) 207 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:11.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:10 smithi178 bash[18765]: cluster 2024-04-24T16:16:09.265386+0000 mgr.smithi178.tjvcci (mgr.14197) 207 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:11.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:10 smithi178 bash[18765]: cluster 2024-04-24T16:16:09.266722+0000 mgr.smithi178.tjvcci (mgr.14197) 208 : cluster [DBG] pgmap v155: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:11.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:10 smithi178 bash[18765]: cluster 2024-04-24T16:16:09.266722+0000 mgr.smithi178.tjvcci (mgr.14197) 208 : cluster [DBG] pgmap v155: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:11.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:10 smithi204 bash[20295]: cluster 2024-04-24T16:16:09.265386+0000 mgr.smithi178.tjvcci (mgr.14197) 207 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:11.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:10 smithi204 bash[20295]: cluster 2024-04-24T16:16:09.265386+0000 mgr.smithi178.tjvcci (mgr.14197) 207 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:11.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:10 smithi204 bash[20295]: cluster 2024-04-24T16:16:09.266722+0000 mgr.smithi178.tjvcci (mgr.14197) 208 : cluster [DBG] pgmap v155: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:11.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:10 smithi204 bash[20295]: cluster 2024-04-24T16:16:09.266722+0000 mgr.smithi178.tjvcci (mgr.14197) 208 : cluster [DBG] pgmap v155: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:12.049 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:16:12.628 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:16:13.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:12 smithi178 bash[18765]: cluster 2024-04-24T16:16:11.267685+0000 mgr.smithi178.tjvcci (mgr.14197) 209 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:13.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:12 smithi178 bash[18765]: cluster 2024-04-24T16:16:11.267685+0000 mgr.smithi178.tjvcci (mgr.14197) 209 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:13.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:12 smithi178 bash[18765]: audit 2024-04-24T16:16:12.052427+0000 mon.smithi178 (mon.0) 423 : audit [DBG] from='client.? 172.21.15.178:0/2941222879' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:13.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:12 smithi178 bash[18765]: audit 2024-04-24T16:16:12.052427+0000 mon.smithi178 (mon.0) 423 : audit [DBG] from='client.? 172.21.15.178:0/2941222879' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:13.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:12 smithi178 bash[18765]: audit 2024-04-24T16:16:12.385614+0000 mon.smithi178 (mon.0) 424 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:13.086 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:12 smithi178 bash[18765]: audit 2024-04-24T16:16:12.385614+0000 mon.smithi178 (mon.0) 424 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:13.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:12 smithi204 bash[20295]: cluster 2024-04-24T16:16:11.267685+0000 mgr.smithi178.tjvcci (mgr.14197) 209 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:13.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:12 smithi204 bash[20295]: cluster 2024-04-24T16:16:11.267685+0000 mgr.smithi178.tjvcci (mgr.14197) 209 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:13.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:12 smithi204 bash[20295]: audit 2024-04-24T16:16:12.052427+0000 mon.smithi178 (mon.0) 423 : audit [DBG] from='client.? 172.21.15.178:0/2941222879' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:13.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:12 smithi204 bash[20295]: audit 2024-04-24T16:16:12.052427+0000 mon.smithi178 (mon.0) 423 : audit [DBG] from='client.? 172.21.15.178:0/2941222879' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:13.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:12 smithi204 bash[20295]: audit 2024-04-24T16:16:12.385614+0000 mon.smithi178 (mon.0) 424 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:13.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:12 smithi204 bash[20295]: audit 2024-04-24T16:16:12.385614+0000 mon.smithi178 (mon.0) 424 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:13.629 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:16:15.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:14 smithi178 bash[18765]: cluster 2024-04-24T16:16:13.268634+0000 mgr.smithi178.tjvcci (mgr.14197) 210 : cluster [DBG] pgmap v157: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:15.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:14 smithi178 bash[18765]: cluster 2024-04-24T16:16:13.268634+0000 mgr.smithi178.tjvcci (mgr.14197) 210 : cluster [DBG] pgmap v157: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:15.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:14 smithi204 bash[20295]: cluster 2024-04-24T16:16:13.268634+0000 mgr.smithi178.tjvcci (mgr.14197) 210 : cluster [DBG] pgmap v157: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:15.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:14 smithi204 bash[20295]: cluster 2024-04-24T16:16:13.268634+0000 mgr.smithi178.tjvcci (mgr.14197) 210 : cluster [DBG] pgmap v157: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:17.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:16 smithi178 bash[18765]: cluster 2024-04-24T16:16:15.269677+0000 mgr.smithi178.tjvcci (mgr.14197) 211 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:17.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:16 smithi178 bash[18765]: cluster 2024-04-24T16:16:15.269677+0000 mgr.smithi178.tjvcci (mgr.14197) 211 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:17.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:16 smithi204 bash[20295]: cluster 2024-04-24T16:16:15.269677+0000 mgr.smithi178.tjvcci (mgr.14197) 211 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:17.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:16 smithi204 bash[20295]: cluster 2024-04-24T16:16:15.269677+0000 mgr.smithi178.tjvcci (mgr.14197) 211 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:18.400 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:16:19.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:18 smithi178 bash[18765]: cluster 2024-04-24T16:16:17.270615+0000 mgr.smithi178.tjvcci (mgr.14197) 212 : cluster [DBG] pgmap v159: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:19.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:18 smithi178 bash[18765]: cluster 2024-04-24T16:16:17.270615+0000 mgr.smithi178.tjvcci (mgr.14197) 212 : cluster [DBG] pgmap v159: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:19.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:18 smithi204 bash[20295]: cluster 2024-04-24T16:16:17.270615+0000 mgr.smithi178.tjvcci (mgr.14197) 212 : cluster [DBG] pgmap v159: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:19.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:18 smithi204 bash[20295]: cluster 2024-04-24T16:16:17.270615+0000 mgr.smithi178.tjvcci (mgr.14197) 212 : cluster [DBG] pgmap v159: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:19.765 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:16:20.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:19 smithi178 bash[18765]: audit 2024-04-24T16:16:19.769713+0000 mon.smithi178 (mon.0) 425 : audit [DBG] from='client.? 172.21.15.178:0/3155474307' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:20.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:19 smithi178 bash[18765]: audit 2024-04-24T16:16:19.769713+0000 mon.smithi178 (mon.0) 425 : audit [DBG] from='client.? 172.21.15.178:0/3155474307' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:20.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:19 smithi204 bash[20295]: audit 2024-04-24T16:16:19.769713+0000 mon.smithi178 (mon.0) 425 : audit [DBG] from='client.? 172.21.15.178:0/3155474307' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:20.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:19 smithi204 bash[20295]: audit 2024-04-24T16:16:19.769713+0000 mon.smithi178 (mon.0) 425 : audit [DBG] from='client.? 172.21.15.178:0/3155474307' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:20.368 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:16:21.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:20 smithi178 bash[18765]: cluster 2024-04-24T16:16:19.271609+0000 mgr.smithi178.tjvcci (mgr.14197) 213 : cluster [DBG] pgmap v160: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:21.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:20 smithi178 bash[18765]: cluster 2024-04-24T16:16:19.271609+0000 mgr.smithi178.tjvcci (mgr.14197) 213 : cluster [DBG] pgmap v160: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:21.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:20 smithi204 bash[20295]: cluster 2024-04-24T16:16:19.271609+0000 mgr.smithi178.tjvcci (mgr.14197) 213 : cluster [DBG] pgmap v160: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:21.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:20 smithi204 bash[20295]: cluster 2024-04-24T16:16:19.271609+0000 mgr.smithi178.tjvcci (mgr.14197) 213 : cluster [DBG] pgmap v160: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:21.369 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:16:23.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:22 smithi178 bash[18765]: cluster 2024-04-24T16:16:21.272648+0000 mgr.smithi178.tjvcci (mgr.14197) 214 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:23.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:22 smithi178 bash[18765]: cluster 2024-04-24T16:16:21.272648+0000 mgr.smithi178.tjvcci (mgr.14197) 214 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:23.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:22 smithi204 bash[20295]: cluster 2024-04-24T16:16:21.272648+0000 mgr.smithi178.tjvcci (mgr.14197) 214 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:23.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:22 smithi204 bash[20295]: cluster 2024-04-24T16:16:21.272648+0000 mgr.smithi178.tjvcci (mgr.14197) 214 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:25.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:24 smithi178 bash[18765]: cluster 2024-04-24T16:16:23.273691+0000 mgr.smithi178.tjvcci (mgr.14197) 215 : cluster [DBG] pgmap v162: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:25.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:24 smithi178 bash[18765]: cluster 2024-04-24T16:16:23.273691+0000 mgr.smithi178.tjvcci (mgr.14197) 215 : cluster [DBG] pgmap v162: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:25.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:24 smithi204 bash[20295]: cluster 2024-04-24T16:16:23.273691+0000 mgr.smithi178.tjvcci (mgr.14197) 215 : cluster [DBG] pgmap v162: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:25.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:24 smithi204 bash[20295]: cluster 2024-04-24T16:16:23.273691+0000 mgr.smithi178.tjvcci (mgr.14197) 215 : cluster [DBG] pgmap v162: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:26.132 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:16:27.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:26 smithi178 bash[18765]: cluster 2024-04-24T16:16:25.274720+0000 mgr.smithi178.tjvcci (mgr.14197) 216 : cluster [DBG] pgmap v163: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:27.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:26 smithi178 bash[18765]: cluster 2024-04-24T16:16:25.274720+0000 mgr.smithi178.tjvcci (mgr.14197) 216 : cluster [DBG] pgmap v163: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:27.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:26 smithi204 bash[20295]: cluster 2024-04-24T16:16:25.274720+0000 mgr.smithi178.tjvcci (mgr.14197) 216 : cluster [DBG] pgmap v163: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:27.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:26 smithi204 bash[20295]: cluster 2024-04-24T16:16:25.274720+0000 mgr.smithi178.tjvcci (mgr.14197) 216 : cluster [DBG] pgmap v163: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:27.267 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:16:27.916 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:16:28.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:27 smithi178 bash[18765]: audit 2024-04-24T16:16:27.271432+0000 mon.smithi178 (mon.0) 426 : audit [DBG] from='client.? 172.21.15.178:0/1410774064' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:28.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:27 smithi178 bash[18765]: audit 2024-04-24T16:16:27.271432+0000 mon.smithi178 (mon.0) 426 : audit [DBG] from='client.? 172.21.15.178:0/1410774064' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:28.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:27 smithi178 bash[18765]: audit 2024-04-24T16:16:27.385122+0000 mon.smithi178 (mon.0) 427 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:28.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:27 smithi178 bash[18765]: audit 2024-04-24T16:16:27.385122+0000 mon.smithi178 (mon.0) 427 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:28.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:27 smithi204 bash[20295]: audit 2024-04-24T16:16:27.271432+0000 mon.smithi178 (mon.0) 426 : audit [DBG] from='client.? 172.21.15.178:0/1410774064' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:28.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:27 smithi204 bash[20295]: audit 2024-04-24T16:16:27.271432+0000 mon.smithi178 (mon.0) 426 : audit [DBG] from='client.? 172.21.15.178:0/1410774064' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:28.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:27 smithi204 bash[20295]: audit 2024-04-24T16:16:27.385122+0000 mon.smithi178 (mon.0) 427 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:28.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:27 smithi204 bash[20295]: audit 2024-04-24T16:16:27.385122+0000 mon.smithi178 (mon.0) 427 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:28.917 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:16:29.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:28 smithi178 bash[18765]: cluster 2024-04-24T16:16:27.275306+0000 mgr.smithi178.tjvcci (mgr.14197) 217 : cluster [DBG] pgmap v164: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:29.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:28 smithi178 bash[18765]: cluster 2024-04-24T16:16:27.275306+0000 mgr.smithi178.tjvcci (mgr.14197) 217 : cluster [DBG] pgmap v164: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:29.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:28 smithi204 bash[20295]: cluster 2024-04-24T16:16:27.275306+0000 mgr.smithi178.tjvcci (mgr.14197) 217 : cluster [DBG] pgmap v164: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:29.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:28 smithi204 bash[20295]: cluster 2024-04-24T16:16:27.275306+0000 mgr.smithi178.tjvcci (mgr.14197) 217 : cluster [DBG] pgmap v164: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:31.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:30 smithi178 bash[18765]: cluster 2024-04-24T16:16:29.276363+0000 mgr.smithi178.tjvcci (mgr.14197) 218 : cluster [DBG] pgmap v165: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:31.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:30 smithi178 bash[18765]: cluster 2024-04-24T16:16:29.276363+0000 mgr.smithi178.tjvcci (mgr.14197) 218 : cluster [DBG] pgmap v165: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:31.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:30 smithi204 bash[20295]: cluster 2024-04-24T16:16:29.276363+0000 mgr.smithi178.tjvcci (mgr.14197) 218 : cluster [DBG] pgmap v165: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:31.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:30 smithi204 bash[20295]: cluster 2024-04-24T16:16:29.276363+0000 mgr.smithi178.tjvcci (mgr.14197) 218 : cluster [DBG] pgmap v165: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:33.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:32 smithi178 bash[18765]: cluster 2024-04-24T16:16:31.277518+0000 mgr.smithi178.tjvcci (mgr.14197) 219 : cluster [DBG] pgmap v166: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:33.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:32 smithi178 bash[18765]: cluster 2024-04-24T16:16:31.277518+0000 mgr.smithi178.tjvcci (mgr.14197) 219 : cluster [DBG] pgmap v166: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:33.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:32 smithi204 bash[20295]: cluster 2024-04-24T16:16:31.277518+0000 mgr.smithi178.tjvcci (mgr.14197) 219 : cluster [DBG] pgmap v166: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:33.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:32 smithi204 bash[20295]: cluster 2024-04-24T16:16:31.277518+0000 mgr.smithi178.tjvcci (mgr.14197) 219 : cluster [DBG] pgmap v166: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:33.680 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:16:34.928 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:16:35.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:34 smithi178 bash[18765]: cluster 2024-04-24T16:16:33.278574+0000 mgr.smithi178.tjvcci (mgr.14197) 220 : cluster [DBG] pgmap v167: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:35.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:34 smithi178 bash[18765]: cluster 2024-04-24T16:16:33.278574+0000 mgr.smithi178.tjvcci (mgr.14197) 220 : cluster [DBG] pgmap v167: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:35.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:34 smithi204 bash[20295]: cluster 2024-04-24T16:16:33.278574+0000 mgr.smithi178.tjvcci (mgr.14197) 220 : cluster [DBG] pgmap v167: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:35.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:34 smithi204 bash[20295]: cluster 2024-04-24T16:16:33.278574+0000 mgr.smithi178.tjvcci (mgr.14197) 220 : cluster [DBG] pgmap v167: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:35.594 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:16:36.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:35 smithi178 bash[18765]: audit 2024-04-24T16:16:34.933073+0000 mon.smithi178 (mon.0) 428 : audit [DBG] from='client.? 172.21.15.178:0/3079101988' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:36.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:35 smithi178 bash[18765]: audit 2024-04-24T16:16:34.933073+0000 mon.smithi178 (mon.0) 428 : audit [DBG] from='client.? 172.21.15.178:0/3079101988' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:36.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:35 smithi204 bash[20295]: audit 2024-04-24T16:16:34.933073+0000 mon.smithi178 (mon.0) 428 : audit [DBG] from='client.? 172.21.15.178:0/3079101988' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:36.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:35 smithi204 bash[20295]: audit 2024-04-24T16:16:34.933073+0000 mon.smithi178 (mon.0) 428 : audit [DBG] from='client.? 172.21.15.178:0/3079101988' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:36.595 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:16:37.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:36 smithi178 bash[18765]: cluster 2024-04-24T16:16:35.279518+0000 mgr.smithi178.tjvcci (mgr.14197) 221 : cluster [DBG] pgmap v168: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:37.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:36 smithi178 bash[18765]: cluster 2024-04-24T16:16:35.279518+0000 mgr.smithi178.tjvcci (mgr.14197) 221 : cluster [DBG] pgmap v168: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:37.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:36 smithi204 bash[20295]: cluster 2024-04-24T16:16:35.279518+0000 mgr.smithi178.tjvcci (mgr.14197) 221 : cluster [DBG] pgmap v168: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:37.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:36 smithi204 bash[20295]: cluster 2024-04-24T16:16:35.279518+0000 mgr.smithi178.tjvcci (mgr.14197) 221 : cluster [DBG] pgmap v168: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:39.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:38 smithi178 bash[18765]: cluster 2024-04-24T16:16:37.280631+0000 mgr.smithi178.tjvcci (mgr.14197) 222 : cluster [DBG] pgmap v169: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:39.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:38 smithi178 bash[18765]: cluster 2024-04-24T16:16:37.280631+0000 mgr.smithi178.tjvcci (mgr.14197) 222 : cluster [DBG] pgmap v169: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:39.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:38 smithi204 bash[20295]: cluster 2024-04-24T16:16:37.280631+0000 mgr.smithi178.tjvcci (mgr.14197) 222 : cluster [DBG] pgmap v169: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:39.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:38 smithi204 bash[20295]: cluster 2024-04-24T16:16:37.280631+0000 mgr.smithi178.tjvcci (mgr.14197) 222 : cluster [DBG] pgmap v169: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:41.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:40 smithi204 bash[20295]: cluster 2024-04-24T16:16:39.281675+0000 mgr.smithi178.tjvcci (mgr.14197) 223 : cluster [DBG] pgmap v170: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:41.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:40 smithi204 bash[20295]: cluster 2024-04-24T16:16:39.281675+0000 mgr.smithi178.tjvcci (mgr.14197) 223 : cluster [DBG] pgmap v170: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:41.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:40 smithi178 bash[18765]: cluster 2024-04-24T16:16:39.281675+0000 mgr.smithi178.tjvcci (mgr.14197) 223 : cluster [DBG] pgmap v170: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:41.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:40 smithi178 bash[18765]: cluster 2024-04-24T16:16:39.281675+0000 mgr.smithi178.tjvcci (mgr.14197) 223 : cluster [DBG] pgmap v170: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:41.356 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:16:42.556 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:16:43.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:42 smithi204 bash[20295]: cluster 2024-04-24T16:16:41.282614+0000 mgr.smithi178.tjvcci (mgr.14197) 224 : cluster [DBG] pgmap v171: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:43.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:42 smithi204 bash[20295]: cluster 2024-04-24T16:16:41.282614+0000 mgr.smithi178.tjvcci (mgr.14197) 224 : cluster [DBG] pgmap v171: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:43.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:42 smithi204 bash[20295]: audit 2024-04-24T16:16:42.386219+0000 mon.smithi178 (mon.0) 429 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:43.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:42 smithi204 bash[20295]: audit 2024-04-24T16:16:42.386219+0000 mon.smithi178 (mon.0) 429 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:43.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:42 smithi204 bash[20295]: audit 2024-04-24T16:16:42.561078+0000 mon.smithi178 (mon.0) 430 : audit [DBG] from='client.? 172.21.15.178:0/2155134052' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:43.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:42 smithi204 bash[20295]: audit 2024-04-24T16:16:42.561078+0000 mon.smithi178 (mon.0) 430 : audit [DBG] from='client.? 172.21.15.178:0/2155134052' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:43.206 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:42 smithi178 bash[18765]: cluster 2024-04-24T16:16:41.282614+0000 mgr.smithi178.tjvcci (mgr.14197) 224 : cluster [DBG] pgmap v171: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:43.206 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:42 smithi178 bash[18765]: cluster 2024-04-24T16:16:41.282614+0000 mgr.smithi178.tjvcci (mgr.14197) 224 : cluster [DBG] pgmap v171: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:43.206 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:42 smithi178 bash[18765]: audit 2024-04-24T16:16:42.386219+0000 mon.smithi178 (mon.0) 429 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:43.206 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:42 smithi178 bash[18765]: audit 2024-04-24T16:16:42.386219+0000 mon.smithi178 (mon.0) 429 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:43.206 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:42 smithi178 bash[18765]: audit 2024-04-24T16:16:42.561078+0000 mon.smithi178 (mon.0) 430 : audit [DBG] from='client.? 172.21.15.178:0/2155134052' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:43.206 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:42 smithi178 bash[18765]: audit 2024-04-24T16:16:42.561078+0000 mon.smithi178 (mon.0) 430 : audit [DBG] from='client.? 172.21.15.178:0/2155134052' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:43.207 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:16:44.208 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:16:45.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:44 smithi204 bash[20295]: cluster 2024-04-24T16:16:43.283698+0000 mgr.smithi178.tjvcci (mgr.14197) 225 : cluster [DBG] pgmap v172: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:45.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:44 smithi204 bash[20295]: cluster 2024-04-24T16:16:43.283698+0000 mgr.smithi178.tjvcci (mgr.14197) 225 : cluster [DBG] pgmap v172: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:45.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:44 smithi178 bash[18765]: cluster 2024-04-24T16:16:43.283698+0000 mgr.smithi178.tjvcci (mgr.14197) 225 : cluster [DBG] pgmap v172: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:45.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:44 smithi178 bash[18765]: cluster 2024-04-24T16:16:43.283698+0000 mgr.smithi178.tjvcci (mgr.14197) 225 : cluster [DBG] pgmap v172: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:47.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:46 smithi178 bash[18765]: cluster 2024-04-24T16:16:45.284752+0000 mgr.smithi178.tjvcci (mgr.14197) 226 : cluster [DBG] pgmap v173: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:47.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:46 smithi178 bash[18765]: cluster 2024-04-24T16:16:45.284752+0000 mgr.smithi178.tjvcci (mgr.14197) 226 : cluster [DBG] pgmap v173: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:47.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:46 smithi204 bash[20295]: cluster 2024-04-24T16:16:45.284752+0000 mgr.smithi178.tjvcci (mgr.14197) 226 : cluster [DBG] pgmap v173: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:47.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:46 smithi204 bash[20295]: cluster 2024-04-24T16:16:45.284752+0000 mgr.smithi178.tjvcci (mgr.14197) 226 : cluster [DBG] pgmap v173: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:48.970 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:16:49.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:48 smithi204 bash[20295]: cluster 2024-04-24T16:16:47.285747+0000 mgr.smithi178.tjvcci (mgr.14197) 227 : cluster [DBG] pgmap v174: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:49.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:48 smithi204 bash[20295]: cluster 2024-04-24T16:16:47.285747+0000 mgr.smithi178.tjvcci (mgr.14197) 227 : cluster [DBG] pgmap v174: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:49.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:48 smithi178 bash[18765]: cluster 2024-04-24T16:16:47.285747+0000 mgr.smithi178.tjvcci (mgr.14197) 227 : cluster [DBG] pgmap v174: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:49.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:48 smithi178 bash[18765]: cluster 2024-04-24T16:16:47.285747+0000 mgr.smithi178.tjvcci (mgr.14197) 227 : cluster [DBG] pgmap v174: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:50.201 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:16:50.847 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:16:51.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:50 smithi204 bash[20295]: cluster 2024-04-24T16:16:49.286705+0000 mgr.smithi178.tjvcci (mgr.14197) 228 : cluster [DBG] pgmap v175: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:51.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:50 smithi204 bash[20295]: cluster 2024-04-24T16:16:49.286705+0000 mgr.smithi178.tjvcci (mgr.14197) 228 : cluster [DBG] pgmap v175: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:51.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:50 smithi204 bash[20295]: audit 2024-04-24T16:16:50.205340+0000 mon.smithi178 (mon.0) 431 : audit [DBG] from='client.? 172.21.15.178:0/1035426486' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:51.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:50 smithi204 bash[20295]: audit 2024-04-24T16:16:50.205340+0000 mon.smithi178 (mon.0) 431 : audit [DBG] from='client.? 172.21.15.178:0/1035426486' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:51.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:50 smithi178 bash[18765]: cluster 2024-04-24T16:16:49.286705+0000 mgr.smithi178.tjvcci (mgr.14197) 228 : cluster [DBG] pgmap v175: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:51.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:50 smithi178 bash[18765]: cluster 2024-04-24T16:16:49.286705+0000 mgr.smithi178.tjvcci (mgr.14197) 228 : cluster [DBG] pgmap v175: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:51.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:50 smithi178 bash[18765]: audit 2024-04-24T16:16:50.205340+0000 mon.smithi178 (mon.0) 431 : audit [DBG] from='client.? 172.21.15.178:0/1035426486' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:51.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:50 smithi178 bash[18765]: audit 2024-04-24T16:16:50.205340+0000 mon.smithi178 (mon.0) 431 : audit [DBG] from='client.? 172.21.15.178:0/1035426486' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:51.848 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:16:53.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:52 smithi204 bash[20295]: cluster 2024-04-24T16:16:51.287723+0000 mgr.smithi178.tjvcci (mgr.14197) 229 : cluster [DBG] pgmap v176: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:53.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:52 smithi204 bash[20295]: cluster 2024-04-24T16:16:51.287723+0000 mgr.smithi178.tjvcci (mgr.14197) 229 : cluster [DBG] pgmap v176: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:53.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:52 smithi178 bash[18765]: cluster 2024-04-24T16:16:51.287723+0000 mgr.smithi178.tjvcci (mgr.14197) 229 : cluster [DBG] pgmap v176: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:53.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:52 smithi178 bash[18765]: cluster 2024-04-24T16:16:51.287723+0000 mgr.smithi178.tjvcci (mgr.14197) 229 : cluster [DBG] pgmap v176: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:55.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:54 smithi178 bash[18765]: cluster 2024-04-24T16:16:53.288733+0000 mgr.smithi178.tjvcci (mgr.14197) 230 : cluster [DBG] pgmap v177: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:55.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:54 smithi178 bash[18765]: cluster 2024-04-24T16:16:53.288733+0000 mgr.smithi178.tjvcci (mgr.14197) 230 : cluster [DBG] pgmap v177: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:55.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:54 smithi204 bash[20295]: cluster 2024-04-24T16:16:53.288733+0000 mgr.smithi178.tjvcci (mgr.14197) 230 : cluster [DBG] pgmap v177: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:55.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:54 smithi204 bash[20295]: cluster 2024-04-24T16:16:53.288733+0000 mgr.smithi178.tjvcci (mgr.14197) 230 : cluster [DBG] pgmap v177: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:56.615 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:16:57.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:56 smithi178 bash[18765]: cluster 2024-04-24T16:16:55.289738+0000 mgr.smithi178.tjvcci (mgr.14197) 231 : cluster [DBG] pgmap v178: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:57.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:56 smithi178 bash[18765]: cluster 2024-04-24T16:16:55.289738+0000 mgr.smithi178.tjvcci (mgr.14197) 231 : cluster [DBG] pgmap v178: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:57.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:56 smithi204 bash[20295]: cluster 2024-04-24T16:16:55.289738+0000 mgr.smithi178.tjvcci (mgr.14197) 231 : cluster [DBG] pgmap v178: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:57.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:56 smithi204 bash[20295]: cluster 2024-04-24T16:16:55.289738+0000 mgr.smithi178.tjvcci (mgr.14197) 231 : cluster [DBG] pgmap v178: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:57.908 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:16:58.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:57 smithi178 bash[18765]: audit 2024-04-24T16:16:57.386735+0000 mon.smithi178 (mon.0) 432 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:58.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:57 smithi178 bash[18765]: audit 2024-04-24T16:16:57.386735+0000 mon.smithi178 (mon.0) 432 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:58.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:57 smithi204 bash[20295]: audit 2024-04-24T16:16:57.386735+0000 mon.smithi178 (mon.0) 432 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:58.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:57 smithi204 bash[20295]: audit 2024-04-24T16:16:57.386735+0000 mon.smithi178 (mon.0) 432 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:16:58.510 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:16:59.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:58 smithi178 bash[18765]: cluster 2024-04-24T16:16:57.290583+0000 mgr.smithi178.tjvcci (mgr.14197) 232 : cluster [DBG] pgmap v179: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:59.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:58 smithi178 bash[18765]: cluster 2024-04-24T16:16:57.290583+0000 mgr.smithi178.tjvcci (mgr.14197) 232 : cluster [DBG] pgmap v179: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:59.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:58 smithi178 bash[18765]: audit 2024-04-24T16:16:57.913042+0000 mon.smithi178 (mon.0) 433 : audit [DBG] from='client.? 172.21.15.178:0/1930635869' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:59.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:16:58 smithi178 bash[18765]: audit 2024-04-24T16:16:57.913042+0000 mon.smithi178 (mon.0) 433 : audit [DBG] from='client.? 172.21.15.178:0/1930635869' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:59.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:58 smithi204 bash[20295]: cluster 2024-04-24T16:16:57.290583+0000 mgr.smithi178.tjvcci (mgr.14197) 232 : cluster [DBG] pgmap v179: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:59.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:58 smithi204 bash[20295]: cluster 2024-04-24T16:16:57.290583+0000 mgr.smithi178.tjvcci (mgr.14197) 232 : cluster [DBG] pgmap v179: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:16:59.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:58 smithi204 bash[20295]: audit 2024-04-24T16:16:57.913042+0000 mon.smithi178 (mon.0) 433 : audit [DBG] from='client.? 172.21.15.178:0/1930635869' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:59.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:16:58 smithi204 bash[20295]: audit 2024-04-24T16:16:57.913042+0000 mon.smithi178 (mon.0) 433 : audit [DBG] from='client.? 172.21.15.178:0/1930635869' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:16:59.511 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:17:01.285 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:00 smithi204 bash[20295]: cluster 2024-04-24T16:16:59.291552+0000 mgr.smithi178.tjvcci (mgr.14197) 233 : cluster [DBG] pgmap v180: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:01.285 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:00 smithi204 bash[20295]: cluster 2024-04-24T16:16:59.291552+0000 mgr.smithi178.tjvcci (mgr.14197) 233 : cluster [DBG] pgmap v180: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:01.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:00 smithi178 bash[18765]: cluster 2024-04-24T16:16:59.291552+0000 mgr.smithi178.tjvcci (mgr.14197) 233 : cluster [DBG] pgmap v180: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:01.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:00 smithi178 bash[18765]: cluster 2024-04-24T16:16:59.291552+0000 mgr.smithi178.tjvcci (mgr.14197) 233 : cluster [DBG] pgmap v180: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:03.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:02 smithi178 bash[18765]: cluster 2024-04-24T16:17:01.292539+0000 mgr.smithi178.tjvcci (mgr.14197) 234 : cluster [DBG] pgmap v181: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:03.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:02 smithi178 bash[18765]: cluster 2024-04-24T16:17:01.292539+0000 mgr.smithi178.tjvcci (mgr.14197) 234 : cluster [DBG] pgmap v181: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:03.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:02 smithi204 bash[20295]: cluster 2024-04-24T16:17:01.292539+0000 mgr.smithi178.tjvcci (mgr.14197) 234 : cluster [DBG] pgmap v181: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:03.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:02 smithi204 bash[20295]: cluster 2024-04-24T16:17:01.292539+0000 mgr.smithi178.tjvcci (mgr.14197) 234 : cluster [DBG] pgmap v181: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:04.276 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:17:05.166 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:04 smithi178 bash[18765]: cluster 2024-04-24T16:17:03.293551+0000 mgr.smithi178.tjvcci (mgr.14197) 235 : cluster [DBG] pgmap v182: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:05.166 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:04 smithi178 bash[18765]: cluster 2024-04-24T16:17:03.293551+0000 mgr.smithi178.tjvcci (mgr.14197) 235 : cluster [DBG] pgmap v182: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:05.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:04 smithi204 bash[20295]: cluster 2024-04-24T16:17:03.293551+0000 mgr.smithi178.tjvcci (mgr.14197) 235 : cluster [DBG] pgmap v182: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:05.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:04 smithi204 bash[20295]: cluster 2024-04-24T16:17:03.293551+0000 mgr.smithi178.tjvcci (mgr.14197) 235 : cluster [DBG] pgmap v182: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:05.510 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:17:06.129 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:17:06.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:05 smithi178 bash[18765]: audit 2024-04-24T16:17:05.514797+0000 mon.smithi178 (mon.0) 434 : audit [DBG] from='client.? 172.21.15.178:0/2652863943' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:06.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:05 smithi178 bash[18765]: audit 2024-04-24T16:17:05.514797+0000 mon.smithi178 (mon.0) 434 : audit [DBG] from='client.? 172.21.15.178:0/2652863943' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:06.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:05 smithi204 bash[20295]: audit 2024-04-24T16:17:05.514797+0000 mon.smithi178 (mon.0) 434 : audit [DBG] from='client.? 172.21.15.178:0/2652863943' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:06.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:05 smithi204 bash[20295]: audit 2024-04-24T16:17:05.514797+0000 mon.smithi178 (mon.0) 434 : audit [DBG] from='client.? 172.21.15.178:0/2652863943' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:07.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:06 smithi178 bash[18765]: cluster 2024-04-24T16:17:05.294514+0000 mgr.smithi178.tjvcci (mgr.14197) 236 : cluster [DBG] pgmap v183: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:07.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:06 smithi178 bash[18765]: cluster 2024-04-24T16:17:05.294514+0000 mgr.smithi178.tjvcci (mgr.14197) 236 : cluster [DBG] pgmap v183: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:07.130 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:17:07.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:06 smithi204 bash[20295]: cluster 2024-04-24T16:17:05.294514+0000 mgr.smithi178.tjvcci (mgr.14197) 236 : cluster [DBG] pgmap v183: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:07.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:06 smithi204 bash[20295]: cluster 2024-04-24T16:17:05.294514+0000 mgr.smithi178.tjvcci (mgr.14197) 236 : cluster [DBG] pgmap v183: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:09.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:08 smithi178 bash[18765]: cluster 2024-04-24T16:17:07.295109+0000 mgr.smithi178.tjvcci (mgr.14197) 237 : cluster [DBG] pgmap v184: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:09.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:08 smithi178 bash[18765]: cluster 2024-04-24T16:17:07.295109+0000 mgr.smithi178.tjvcci (mgr.14197) 237 : cluster [DBG] pgmap v184: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:09.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:08 smithi204 bash[20295]: cluster 2024-04-24T16:17:07.295109+0000 mgr.smithi178.tjvcci (mgr.14197) 237 : cluster [DBG] pgmap v184: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:09.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:08 smithi204 bash[20295]: cluster 2024-04-24T16:17:07.295109+0000 mgr.smithi178.tjvcci (mgr.14197) 237 : cluster [DBG] pgmap v184: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:10.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:09 smithi178 bash[18765]: audit 2024-04-24T16:17:09.376101+0000 mon.smithi178 (mon.0) 435 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:17:10.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:09 smithi178 bash[18765]: audit 2024-04-24T16:17:09.376101+0000 mon.smithi178 (mon.0) 435 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:17:10.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:09 smithi204 bash[20295]: audit 2024-04-24T16:17:09.376101+0000 mon.smithi178 (mon.0) 435 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:17:10.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:09 smithi204 bash[20295]: audit 2024-04-24T16:17:09.376101+0000 mon.smithi178 (mon.0) 435 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:17:11.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:10 smithi178 bash[18765]: cluster 2024-04-24T16:17:09.296127+0000 mgr.smithi178.tjvcci (mgr.14197) 238 : cluster [DBG] pgmap v185: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:11.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:10 smithi178 bash[18765]: cluster 2024-04-24T16:17:09.296127+0000 mgr.smithi178.tjvcci (mgr.14197) 238 : cluster [DBG] pgmap v185: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:11.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:10 smithi204 bash[20295]: cluster 2024-04-24T16:17:09.296127+0000 mgr.smithi178.tjvcci (mgr.14197) 238 : cluster [DBG] pgmap v185: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:11.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:10 smithi204 bash[20295]: cluster 2024-04-24T16:17:09.296127+0000 mgr.smithi178.tjvcci (mgr.14197) 238 : cluster [DBG] pgmap v185: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:11.897 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:17:13.084 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:17:13.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:12 smithi178 bash[18765]: cluster 2024-04-24T16:17:11.297150+0000 mgr.smithi178.tjvcci (mgr.14197) 239 : cluster [DBG] pgmap v186: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:13.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:12 smithi178 bash[18765]: cluster 2024-04-24T16:17:11.297150+0000 mgr.smithi178.tjvcci (mgr.14197) 239 : cluster [DBG] pgmap v186: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:13.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:12 smithi178 bash[18765]: audit 2024-04-24T16:17:12.387278+0000 mon.smithi178 (mon.0) 436 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:13.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:12 smithi178 bash[18765]: audit 2024-04-24T16:17:12.387278+0000 mon.smithi178 (mon.0) 436 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:13.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:12 smithi204 bash[20295]: cluster 2024-04-24T16:17:11.297150+0000 mgr.smithi178.tjvcci (mgr.14197) 239 : cluster [DBG] pgmap v186: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:13.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:12 smithi204 bash[20295]: cluster 2024-04-24T16:17:11.297150+0000 mgr.smithi178.tjvcci (mgr.14197) 239 : cluster [DBG] pgmap v186: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:13.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:12 smithi204 bash[20295]: audit 2024-04-24T16:17:12.387278+0000 mon.smithi178 (mon.0) 436 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:13.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:12 smithi204 bash[20295]: audit 2024-04-24T16:17:12.387278+0000 mon.smithi178 (mon.0) 436 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:13.696 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:17:13.954 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:13 smithi178 bash[18765]: audit 2024-04-24T16:17:13.088924+0000 mon.smithi178 (mon.0) 437 : audit [DBG] from='client.? 172.21.15.178:0/4012660128' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:13.955 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:13 smithi178 bash[18765]: audit 2024-04-24T16:17:13.088924+0000 mon.smithi178 (mon.0) 437 : audit [DBG] from='client.? 172.21.15.178:0/4012660128' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:14.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:13 smithi204 bash[20295]: audit 2024-04-24T16:17:13.088924+0000 mon.smithi178 (mon.0) 437 : audit [DBG] from='client.? 172.21.15.178:0/4012660128' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:14.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:13 smithi204 bash[20295]: audit 2024-04-24T16:17:13.088924+0000 mon.smithi178 (mon.0) 437 : audit [DBG] from='client.? 172.21.15.178:0/4012660128' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:14.697 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:17:15.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:14 smithi178 bash[18765]: cluster 2024-04-24T16:17:13.298193+0000 mgr.smithi178.tjvcci (mgr.14197) 240 : cluster [DBG] pgmap v187: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:15.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:14 smithi178 bash[18765]: cluster 2024-04-24T16:17:13.298193+0000 mgr.smithi178.tjvcci (mgr.14197) 240 : cluster [DBG] pgmap v187: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:15.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:14 smithi204 bash[20295]: cluster 2024-04-24T16:17:13.298193+0000 mgr.smithi178.tjvcci (mgr.14197) 240 : cluster [DBG] pgmap v187: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:15.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:14 smithi204 bash[20295]: cluster 2024-04-24T16:17:13.298193+0000 mgr.smithi178.tjvcci (mgr.14197) 240 : cluster [DBG] pgmap v187: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:17.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:16 smithi178 bash[18765]: cluster 2024-04-24T16:17:15.299175+0000 mgr.smithi178.tjvcci (mgr.14197) 241 : cluster [DBG] pgmap v188: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:17.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:16 smithi178 bash[18765]: cluster 2024-04-24T16:17:15.299175+0000 mgr.smithi178.tjvcci (mgr.14197) 241 : cluster [DBG] pgmap v188: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:17.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:16 smithi204 bash[20295]: cluster 2024-04-24T16:17:15.299175+0000 mgr.smithi178.tjvcci (mgr.14197) 241 : cluster [DBG] pgmap v188: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:17.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:16 smithi204 bash[20295]: cluster 2024-04-24T16:17:15.299175+0000 mgr.smithi178.tjvcci (mgr.14197) 241 : cluster [DBG] pgmap v188: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:18.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:17 smithi178 bash[18765]: audit 2024-04-24T16:17:17.036214+0000 mon.smithi178 (mon.0) 438 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:17:18.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:17 smithi178 bash[18765]: audit 2024-04-24T16:17:17.036214+0000 mon.smithi178 (mon.0) 438 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:17:18.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:17 smithi178 bash[18765]: audit 2024-04-24T16:17:17.037994+0000 mon.smithi178 (mon.0) 439 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:17:18.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:17 smithi178 bash[18765]: audit 2024-04-24T16:17:17.037994+0000 mon.smithi178 (mon.0) 439 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:17:18.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:17 smithi178 bash[18765]: cluster 2024-04-24T16:17:17.040470+0000 mgr.smithi178.tjvcci (mgr.14197) 242 : cluster [DBG] pgmap v189: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:18.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:17 smithi178 bash[18765]: cluster 2024-04-24T16:17:17.040470+0000 mgr.smithi178.tjvcci (mgr.14197) 242 : cluster [DBG] pgmap v189: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:18.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:17 smithi178 bash[18765]: cluster 2024-04-24T16:17:17.041677+0000 mgr.smithi178.tjvcci (mgr.14197) 243 : cluster [DBG] pgmap v190: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:18.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:17 smithi178 bash[18765]: cluster 2024-04-24T16:17:17.041677+0000 mgr.smithi178.tjvcci (mgr.14197) 243 : cluster [DBG] pgmap v190: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:18.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:17 smithi178 bash[18765]: audit 2024-04-24T16:17:17.047269+0000 mon.smithi178 (mon.0) 440 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:17:18.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:17 smithi178 bash[18765]: audit 2024-04-24T16:17:17.047269+0000 mon.smithi178 (mon.0) 440 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:17:18.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:17 smithi178 bash[18765]: audit 2024-04-24T16:17:17.055189+0000 mon.smithi178 (mon.0) 441 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:17:18.336 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:17 smithi178 bash[18765]: audit 2024-04-24T16:17:17.055189+0000 mon.smithi178 (mon.0) 441 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:17:18.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:17 smithi204 bash[20295]: audit 2024-04-24T16:17:17.036214+0000 mon.smithi178 (mon.0) 438 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:17:18.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:17 smithi204 bash[20295]: audit 2024-04-24T16:17:17.036214+0000 mon.smithi178 (mon.0) 438 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:17:18.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:17 smithi204 bash[20295]: audit 2024-04-24T16:17:17.037994+0000 mon.smithi178 (mon.0) 439 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:17:18.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:17 smithi204 bash[20295]: audit 2024-04-24T16:17:17.037994+0000 mon.smithi178 (mon.0) 439 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:17:18.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:17 smithi204 bash[20295]: cluster 2024-04-24T16:17:17.040470+0000 mgr.smithi178.tjvcci (mgr.14197) 242 : cluster [DBG] pgmap v189: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:18.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:17 smithi204 bash[20295]: cluster 2024-04-24T16:17:17.040470+0000 mgr.smithi178.tjvcci (mgr.14197) 242 : cluster [DBG] pgmap v189: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:18.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:17 smithi204 bash[20295]: cluster 2024-04-24T16:17:17.041677+0000 mgr.smithi178.tjvcci (mgr.14197) 243 : cluster [DBG] pgmap v190: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:18.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:17 smithi204 bash[20295]: cluster 2024-04-24T16:17:17.041677+0000 mgr.smithi178.tjvcci (mgr.14197) 243 : cluster [DBG] pgmap v190: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:18.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:17 smithi204 bash[20295]: audit 2024-04-24T16:17:17.047269+0000 mon.smithi178 (mon.0) 440 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:17:18.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:17 smithi204 bash[20295]: audit 2024-04-24T16:17:17.047269+0000 mon.smithi178 (mon.0) 440 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:17:18.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:17 smithi204 bash[20295]: audit 2024-04-24T16:17:17.055189+0000 mon.smithi178 (mon.0) 441 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:17:18.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:17 smithi204 bash[20295]: audit 2024-04-24T16:17:17.055189+0000 mon.smithi178 (mon.0) 441 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:17:19.249 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:17:19.269 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:19 smithi178 bash[18765]: cluster 2024-04-24T16:17:19.042714+0000 mgr.smithi178.tjvcci (mgr.14197) 244 : cluster [DBG] pgmap v191: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:19.269 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:19 smithi178 bash[18765]: cluster 2024-04-24T16:17:19.042714+0000 mgr.smithi178.tjvcci (mgr.14197) 244 : cluster [DBG] pgmap v191: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:19.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:19 smithi204 bash[20295]: cluster 2024-04-24T16:17:19.042714+0000 mgr.smithi178.tjvcci (mgr.14197) 244 : cluster [DBG] pgmap v191: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:19.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:19 smithi204 bash[20295]: cluster 2024-04-24T16:17:19.042714+0000 mgr.smithi178.tjvcci (mgr.14197) 244 : cluster [DBG] pgmap v191: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:20.390 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:17:20.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:20 smithi178 bash[18765]: audit 2024-04-24T16:17:20.395409+0000 mon.smithi178 (mon.0) 442 : audit [DBG] from='client.? 172.21.15.178:0/1304242385' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:20.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:20 smithi178 bash[18765]: audit 2024-04-24T16:17:20.395409+0000 mon.smithi178 (mon.0) 442 : audit [DBG] from='client.? 172.21.15.178:0/1304242385' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:20.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:20 smithi204 bash[20295]: audit 2024-04-24T16:17:20.395409+0000 mon.smithi178 (mon.0) 442 : audit [DBG] from='client.? 172.21.15.178:0/1304242385' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:20.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:20 smithi204 bash[20295]: audit 2024-04-24T16:17:20.395409+0000 mon.smithi178 (mon.0) 442 : audit [DBG] from='client.? 172.21.15.178:0/1304242385' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:21.013 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:17:21.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:21 smithi178 bash[18765]: cluster 2024-04-24T16:17:21.043784+0000 mgr.smithi178.tjvcci (mgr.14197) 245 : cluster [DBG] pgmap v192: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:21.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:21 smithi178 bash[18765]: cluster 2024-04-24T16:17:21.043784+0000 mgr.smithi178.tjvcci (mgr.14197) 245 : cluster [DBG] pgmap v192: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:21.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:21 smithi204 bash[20295]: cluster 2024-04-24T16:17:21.043784+0000 mgr.smithi178.tjvcci (mgr.14197) 245 : cluster [DBG] pgmap v192: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:21.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:21 smithi204 bash[20295]: cluster 2024-04-24T16:17:21.043784+0000 mgr.smithi178.tjvcci (mgr.14197) 245 : cluster [DBG] pgmap v192: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:22.015 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:17:23.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:23 smithi204 bash[20295]: cluster 2024-04-24T16:17:23.044770+0000 mgr.smithi178.tjvcci (mgr.14197) 246 : cluster [DBG] pgmap v193: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:23.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:23 smithi204 bash[20295]: cluster 2024-04-24T16:17:23.044770+0000 mgr.smithi178.tjvcci (mgr.14197) 246 : cluster [DBG] pgmap v193: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:23.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:23 smithi178 bash[18765]: cluster 2024-04-24T16:17:23.044770+0000 mgr.smithi178.tjvcci (mgr.14197) 246 : cluster [DBG] pgmap v193: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:23.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:23 smithi178 bash[18765]: cluster 2024-04-24T16:17:23.044770+0000 mgr.smithi178.tjvcci (mgr.14197) 246 : cluster [DBG] pgmap v193: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:25.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:25 smithi204 bash[20295]: cluster 2024-04-24T16:17:25.045763+0000 mgr.smithi178.tjvcci (mgr.14197) 247 : cluster [DBG] pgmap v194: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:25.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:25 smithi204 bash[20295]: cluster 2024-04-24T16:17:25.045763+0000 mgr.smithi178.tjvcci (mgr.14197) 247 : cluster [DBG] pgmap v194: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:25.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:25 smithi178 bash[18765]: cluster 2024-04-24T16:17:25.045763+0000 mgr.smithi178.tjvcci (mgr.14197) 247 : cluster [DBG] pgmap v194: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:25.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:25 smithi178 bash[18765]: cluster 2024-04-24T16:17:25.045763+0000 mgr.smithi178.tjvcci (mgr.14197) 247 : cluster [DBG] pgmap v194: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:26.781 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:17:27.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:27 smithi204 bash[20295]: cluster 2024-04-24T16:17:27.046748+0000 mgr.smithi178.tjvcci (mgr.14197) 248 : cluster [DBG] pgmap v195: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:27.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:27 smithi204 bash[20295]: cluster 2024-04-24T16:17:27.046748+0000 mgr.smithi178.tjvcci (mgr.14197) 248 : cluster [DBG] pgmap v195: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:27.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:27 smithi178 bash[18765]: cluster 2024-04-24T16:17:27.046748+0000 mgr.smithi178.tjvcci (mgr.14197) 248 : cluster [DBG] pgmap v195: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:27.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:27 smithi178 bash[18765]: cluster 2024-04-24T16:17:27.046748+0000 mgr.smithi178.tjvcci (mgr.14197) 248 : cluster [DBG] pgmap v195: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:28.046 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:17:28.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:28 smithi178 bash[18765]: audit 2024-04-24T16:17:27.387891+0000 mon.smithi178 (mon.0) 443 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:28.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:28 smithi178 bash[18765]: audit 2024-04-24T16:17:27.387891+0000 mon.smithi178 (mon.0) 443 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:28.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:28 smithi178 bash[18765]: audit 2024-04-24T16:17:28.051305+0000 mon.smithi178 (mon.0) 444 : audit [DBG] from='client.? 172.21.15.178:0/4102320049' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:28.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:28 smithi178 bash[18765]: audit 2024-04-24T16:17:28.051305+0000 mon.smithi178 (mon.0) 444 : audit [DBG] from='client.? 172.21.15.178:0/4102320049' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:28.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:28 smithi204 bash[20295]: audit 2024-04-24T16:17:27.387891+0000 mon.smithi178 (mon.0) 443 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:28.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:28 smithi204 bash[20295]: audit 2024-04-24T16:17:27.387891+0000 mon.smithi178 (mon.0) 443 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:28.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:28 smithi204 bash[20295]: audit 2024-04-24T16:17:28.051305+0000 mon.smithi178 (mon.0) 444 : audit [DBG] from='client.? 172.21.15.178:0/4102320049' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:28.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:28 smithi204 bash[20295]: audit 2024-04-24T16:17:28.051305+0000 mon.smithi178 (mon.0) 444 : audit [DBG] from='client.? 172.21.15.178:0/4102320049' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:28.650 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:17:29.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:29 smithi178 bash[18765]: cluster 2024-04-24T16:17:29.047860+0000 mgr.smithi178.tjvcci (mgr.14197) 249 : cluster [DBG] pgmap v196: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:29.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:29 smithi178 bash[18765]: cluster 2024-04-24T16:17:29.047860+0000 mgr.smithi178.tjvcci (mgr.14197) 249 : cluster [DBG] pgmap v196: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:29.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:29 smithi204 bash[20295]: cluster 2024-04-24T16:17:29.047860+0000 mgr.smithi178.tjvcci (mgr.14197) 249 : cluster [DBG] pgmap v196: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:29.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:29 smithi204 bash[20295]: cluster 2024-04-24T16:17:29.047860+0000 mgr.smithi178.tjvcci (mgr.14197) 249 : cluster [DBG] pgmap v196: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:29.651 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:17:31.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:31 smithi204 bash[20295]: cluster 2024-04-24T16:17:31.048972+0000 mgr.smithi178.tjvcci (mgr.14197) 250 : cluster [DBG] pgmap v197: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:31.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:31 smithi204 bash[20295]: cluster 2024-04-24T16:17:31.048972+0000 mgr.smithi178.tjvcci (mgr.14197) 250 : cluster [DBG] pgmap v197: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:31.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:31 smithi178 bash[18765]: cluster 2024-04-24T16:17:31.048972+0000 mgr.smithi178.tjvcci (mgr.14197) 250 : cluster [DBG] pgmap v197: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:31.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:31 smithi178 bash[18765]: cluster 2024-04-24T16:17:31.048972+0000 mgr.smithi178.tjvcci (mgr.14197) 250 : cluster [DBG] pgmap v197: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:33.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:33 smithi204 bash[20295]: cluster 2024-04-24T16:17:33.049980+0000 mgr.smithi178.tjvcci (mgr.14197) 251 : cluster [DBG] pgmap v198: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:33.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:33 smithi204 bash[20295]: cluster 2024-04-24T16:17:33.049980+0000 mgr.smithi178.tjvcci (mgr.14197) 251 : cluster [DBG] pgmap v198: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:33.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:33 smithi178 bash[18765]: cluster 2024-04-24T16:17:33.049980+0000 mgr.smithi178.tjvcci (mgr.14197) 251 : cluster [DBG] pgmap v198: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:33.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:33 smithi178 bash[18765]: cluster 2024-04-24T16:17:33.049980+0000 mgr.smithi178.tjvcci (mgr.14197) 251 : cluster [DBG] pgmap v198: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:34.413 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:17:35.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:35 smithi204 bash[20295]: cluster 2024-04-24T16:17:35.050906+0000 mgr.smithi178.tjvcci (mgr.14197) 252 : cluster [DBG] pgmap v199: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:35.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:35 smithi204 bash[20295]: cluster 2024-04-24T16:17:35.050906+0000 mgr.smithi178.tjvcci (mgr.14197) 252 : cluster [DBG] pgmap v199: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:35.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:35 smithi178 bash[18765]: cluster 2024-04-24T16:17:35.050906+0000 mgr.smithi178.tjvcci (mgr.14197) 252 : cluster [DBG] pgmap v199: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:35.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:35 smithi178 bash[18765]: cluster 2024-04-24T16:17:35.050906+0000 mgr.smithi178.tjvcci (mgr.14197) 252 : cluster [DBG] pgmap v199: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:35.646 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:17:36.241 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:17:36.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:36 smithi204 bash[20295]: audit 2024-04-24T16:17:35.651132+0000 mon.smithi178 (mon.0) 445 : audit [DBG] from='client.? 172.21.15.178:0/3490997622' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:36.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:36 smithi204 bash[20295]: audit 2024-04-24T16:17:35.651132+0000 mon.smithi178 (mon.0) 445 : audit [DBG] from='client.? 172.21.15.178:0/3490997622' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:36.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:36 smithi178 bash[18765]: audit 2024-04-24T16:17:35.651132+0000 mon.smithi178 (mon.0) 445 : audit [DBG] from='client.? 172.21.15.178:0/3490997622' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:36.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:36 smithi178 bash[18765]: audit 2024-04-24T16:17:35.651132+0000 mon.smithi178 (mon.0) 445 : audit [DBG] from='client.? 172.21.15.178:0/3490997622' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:37.242 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:17:37.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:37 smithi204 bash[20295]: cluster 2024-04-24T16:17:37.051925+0000 mgr.smithi178.tjvcci (mgr.14197) 253 : cluster [DBG] pgmap v200: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:37.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:37 smithi204 bash[20295]: cluster 2024-04-24T16:17:37.051925+0000 mgr.smithi178.tjvcci (mgr.14197) 253 : cluster [DBG] pgmap v200: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:37.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:37 smithi178 bash[18765]: cluster 2024-04-24T16:17:37.051925+0000 mgr.smithi178.tjvcci (mgr.14197) 253 : cluster [DBG] pgmap v200: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:37.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:37 smithi178 bash[18765]: cluster 2024-04-24T16:17:37.051925+0000 mgr.smithi178.tjvcci (mgr.14197) 253 : cluster [DBG] pgmap v200: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:39.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:39 smithi178 bash[18765]: cluster 2024-04-24T16:17:39.052863+0000 mgr.smithi178.tjvcci (mgr.14197) 254 : cluster [DBG] pgmap v201: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:39.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:39 smithi178 bash[18765]: cluster 2024-04-24T16:17:39.052863+0000 mgr.smithi178.tjvcci (mgr.14197) 254 : cluster [DBG] pgmap v201: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:39.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:39 smithi204 bash[20295]: cluster 2024-04-24T16:17:39.052863+0000 mgr.smithi178.tjvcci (mgr.14197) 254 : cluster [DBG] pgmap v201: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:39.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:39 smithi204 bash[20295]: cluster 2024-04-24T16:17:39.052863+0000 mgr.smithi178.tjvcci (mgr.14197) 254 : cluster [DBG] pgmap v201: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:41.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:41 smithi204 bash[20295]: cluster 2024-04-24T16:17:41.053820+0000 mgr.smithi178.tjvcci (mgr.14197) 255 : cluster [DBG] pgmap v202: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:41.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:41 smithi204 bash[20295]: cluster 2024-04-24T16:17:41.053820+0000 mgr.smithi178.tjvcci (mgr.14197) 255 : cluster [DBG] pgmap v202: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:41.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:41 smithi178 bash[18765]: cluster 2024-04-24T16:17:41.053820+0000 mgr.smithi178.tjvcci (mgr.14197) 255 : cluster [DBG] pgmap v202: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:41.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:41 smithi178 bash[18765]: cluster 2024-04-24T16:17:41.053820+0000 mgr.smithi178.tjvcci (mgr.14197) 255 : cluster [DBG] pgmap v202: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:42.010 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:17:42.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:42 smithi178 bash[18765]: audit 2024-04-24T16:17:42.388021+0000 mon.smithi178 (mon.0) 446 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:42.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:42 smithi178 bash[18765]: audit 2024-04-24T16:17:42.388021+0000 mon.smithi178 (mon.0) 446 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:42.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:42 smithi204 bash[20295]: audit 2024-04-24T16:17:42.388021+0000 mon.smithi178 (mon.0) 446 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:42.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:42 smithi204 bash[20295]: audit 2024-04-24T16:17:42.388021+0000 mon.smithi178 (mon.0) 446 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:43.415 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:17:43.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:43 smithi178 bash[18765]: cluster 2024-04-24T16:17:43.054463+0000 mgr.smithi178.tjvcci (mgr.14197) 256 : cluster [DBG] pgmap v203: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:43.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:43 smithi178 bash[18765]: cluster 2024-04-24T16:17:43.054463+0000 mgr.smithi178.tjvcci (mgr.14197) 256 : cluster [DBG] pgmap v203: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:43.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:43 smithi178 bash[18765]: audit 2024-04-24T16:17:43.419955+0000 mon.smithi178 (mon.0) 447 : audit [DBG] from='client.? 172.21.15.178:0/1943465916' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:43.835 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:43 smithi178 bash[18765]: audit 2024-04-24T16:17:43.419955+0000 mon.smithi178 (mon.0) 447 : audit [DBG] from='client.? 172.21.15.178:0/1943465916' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:43.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:43 smithi204 bash[20295]: cluster 2024-04-24T16:17:43.054463+0000 mgr.smithi178.tjvcci (mgr.14197) 256 : cluster [DBG] pgmap v203: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:43.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:43 smithi204 bash[20295]: cluster 2024-04-24T16:17:43.054463+0000 mgr.smithi178.tjvcci (mgr.14197) 256 : cluster [DBG] pgmap v203: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:43.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:43 smithi204 bash[20295]: audit 2024-04-24T16:17:43.419955+0000 mon.smithi178 (mon.0) 447 : audit [DBG] from='client.? 172.21.15.178:0/1943465916' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:43.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:43 smithi204 bash[20295]: audit 2024-04-24T16:17:43.419955+0000 mon.smithi178 (mon.0) 447 : audit [DBG] from='client.? 172.21.15.178:0/1943465916' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:44.038 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:17:45.039 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:17:45.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:45 smithi178 bash[18765]: cluster 2024-04-24T16:17:45.055443+0000 mgr.smithi178.tjvcci (mgr.14197) 257 : cluster [DBG] pgmap v204: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:45.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:45 smithi178 bash[18765]: cluster 2024-04-24T16:17:45.055443+0000 mgr.smithi178.tjvcci (mgr.14197) 257 : cluster [DBG] pgmap v204: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:45.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:45 smithi204 bash[20295]: cluster 2024-04-24T16:17:45.055443+0000 mgr.smithi178.tjvcci (mgr.14197) 257 : cluster [DBG] pgmap v204: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:45.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:45 smithi204 bash[20295]: cluster 2024-04-24T16:17:45.055443+0000 mgr.smithi178.tjvcci (mgr.14197) 257 : cluster [DBG] pgmap v204: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:47.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:47 smithi204 bash[20295]: cluster 2024-04-24T16:17:47.056441+0000 mgr.smithi178.tjvcci (mgr.14197) 258 : cluster [DBG] pgmap v205: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:47.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:47 smithi204 bash[20295]: cluster 2024-04-24T16:17:47.056441+0000 mgr.smithi178.tjvcci (mgr.14197) 258 : cluster [DBG] pgmap v205: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:47.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:47 smithi178 bash[18765]: cluster 2024-04-24T16:17:47.056441+0000 mgr.smithi178.tjvcci (mgr.14197) 258 : cluster [DBG] pgmap v205: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:47.586 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:47 smithi178 bash[18765]: cluster 2024-04-24T16:17:47.056441+0000 mgr.smithi178.tjvcci (mgr.14197) 258 : cluster [DBG] pgmap v205: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:49.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:49 smithi178 bash[18765]: cluster 2024-04-24T16:17:49.057391+0000 mgr.smithi178.tjvcci (mgr.14197) 259 : cluster [DBG] pgmap v206: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:49.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:49 smithi178 bash[18765]: cluster 2024-04-24T16:17:49.057391+0000 mgr.smithi178.tjvcci (mgr.14197) 259 : cluster [DBG] pgmap v206: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:49.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:49 smithi204 bash[20295]: cluster 2024-04-24T16:17:49.057391+0000 mgr.smithi178.tjvcci (mgr.14197) 259 : cluster [DBG] pgmap v206: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:49.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:49 smithi204 bash[20295]: cluster 2024-04-24T16:17:49.057391+0000 mgr.smithi178.tjvcci (mgr.14197) 259 : cluster [DBG] pgmap v206: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:49.809 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:17:51.028 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:17:51.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:51 smithi178 bash[18765]: audit 2024-04-24T16:17:51.033462+0000 mon.smithi178 (mon.0) 448 : audit [DBG] from='client.? 172.21.15.178:0/2835324348' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:51.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:51 smithi178 bash[18765]: audit 2024-04-24T16:17:51.033462+0000 mon.smithi178 (mon.0) 448 : audit [DBG] from='client.? 172.21.15.178:0/2835324348' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:51.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:51 smithi178 bash[18765]: cluster 2024-04-24T16:17:51.058014+0000 mgr.smithi178.tjvcci (mgr.14197) 260 : cluster [DBG] pgmap v207: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:51.335 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:51 smithi178 bash[18765]: cluster 2024-04-24T16:17:51.058014+0000 mgr.smithi178.tjvcci (mgr.14197) 260 : cluster [DBG] pgmap v207: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:51.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:51 smithi204 bash[20295]: audit 2024-04-24T16:17:51.033462+0000 mon.smithi178 (mon.0) 448 : audit [DBG] from='client.? 172.21.15.178:0/2835324348' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:51.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:51 smithi204 bash[20295]: audit 2024-04-24T16:17:51.033462+0000 mon.smithi178 (mon.0) 448 : audit [DBG] from='client.? 172.21.15.178:0/2835324348' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:51.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:51 smithi204 bash[20295]: cluster 2024-04-24T16:17:51.058014+0000 mgr.smithi178.tjvcci (mgr.14197) 260 : cluster [DBG] pgmap v207: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:51.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:51 smithi204 bash[20295]: cluster 2024-04-24T16:17:51.058014+0000 mgr.smithi178.tjvcci (mgr.14197) 260 : cluster [DBG] pgmap v207: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:51.673 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:17:52.674 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:17:53.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:53 smithi204 bash[20295]: cluster 2024-04-24T16:17:53.058935+0000 mgr.smithi178.tjvcci (mgr.14197) 261 : cluster [DBG] pgmap v208: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:53.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:53 smithi204 bash[20295]: cluster 2024-04-24T16:17:53.058935+0000 mgr.smithi178.tjvcci (mgr.14197) 261 : cluster [DBG] pgmap v208: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:53.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:53 smithi178 bash[18765]: cluster 2024-04-24T16:17:53.058935+0000 mgr.smithi178.tjvcci (mgr.14197) 261 : cluster [DBG] pgmap v208: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:53.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:53 smithi178 bash[18765]: cluster 2024-04-24T16:17:53.058935+0000 mgr.smithi178.tjvcci (mgr.14197) 261 : cluster [DBG] pgmap v208: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:55.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:55 smithi204 bash[20295]: cluster 2024-04-24T16:17:55.059945+0000 mgr.smithi178.tjvcci (mgr.14197) 262 : cluster [DBG] pgmap v209: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:55.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:55 smithi204 bash[20295]: cluster 2024-04-24T16:17:55.059945+0000 mgr.smithi178.tjvcci (mgr.14197) 262 : cluster [DBG] pgmap v209: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:55.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:55 smithi178 bash[18765]: cluster 2024-04-24T16:17:55.059945+0000 mgr.smithi178.tjvcci (mgr.14197) 262 : cluster [DBG] pgmap v209: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:55.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:55 smithi178 bash[18765]: cluster 2024-04-24T16:17:55.059945+0000 mgr.smithi178.tjvcci (mgr.14197) 262 : cluster [DBG] pgmap v209: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:57.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:57 smithi204 bash[20295]: cluster 2024-04-24T16:17:57.060951+0000 mgr.smithi178.tjvcci (mgr.14197) 263 : cluster [DBG] pgmap v210: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:57.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:57 smithi204 bash[20295]: cluster 2024-04-24T16:17:57.060951+0000 mgr.smithi178.tjvcci (mgr.14197) 263 : cluster [DBG] pgmap v210: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:57.442 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:17:57.463 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:57 smithi178 bash[18765]: cluster 2024-04-24T16:17:57.060951+0000 mgr.smithi178.tjvcci (mgr.14197) 263 : cluster [DBG] pgmap v210: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:57.463 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:57 smithi178 bash[18765]: cluster 2024-04-24T16:17:57.060951+0000 mgr.smithi178.tjvcci (mgr.14197) 263 : cluster [DBG] pgmap v210: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:58.368 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:58 smithi178 bash[18765]: audit 2024-04-24T16:17:57.388534+0000 mon.smithi178 (mon.0) 449 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:58.369 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:58 smithi178 bash[18765]: audit 2024-04-24T16:17:57.388534+0000 mon.smithi178 (mon.0) 449 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:58.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:58 smithi204 bash[20295]: audit 2024-04-24T16:17:57.388534+0000 mon.smithi178 (mon.0) 449 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:58.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:58 smithi204 bash[20295]: audit 2024-04-24T16:17:57.388534+0000 mon.smithi178 (mon.0) 449 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:17:58.736 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:17:59.345 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:17:59.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:59 smithi204 bash[20295]: audit 2024-04-24T16:17:58.741616+0000 mon.smithi178 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.178:0/4184474335' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:59.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:59 smithi204 bash[20295]: audit 2024-04-24T16:17:58.741616+0000 mon.smithi178 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.178:0/4184474335' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:59.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:59 smithi204 bash[20295]: cluster 2024-04-24T16:17:59.061948+0000 mgr.smithi178.tjvcci (mgr.14197) 264 : cluster [DBG] pgmap v211: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:59.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:17:59 smithi204 bash[20295]: cluster 2024-04-24T16:17:59.061948+0000 mgr.smithi178.tjvcci (mgr.14197) 264 : cluster [DBG] pgmap v211: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:59.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:59 smithi178 bash[18765]: audit 2024-04-24T16:17:58.741616+0000 mon.smithi178 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.178:0/4184474335' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:59.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:59 smithi178 bash[18765]: audit 2024-04-24T16:17:58.741616+0000 mon.smithi178 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.178:0/4184474335' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:17:59.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:59 smithi178 bash[18765]: cluster 2024-04-24T16:17:59.061948+0000 mgr.smithi178.tjvcci (mgr.14197) 264 : cluster [DBG] pgmap v211: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:17:59.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:17:59 smithi178 bash[18765]: cluster 2024-04-24T16:17:59.061948+0000 mgr.smithi178.tjvcci (mgr.14197) 264 : cluster [DBG] pgmap v211: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:00.346 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:18:01.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:01 smithi204 bash[20295]: cluster 2024-04-24T16:18:01.062855+0000 mgr.smithi178.tjvcci (mgr.14197) 265 : cluster [DBG] pgmap v212: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:01.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:01 smithi204 bash[20295]: cluster 2024-04-24T16:18:01.062855+0000 mgr.smithi178.tjvcci (mgr.14197) 265 : cluster [DBG] pgmap v212: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:01.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:01 smithi178 bash[18765]: cluster 2024-04-24T16:18:01.062855+0000 mgr.smithi178.tjvcci (mgr.14197) 265 : cluster [DBG] pgmap v212: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:01.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:01 smithi178 bash[18765]: cluster 2024-04-24T16:18:01.062855+0000 mgr.smithi178.tjvcci (mgr.14197) 265 : cluster [DBG] pgmap v212: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:03.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:03 smithi204 bash[20295]: cluster 2024-04-24T16:18:03.063843+0000 mgr.smithi178.tjvcci (mgr.14197) 266 : cluster [DBG] pgmap v213: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:03.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:03 smithi204 bash[20295]: cluster 2024-04-24T16:18:03.063843+0000 mgr.smithi178.tjvcci (mgr.14197) 266 : cluster [DBG] pgmap v213: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:03.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:03 smithi178 bash[18765]: cluster 2024-04-24T16:18:03.063843+0000 mgr.smithi178.tjvcci (mgr.14197) 266 : cluster [DBG] pgmap v213: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:03.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:03 smithi178 bash[18765]: cluster 2024-04-24T16:18:03.063843+0000 mgr.smithi178.tjvcci (mgr.14197) 266 : cluster [DBG] pgmap v213: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:05.113 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:18:06.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:06 smithi178 bash[18765]: cluster 2024-04-24T16:18:05.064824+0000 mgr.smithi178.tjvcci (mgr.14197) 267 : cluster [DBG] pgmap v214: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:06.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:06 smithi178 bash[18765]: cluster 2024-04-24T16:18:05.064824+0000 mgr.smithi178.tjvcci (mgr.14197) 267 : cluster [DBG] pgmap v214: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:06.373 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:18:06.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:06 smithi204 bash[20295]: cluster 2024-04-24T16:18:05.064824+0000 mgr.smithi178.tjvcci (mgr.14197) 267 : cluster [DBG] pgmap v214: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:06.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:06 smithi204 bash[20295]: cluster 2024-04-24T16:18:05.064824+0000 mgr.smithi178.tjvcci (mgr.14197) 267 : cluster [DBG] pgmap v214: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:06.970 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:18:07.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:07 smithi178 bash[18765]: audit 2024-04-24T16:18:06.378638+0000 mon.smithi178 (mon.0) 451 : audit [DBG] from='client.? 172.21.15.178:0/2607486510' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:07.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:07 smithi178 bash[18765]: audit 2024-04-24T16:18:06.378638+0000 mon.smithi178 (mon.0) 451 : audit [DBG] from='client.? 172.21.15.178:0/2607486510' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:07.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:07 smithi204 bash[20295]: audit 2024-04-24T16:18:06.378638+0000 mon.smithi178 (mon.0) 451 : audit [DBG] from='client.? 172.21.15.178:0/2607486510' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:07.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:07 smithi204 bash[20295]: audit 2024-04-24T16:18:06.378638+0000 mon.smithi178 (mon.0) 451 : audit [DBG] from='client.? 172.21.15.178:0/2607486510' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:07.972 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:18:08.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:08 smithi178 bash[18765]: cluster 2024-04-24T16:18:07.065811+0000 mgr.smithi178.tjvcci (mgr.14197) 268 : cluster [DBG] pgmap v215: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:08.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:08 smithi178 bash[18765]: cluster 2024-04-24T16:18:07.065811+0000 mgr.smithi178.tjvcci (mgr.14197) 268 : cluster [DBG] pgmap v215: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:08.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:08 smithi204 bash[20295]: cluster 2024-04-24T16:18:07.065811+0000 mgr.smithi178.tjvcci (mgr.14197) 268 : cluster [DBG] pgmap v215: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:08.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:08 smithi204 bash[20295]: cluster 2024-04-24T16:18:07.065811+0000 mgr.smithi178.tjvcci (mgr.14197) 268 : cluster [DBG] pgmap v215: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:10.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:10 smithi178 bash[18765]: cluster 2024-04-24T16:18:09.066716+0000 mgr.smithi178.tjvcci (mgr.14197) 269 : cluster [DBG] pgmap v216: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:10.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:10 smithi178 bash[18765]: cluster 2024-04-24T16:18:09.066716+0000 mgr.smithi178.tjvcci (mgr.14197) 269 : cluster [DBG] pgmap v216: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:10.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:10 smithi204 bash[20295]: cluster 2024-04-24T16:18:09.066716+0000 mgr.smithi178.tjvcci (mgr.14197) 269 : cluster [DBG] pgmap v216: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:10.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:10 smithi204 bash[20295]: cluster 2024-04-24T16:18:09.066716+0000 mgr.smithi178.tjvcci (mgr.14197) 269 : cluster [DBG] pgmap v216: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:12.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:12 smithi178 bash[18765]: cluster 2024-04-24T16:18:11.067721+0000 mgr.smithi178.tjvcci (mgr.14197) 270 : cluster [DBG] pgmap v217: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:12.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:12 smithi178 bash[18765]: cluster 2024-04-24T16:18:11.067721+0000 mgr.smithi178.tjvcci (mgr.14197) 270 : cluster [DBG] pgmap v217: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:12.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:12 smithi204 bash[20295]: cluster 2024-04-24T16:18:11.067721+0000 mgr.smithi178.tjvcci (mgr.14197) 270 : cluster [DBG] pgmap v217: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:12.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:12 smithi204 bash[20295]: cluster 2024-04-24T16:18:11.067721+0000 mgr.smithi178.tjvcci (mgr.14197) 270 : cluster [DBG] pgmap v217: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:12.732 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:18:13.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:13 smithi204 bash[20295]: audit 2024-04-24T16:18:12.389257+0000 mon.smithi178 (mon.0) 452 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:13.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:13 smithi204 bash[20295]: audit 2024-04-24T16:18:12.389257+0000 mon.smithi178 (mon.0) 452 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:13.527 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:13 smithi178 bash[18765]: audit 2024-04-24T16:18:12.389257+0000 mon.smithi178 (mon.0) 452 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:13.527 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:13 smithi178 bash[18765]: audit 2024-04-24T16:18:12.389257+0000 mon.smithi178 (mon.0) 452 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:13.926 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:18:14.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:14 smithi178 bash[18765]: cluster 2024-04-24T16:18:13.068686+0000 mgr.smithi178.tjvcci (mgr.14197) 271 : cluster [DBG] pgmap v218: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:14.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:14 smithi178 bash[18765]: cluster 2024-04-24T16:18:13.068686+0000 mgr.smithi178.tjvcci (mgr.14197) 271 : cluster [DBG] pgmap v218: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:14.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:14 smithi178 bash[18765]: audit 2024-04-24T16:18:13.931710+0000 mon.smithi178 (mon.0) 453 : audit [DBG] from='client.? 172.21.15.178:0/653479669' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:14.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:14 smithi178 bash[18765]: audit 2024-04-24T16:18:13.931710+0000 mon.smithi178 (mon.0) 453 : audit [DBG] from='client.? 172.21.15.178:0/653479669' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:14.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:14 smithi204 bash[20295]: cluster 2024-04-24T16:18:13.068686+0000 mgr.smithi178.tjvcci (mgr.14197) 271 : cluster [DBG] pgmap v218: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:14.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:14 smithi204 bash[20295]: cluster 2024-04-24T16:18:13.068686+0000 mgr.smithi178.tjvcci (mgr.14197) 271 : cluster [DBG] pgmap v218: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:14.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:14 smithi204 bash[20295]: audit 2024-04-24T16:18:13.931710+0000 mon.smithi178 (mon.0) 453 : audit [DBG] from='client.? 172.21.15.178:0/653479669' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:14.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:14 smithi204 bash[20295]: audit 2024-04-24T16:18:13.931710+0000 mon.smithi178 (mon.0) 453 : audit [DBG] from='client.? 172.21.15.178:0/653479669' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:14.650 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:18:15.651 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:18:16.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:16 smithi178 bash[18765]: cluster 2024-04-24T16:18:15.069648+0000 mgr.smithi178.tjvcci (mgr.14197) 272 : cluster [DBG] pgmap v219: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:16.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:16 smithi178 bash[18765]: cluster 2024-04-24T16:18:15.069648+0000 mgr.smithi178.tjvcci (mgr.14197) 272 : cluster [DBG] pgmap v219: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:16.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:16 smithi204 bash[20295]: cluster 2024-04-24T16:18:15.069648+0000 mgr.smithi178.tjvcci (mgr.14197) 272 : cluster [DBG] pgmap v219: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:16.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:16 smithi204 bash[20295]: cluster 2024-04-24T16:18:15.069648+0000 mgr.smithi178.tjvcci (mgr.14197) 272 : cluster [DBG] pgmap v219: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:17.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:17 smithi178 bash[18765]: audit 2024-04-24T16:18:17.153830+0000 mon.smithi178 (mon.0) 454 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:18:17.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:17 smithi178 bash[18765]: audit 2024-04-24T16:18:17.153830+0000 mon.smithi178 (mon.0) 454 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:18:17.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:17 smithi204 bash[20295]: audit 2024-04-24T16:18:17.153830+0000 mon.smithi178 (mon.0) 454 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:18:17.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:17 smithi204 bash[20295]: audit 2024-04-24T16:18:17.153830+0000 mon.smithi178 (mon.0) 454 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:18:18.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:18 smithi204 bash[20295]: cluster 2024-04-24T16:18:17.070605+0000 mgr.smithi178.tjvcci (mgr.14197) 273 : cluster [DBG] pgmap v220: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:18.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:18 smithi204 bash[20295]: cluster 2024-04-24T16:18:17.070605+0000 mgr.smithi178.tjvcci (mgr.14197) 273 : cluster [DBG] pgmap v220: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:18.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:18 smithi178 bash[18765]: cluster 2024-04-24T16:18:17.070605+0000 mgr.smithi178.tjvcci (mgr.14197) 273 : cluster [DBG] pgmap v220: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:18.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:18 smithi178 bash[18765]: cluster 2024-04-24T16:18:17.070605+0000 mgr.smithi178.tjvcci (mgr.14197) 273 : cluster [DBG] pgmap v220: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:20.415 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:18:20.436 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:20 smithi178 bash[18765]: cluster 2024-04-24T16:18:19.071656+0000 mgr.smithi178.tjvcci (mgr.14197) 274 : cluster [DBG] pgmap v221: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:20.436 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:20 smithi178 bash[18765]: cluster 2024-04-24T16:18:19.071656+0000 mgr.smithi178.tjvcci (mgr.14197) 274 : cluster [DBG] pgmap v221: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:20.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:20 smithi204 bash[20295]: cluster 2024-04-24T16:18:19.071656+0000 mgr.smithi178.tjvcci (mgr.14197) 274 : cluster [DBG] pgmap v221: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:20.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:20 smithi204 bash[20295]: cluster 2024-04-24T16:18:19.071656+0000 mgr.smithi178.tjvcci (mgr.14197) 274 : cluster [DBG] pgmap v221: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:21.548 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:18:22.109 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:18:22.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:22 smithi178 bash[18765]: cluster 2024-04-24T16:18:21.072630+0000 mgr.smithi178.tjvcci (mgr.14197) 275 : cluster [DBG] pgmap v222: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:22.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:22 smithi178 bash[18765]: cluster 2024-04-24T16:18:21.072630+0000 mgr.smithi178.tjvcci (mgr.14197) 275 : cluster [DBG] pgmap v222: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:22.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:22 smithi178 bash[18765]: audit 2024-04-24T16:18:21.553241+0000 mon.smithi178 (mon.0) 455 : audit [DBG] from='client.? 172.21.15.178:0/3399556356' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:22.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:22 smithi178 bash[18765]: audit 2024-04-24T16:18:21.553241+0000 mon.smithi178 (mon.0) 455 : audit [DBG] from='client.? 172.21.15.178:0/3399556356' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:22.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:22 smithi204 bash[20295]: cluster 2024-04-24T16:18:21.072630+0000 mgr.smithi178.tjvcci (mgr.14197) 275 : cluster [DBG] pgmap v222: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:22.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:22 smithi204 bash[20295]: cluster 2024-04-24T16:18:21.072630+0000 mgr.smithi178.tjvcci (mgr.14197) 275 : cluster [DBG] pgmap v222: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:22.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:22 smithi204 bash[20295]: audit 2024-04-24T16:18:21.553241+0000 mon.smithi178 (mon.0) 455 : audit [DBG] from='client.? 172.21.15.178:0/3399556356' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:22.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:22 smithi204 bash[20295]: audit 2024-04-24T16:18:21.553241+0000 mon.smithi178 (mon.0) 455 : audit [DBG] from='client.? 172.21.15.178:0/3399556356' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:23.110 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:18:24.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:24 smithi204 bash[20295]: cluster 2024-04-24T16:18:23.073579+0000 mgr.smithi178.tjvcci (mgr.14197) 276 : cluster [DBG] pgmap v223: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:24.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:24 smithi204 bash[20295]: cluster 2024-04-24T16:18:23.073579+0000 mgr.smithi178.tjvcci (mgr.14197) 276 : cluster [DBG] pgmap v223: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:24.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:24 smithi178 bash[18765]: cluster 2024-04-24T16:18:23.073579+0000 mgr.smithi178.tjvcci (mgr.14197) 276 : cluster [DBG] pgmap v223: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:24.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:24 smithi178 bash[18765]: cluster 2024-04-24T16:18:23.073579+0000 mgr.smithi178.tjvcci (mgr.14197) 276 : cluster [DBG] pgmap v223: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:25.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:25 smithi178 bash[18765]: audit 2024-04-24T16:18:25.073877+0000 mon.smithi178 (mon.0) 456 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:18:25.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:25 smithi178 bash[18765]: audit 2024-04-24T16:18:25.073877+0000 mon.smithi178 (mon.0) 456 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:18:25.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:25 smithi178 bash[18765]: audit 2024-04-24T16:18:25.075882+0000 mon.smithi178 (mon.0) 457 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:18:25.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:25 smithi178 bash[18765]: audit 2024-04-24T16:18:25.075882+0000 mon.smithi178 (mon.0) 457 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:18:25.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:25 smithi178 bash[18765]: audit 2024-04-24T16:18:25.087571+0000 mon.smithi178 (mon.0) 458 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:18:25.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:25 smithi178 bash[18765]: audit 2024-04-24T16:18:25.087571+0000 mon.smithi178 (mon.0) 458 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:18:25.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:25 smithi178 bash[18765]: audit 2024-04-24T16:18:25.095606+0000 mon.smithi178 (mon.0) 459 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:18:25.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:25 smithi178 bash[18765]: audit 2024-04-24T16:18:25.095606+0000 mon.smithi178 (mon.0) 459 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:18:25.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:25 smithi204 bash[20295]: audit 2024-04-24T16:18:25.073877+0000 mon.smithi178 (mon.0) 456 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:18:25.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:25 smithi204 bash[20295]: audit 2024-04-24T16:18:25.073877+0000 mon.smithi178 (mon.0) 456 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:18:25.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:25 smithi204 bash[20295]: audit 2024-04-24T16:18:25.075882+0000 mon.smithi178 (mon.0) 457 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:18:25.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:25 smithi204 bash[20295]: audit 2024-04-24T16:18:25.075882+0000 mon.smithi178 (mon.0) 457 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:18:25.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:25 smithi204 bash[20295]: audit 2024-04-24T16:18:25.087571+0000 mon.smithi178 (mon.0) 458 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:18:25.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:25 smithi204 bash[20295]: audit 2024-04-24T16:18:25.087571+0000 mon.smithi178 (mon.0) 458 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:18:25.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:25 smithi204 bash[20295]: audit 2024-04-24T16:18:25.095606+0000 mon.smithi178 (mon.0) 459 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:18:25.631 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:25 smithi204 bash[20295]: audit 2024-04-24T16:18:25.095606+0000 mon.smithi178 (mon.0) 459 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:18:26.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:26 smithi178 bash[18765]: cluster 2024-04-24T16:18:25.074567+0000 mgr.smithi178.tjvcci (mgr.14197) 277 : cluster [DBG] pgmap v224: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:26.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:26 smithi178 bash[18765]: cluster 2024-04-24T16:18:25.074567+0000 mgr.smithi178.tjvcci (mgr.14197) 277 : cluster [DBG] pgmap v224: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:26.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:26 smithi178 bash[18765]: cluster 2024-04-24T16:18:25.078884+0000 mgr.smithi178.tjvcci (mgr.14197) 278 : cluster [DBG] pgmap v225: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:26.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:26 smithi178 bash[18765]: cluster 2024-04-24T16:18:25.078884+0000 mgr.smithi178.tjvcci (mgr.14197) 278 : cluster [DBG] pgmap v225: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:26.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:26 smithi178 bash[18765]: cluster 2024-04-24T16:18:25.080131+0000 mgr.smithi178.tjvcci (mgr.14197) 279 : cluster [DBG] pgmap v226: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:26.585 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:26 smithi178 bash[18765]: cluster 2024-04-24T16:18:25.080131+0000 mgr.smithi178.tjvcci (mgr.14197) 279 : cluster [DBG] pgmap v226: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:26.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:26 smithi204 bash[20295]: cluster 2024-04-24T16:18:25.074567+0000 mgr.smithi178.tjvcci (mgr.14197) 277 : cluster [DBG] pgmap v224: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:26.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:26 smithi204 bash[20295]: cluster 2024-04-24T16:18:25.074567+0000 mgr.smithi178.tjvcci (mgr.14197) 277 : cluster [DBG] pgmap v224: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:26.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:26 smithi204 bash[20295]: cluster 2024-04-24T16:18:25.078884+0000 mgr.smithi178.tjvcci (mgr.14197) 278 : cluster [DBG] pgmap v225: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:26.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:26 smithi204 bash[20295]: cluster 2024-04-24T16:18:25.078884+0000 mgr.smithi178.tjvcci (mgr.14197) 278 : cluster [DBG] pgmap v225: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:26.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:26 smithi204 bash[20295]: cluster 2024-04-24T16:18:25.080131+0000 mgr.smithi178.tjvcci (mgr.14197) 279 : cluster [DBG] pgmap v226: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:26.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:26 smithi204 bash[20295]: cluster 2024-04-24T16:18:25.080131+0000 mgr.smithi178.tjvcci (mgr.14197) 279 : cluster [DBG] pgmap v226: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:27.873 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:18:28.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:28 smithi178 bash[18765]: cluster 2024-04-24T16:18:27.081068+0000 mgr.smithi178.tjvcci (mgr.14197) 280 : cluster [DBG] pgmap v227: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:28.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:28 smithi178 bash[18765]: cluster 2024-04-24T16:18:27.081068+0000 mgr.smithi178.tjvcci (mgr.14197) 280 : cluster [DBG] pgmap v227: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:28.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:28 smithi178 bash[18765]: audit 2024-04-24T16:18:27.389033+0000 mon.smithi178 (mon.0) 460 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:28.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:28 smithi178 bash[18765]: audit 2024-04-24T16:18:27.389033+0000 mon.smithi178 (mon.0) 460 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:28.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:28 smithi204 bash[20295]: cluster 2024-04-24T16:18:27.081068+0000 mgr.smithi178.tjvcci (mgr.14197) 280 : cluster [DBG] pgmap v227: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:28.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:28 smithi204 bash[20295]: cluster 2024-04-24T16:18:27.081068+0000 mgr.smithi178.tjvcci (mgr.14197) 280 : cluster [DBG] pgmap v227: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:28.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:28 smithi204 bash[20295]: audit 2024-04-24T16:18:27.389033+0000 mon.smithi178 (mon.0) 460 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:28.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:28 smithi204 bash[20295]: audit 2024-04-24T16:18:27.389033+0000 mon.smithi178 (mon.0) 460 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:29.052 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:18:29.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:29 smithi178 bash[18765]: audit 2024-04-24T16:18:29.057499+0000 mon.smithi178 (mon.0) 461 : audit [DBG] from='client.? 172.21.15.178:0/2584512299' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:29.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:29 smithi178 bash[18765]: audit 2024-04-24T16:18:29.057499+0000 mon.smithi178 (mon.0) 461 : audit [DBG] from='client.? 172.21.15.178:0/2584512299' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:29.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:29 smithi204 bash[20295]: audit 2024-04-24T16:18:29.057499+0000 mon.smithi178 (mon.0) 461 : audit [DBG] from='client.? 172.21.15.178:0/2584512299' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:29.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:29 smithi204 bash[20295]: audit 2024-04-24T16:18:29.057499+0000 mon.smithi178 (mon.0) 461 : audit [DBG] from='client.? 172.21.15.178:0/2584512299' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:29.703 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:18:30.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:30 smithi178 bash[18765]: cluster 2024-04-24T16:18:29.081614+0000 mgr.smithi178.tjvcci (mgr.14197) 281 : cluster [DBG] pgmap v228: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:30.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:30 smithi178 bash[18765]: cluster 2024-04-24T16:18:29.081614+0000 mgr.smithi178.tjvcci (mgr.14197) 281 : cluster [DBG] pgmap v228: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:30.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:30 smithi204 bash[20295]: cluster 2024-04-24T16:18:29.081614+0000 mgr.smithi178.tjvcci (mgr.14197) 281 : cluster [DBG] pgmap v228: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:30.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:30 smithi204 bash[20295]: cluster 2024-04-24T16:18:29.081614+0000 mgr.smithi178.tjvcci (mgr.14197) 281 : cluster [DBG] pgmap v228: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:30.704 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:18:32.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:32 smithi178 bash[18765]: cluster 2024-04-24T16:18:31.082560+0000 mgr.smithi178.tjvcci (mgr.14197) 282 : cluster [DBG] pgmap v229: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:32.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:32 smithi178 bash[18765]: cluster 2024-04-24T16:18:31.082560+0000 mgr.smithi178.tjvcci (mgr.14197) 282 : cluster [DBG] pgmap v229: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:32.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:32 smithi204 bash[20295]: cluster 2024-04-24T16:18:31.082560+0000 mgr.smithi178.tjvcci (mgr.14197) 282 : cluster [DBG] pgmap v229: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:32.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:32 smithi204 bash[20295]: cluster 2024-04-24T16:18:31.082560+0000 mgr.smithi178.tjvcci (mgr.14197) 282 : cluster [DBG] pgmap v229: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:34.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:34 smithi178 bash[18765]: cluster 2024-04-24T16:18:33.083608+0000 mgr.smithi178.tjvcci (mgr.14197) 283 : cluster [DBG] pgmap v230: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:34.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:34 smithi178 bash[18765]: cluster 2024-04-24T16:18:33.083608+0000 mgr.smithi178.tjvcci (mgr.14197) 283 : cluster [DBG] pgmap v230: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:34.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:34 smithi204 bash[20295]: cluster 2024-04-24T16:18:33.083608+0000 mgr.smithi178.tjvcci (mgr.14197) 283 : cluster [DBG] pgmap v230: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:34.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:34 smithi204 bash[20295]: cluster 2024-04-24T16:18:33.083608+0000 mgr.smithi178.tjvcci (mgr.14197) 283 : cluster [DBG] pgmap v230: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:35.480 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:18:36.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:36 smithi178 bash[18765]: cluster 2024-04-24T16:18:35.084593+0000 mgr.smithi178.tjvcci (mgr.14197) 284 : cluster [DBG] pgmap v231: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:36.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:36 smithi178 bash[18765]: cluster 2024-04-24T16:18:35.084593+0000 mgr.smithi178.tjvcci (mgr.14197) 284 : cluster [DBG] pgmap v231: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:36.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:36 smithi204 bash[20295]: cluster 2024-04-24T16:18:35.084593+0000 mgr.smithi178.tjvcci (mgr.14197) 284 : cluster [DBG] pgmap v231: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:36.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:36 smithi204 bash[20295]: cluster 2024-04-24T16:18:35.084593+0000 mgr.smithi178.tjvcci (mgr.14197) 284 : cluster [DBG] pgmap v231: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:36.730 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:18:37.320 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:18:37.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:37 smithi178 bash[18765]: audit 2024-04-24T16:18:36.732542+0000 mon.smithi178 (mon.0) 462 : audit [DBG] from='client.? 172.21.15.178:0/1388109952' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:37.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:37 smithi178 bash[18765]: audit 2024-04-24T16:18:36.732542+0000 mon.smithi178 (mon.0) 462 : audit [DBG] from='client.? 172.21.15.178:0/1388109952' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:37.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:37 smithi204 bash[20295]: audit 2024-04-24T16:18:36.732542+0000 mon.smithi178 (mon.0) 462 : audit [DBG] from='client.? 172.21.15.178:0/1388109952' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:37.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:37 smithi204 bash[20295]: audit 2024-04-24T16:18:36.732542+0000 mon.smithi178 (mon.0) 462 : audit [DBG] from='client.? 172.21.15.178:0/1388109952' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:38.322 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:18:38.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:38 smithi178 bash[18765]: cluster 2024-04-24T16:18:37.085633+0000 mgr.smithi178.tjvcci (mgr.14197) 285 : cluster [DBG] pgmap v232: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:38.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:38 smithi178 bash[18765]: cluster 2024-04-24T16:18:37.085633+0000 mgr.smithi178.tjvcci (mgr.14197) 285 : cluster [DBG] pgmap v232: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:38.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:38 smithi204 bash[20295]: cluster 2024-04-24T16:18:37.085633+0000 mgr.smithi178.tjvcci (mgr.14197) 285 : cluster [DBG] pgmap v232: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:38.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:38 smithi204 bash[20295]: cluster 2024-04-24T16:18:37.085633+0000 mgr.smithi178.tjvcci (mgr.14197) 285 : cluster [DBG] pgmap v232: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:40.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:40 smithi178 bash[18765]: cluster 2024-04-24T16:18:39.086725+0000 mgr.smithi178.tjvcci (mgr.14197) 286 : cluster [DBG] pgmap v233: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:40.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:40 smithi178 bash[18765]: cluster 2024-04-24T16:18:39.086725+0000 mgr.smithi178.tjvcci (mgr.14197) 286 : cluster [DBG] pgmap v233: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:40.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:40 smithi204 bash[20295]: cluster 2024-04-24T16:18:39.086725+0000 mgr.smithi178.tjvcci (mgr.14197) 286 : cluster [DBG] pgmap v233: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:40.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:40 smithi204 bash[20295]: cluster 2024-04-24T16:18:39.086725+0000 mgr.smithi178.tjvcci (mgr.14197) 286 : cluster [DBG] pgmap v233: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:42.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:42 smithi178 bash[18765]: cluster 2024-04-24T16:18:41.087506+0000 mgr.smithi178.tjvcci (mgr.14197) 287 : cluster [DBG] pgmap v234: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:42.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:42 smithi178 bash[18765]: cluster 2024-04-24T16:18:41.087506+0000 mgr.smithi178.tjvcci (mgr.14197) 287 : cluster [DBG] pgmap v234: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:42.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:42 smithi204 bash[20295]: cluster 2024-04-24T16:18:41.087506+0000 mgr.smithi178.tjvcci (mgr.14197) 287 : cluster [DBG] pgmap v234: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:42.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:42 smithi204 bash[20295]: cluster 2024-04-24T16:18:41.087506+0000 mgr.smithi178.tjvcci (mgr.14197) 287 : cluster [DBG] pgmap v234: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:43.081 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:18:43.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:43 smithi178 bash[18765]: audit 2024-04-24T16:18:42.389924+0000 mon.smithi178 (mon.0) 463 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:43.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:43 smithi178 bash[18765]: audit 2024-04-24T16:18:42.389924+0000 mon.smithi178 (mon.0) 463 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:43.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:43 smithi204 bash[20295]: audit 2024-04-24T16:18:42.389924+0000 mon.smithi178 (mon.0) 463 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:43.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:43 smithi204 bash[20295]: audit 2024-04-24T16:18:42.389924+0000 mon.smithi178 (mon.0) 463 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:44.298 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:18:44.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:44 smithi178 bash[18765]: cluster 2024-04-24T16:18:43.088192+0000 mgr.smithi178.tjvcci (mgr.14197) 288 : cluster [DBG] pgmap v235: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:44.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:44 smithi178 bash[18765]: cluster 2024-04-24T16:18:43.088192+0000 mgr.smithi178.tjvcci (mgr.14197) 288 : cluster [DBG] pgmap v235: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:44.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:44 smithi178 bash[18765]: audit 2024-04-24T16:18:44.303665+0000 mon.smithi178 (mon.0) 464 : audit [DBG] from='client.? 172.21.15.178:0/1614221393' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:44.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:44 smithi178 bash[18765]: audit 2024-04-24T16:18:44.303665+0000 mon.smithi178 (mon.0) 464 : audit [DBG] from='client.? 172.21.15.178:0/1614221393' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:44.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:44 smithi204 bash[20295]: cluster 2024-04-24T16:18:43.088192+0000 mgr.smithi178.tjvcci (mgr.14197) 288 : cluster [DBG] pgmap v235: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:44.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:44 smithi204 bash[20295]: cluster 2024-04-24T16:18:43.088192+0000 mgr.smithi178.tjvcci (mgr.14197) 288 : cluster [DBG] pgmap v235: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:44.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:44 smithi204 bash[20295]: audit 2024-04-24T16:18:44.303665+0000 mon.smithi178 (mon.0) 464 : audit [DBG] from='client.? 172.21.15.178:0/1614221393' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:44.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:44 smithi204 bash[20295]: audit 2024-04-24T16:18:44.303665+0000 mon.smithi178 (mon.0) 464 : audit [DBG] from='client.? 172.21.15.178:0/1614221393' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:44.920 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:18:45.922 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:18:46.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:46 smithi178 bash[18765]: cluster 2024-04-24T16:18:45.089106+0000 mgr.smithi178.tjvcci (mgr.14197) 289 : cluster [DBG] pgmap v236: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:46.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:46 smithi178 bash[18765]: cluster 2024-04-24T16:18:45.089106+0000 mgr.smithi178.tjvcci (mgr.14197) 289 : cluster [DBG] pgmap v236: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:46.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:46 smithi204 bash[20295]: cluster 2024-04-24T16:18:45.089106+0000 mgr.smithi178.tjvcci (mgr.14197) 289 : cluster [DBG] pgmap v236: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:46.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:46 smithi204 bash[20295]: cluster 2024-04-24T16:18:45.089106+0000 mgr.smithi178.tjvcci (mgr.14197) 289 : cluster [DBG] pgmap v236: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:48.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:48 smithi178 bash[18765]: cluster 2024-04-24T16:18:47.090099+0000 mgr.smithi178.tjvcci (mgr.14197) 290 : cluster [DBG] pgmap v237: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:48.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:48 smithi178 bash[18765]: cluster 2024-04-24T16:18:47.090099+0000 mgr.smithi178.tjvcci (mgr.14197) 290 : cluster [DBG] pgmap v237: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:48.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:48 smithi204 bash[20295]: cluster 2024-04-24T16:18:47.090099+0000 mgr.smithi178.tjvcci (mgr.14197) 290 : cluster [DBG] pgmap v237: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:48.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:48 smithi204 bash[20295]: cluster 2024-04-24T16:18:47.090099+0000 mgr.smithi178.tjvcci (mgr.14197) 290 : cluster [DBG] pgmap v237: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:50.693 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:18:50.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:50 smithi178 bash[18765]: cluster 2024-04-24T16:18:49.091049+0000 mgr.smithi178.tjvcci (mgr.14197) 291 : cluster [DBG] pgmap v238: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:50.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:50 smithi178 bash[18765]: cluster 2024-04-24T16:18:49.091049+0000 mgr.smithi178.tjvcci (mgr.14197) 291 : cluster [DBG] pgmap v238: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:50.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:50 smithi204 bash[20295]: cluster 2024-04-24T16:18:49.091049+0000 mgr.smithi178.tjvcci (mgr.14197) 291 : cluster [DBG] pgmap v238: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:50.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:50 smithi204 bash[20295]: cluster 2024-04-24T16:18:49.091049+0000 mgr.smithi178.tjvcci (mgr.14197) 291 : cluster [DBG] pgmap v238: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:51.868 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:18:52.481 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:18:52.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:52 smithi178 bash[18765]: cluster 2024-04-24T16:18:51.092019+0000 mgr.smithi178.tjvcci (mgr.14197) 292 : cluster [DBG] pgmap v239: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:52.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:52 smithi178 bash[18765]: cluster 2024-04-24T16:18:51.092019+0000 mgr.smithi178.tjvcci (mgr.14197) 292 : cluster [DBG] pgmap v239: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:52.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:52 smithi178 bash[18765]: audit 2024-04-24T16:18:51.874025+0000 mon.smithi178 (mon.0) 465 : audit [DBG] from='client.? 172.21.15.178:0/1856975724' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:52.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:52 smithi178 bash[18765]: audit 2024-04-24T16:18:51.874025+0000 mon.smithi178 (mon.0) 465 : audit [DBG] from='client.? 172.21.15.178:0/1856975724' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:52.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:52 smithi204 bash[20295]: cluster 2024-04-24T16:18:51.092019+0000 mgr.smithi178.tjvcci (mgr.14197) 292 : cluster [DBG] pgmap v239: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:52.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:52 smithi204 bash[20295]: cluster 2024-04-24T16:18:51.092019+0000 mgr.smithi178.tjvcci (mgr.14197) 292 : cluster [DBG] pgmap v239: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:52.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:52 smithi204 bash[20295]: audit 2024-04-24T16:18:51.874025+0000 mon.smithi178 (mon.0) 465 : audit [DBG] from='client.? 172.21.15.178:0/1856975724' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:52.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:52 smithi204 bash[20295]: audit 2024-04-24T16:18:51.874025+0000 mon.smithi178 (mon.0) 465 : audit [DBG] from='client.? 172.21.15.178:0/1856975724' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:53.482 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:18:54.583 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:54 smithi178 bash[18765]: cluster 2024-04-24T16:18:53.092994+0000 mgr.smithi178.tjvcci (mgr.14197) 293 : cluster [DBG] pgmap v240: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:54.584 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:54 smithi178 bash[18765]: cluster 2024-04-24T16:18:53.092994+0000 mgr.smithi178.tjvcci (mgr.14197) 293 : cluster [DBG] pgmap v240: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:54.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:54 smithi204 bash[20295]: cluster 2024-04-24T16:18:53.092994+0000 mgr.smithi178.tjvcci (mgr.14197) 293 : cluster [DBG] pgmap v240: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:54.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:54 smithi204 bash[20295]: cluster 2024-04-24T16:18:53.092994+0000 mgr.smithi178.tjvcci (mgr.14197) 293 : cluster [DBG] pgmap v240: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:56.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:56 smithi178 bash[18765]: cluster 2024-04-24T16:18:55.093991+0000 mgr.smithi178.tjvcci (mgr.14197) 294 : cluster [DBG] pgmap v241: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:56.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:56 smithi178 bash[18765]: cluster 2024-04-24T16:18:55.093991+0000 mgr.smithi178.tjvcci (mgr.14197) 294 : cluster [DBG] pgmap v241: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:56.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:56 smithi204 bash[20295]: cluster 2024-04-24T16:18:55.093991+0000 mgr.smithi178.tjvcci (mgr.14197) 294 : cluster [DBG] pgmap v241: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:56.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:56 smithi204 bash[20295]: cluster 2024-04-24T16:18:55.093991+0000 mgr.smithi178.tjvcci (mgr.14197) 294 : cluster [DBG] pgmap v241: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:57.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:57 smithi178 bash[18765]: audit 2024-04-24T16:18:57.390140+0000 mon.smithi178 (mon.0) 466 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:57.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:57 smithi178 bash[18765]: audit 2024-04-24T16:18:57.390140+0000 mon.smithi178 (mon.0) 466 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:57.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:57 smithi204 bash[20295]: audit 2024-04-24T16:18:57.390140+0000 mon.smithi178 (mon.0) 466 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:57.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:57 smithi204 bash[20295]: audit 2024-04-24T16:18:57.390140+0000 mon.smithi178 (mon.0) 466 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:18:58.250 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:18:58.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:58 smithi178 bash[18765]: cluster 2024-04-24T16:18:57.094946+0000 mgr.smithi178.tjvcci (mgr.14197) 295 : cluster [DBG] pgmap v242: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:58.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:58 smithi178 bash[18765]: cluster 2024-04-24T16:18:57.094946+0000 mgr.smithi178.tjvcci (mgr.14197) 295 : cluster [DBG] pgmap v242: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:58.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:58 smithi204 bash[20295]: cluster 2024-04-24T16:18:57.094946+0000 mgr.smithi178.tjvcci (mgr.14197) 295 : cluster [DBG] pgmap v242: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:58.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:58 smithi204 bash[20295]: cluster 2024-04-24T16:18:57.094946+0000 mgr.smithi178.tjvcci (mgr.14197) 295 : cluster [DBG] pgmap v242: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:18:59.447 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:18:59.645 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:59 smithi178 bash[18765]: audit 2024-04-24T16:18:59.452877+0000 mon.smithi178 (mon.0) 467 : audit [DBG] from='client.? 172.21.15.178:0/774004' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:59.645 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:18:59 smithi178 bash[18765]: audit 2024-04-24T16:18:59.452877+0000 mon.smithi178 (mon.0) 467 : audit [DBG] from='client.? 172.21.15.178:0/774004' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:59.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:59 smithi204 bash[20295]: audit 2024-04-24T16:18:59.452877+0000 mon.smithi178 (mon.0) 467 : audit [DBG] from='client.? 172.21.15.178:0/774004' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:18:59.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:18:59 smithi204 bash[20295]: audit 2024-04-24T16:18:59.452877+0000 mon.smithi178 (mon.0) 467 : audit [DBG] from='client.? 172.21.15.178:0/774004' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:00.096 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:19:00.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:00 smithi178 bash[18765]: cluster 2024-04-24T16:18:59.095442+0000 mgr.smithi178.tjvcci (mgr.14197) 296 : cluster [DBG] pgmap v243: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:00.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:00 smithi178 bash[18765]: cluster 2024-04-24T16:18:59.095442+0000 mgr.smithi178.tjvcci (mgr.14197) 296 : cluster [DBG] pgmap v243: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:00.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:00 smithi204 bash[20295]: cluster 2024-04-24T16:18:59.095442+0000 mgr.smithi178.tjvcci (mgr.14197) 296 : cluster [DBG] pgmap v243: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:00.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:00 smithi204 bash[20295]: cluster 2024-04-24T16:18:59.095442+0000 mgr.smithi178.tjvcci (mgr.14197) 296 : cluster [DBG] pgmap v243: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:01.098 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:19:02.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:02 smithi204 bash[20295]: cluster 2024-04-24T16:19:01.096411+0000 mgr.smithi178.tjvcci (mgr.14197) 297 : cluster [DBG] pgmap v244: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:02.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:02 smithi204 bash[20295]: cluster 2024-04-24T16:19:01.096411+0000 mgr.smithi178.tjvcci (mgr.14197) 297 : cluster [DBG] pgmap v244: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:03.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:02 smithi178 bash[18765]: cluster 2024-04-24T16:19:01.096411+0000 mgr.smithi178.tjvcci (mgr.14197) 297 : cluster [DBG] pgmap v244: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:03.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:02 smithi178 bash[18765]: cluster 2024-04-24T16:19:01.096411+0000 mgr.smithi178.tjvcci (mgr.14197) 297 : cluster [DBG] pgmap v244: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:04.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:04 smithi178 bash[18765]: cluster 2024-04-24T16:19:03.097371+0000 mgr.smithi178.tjvcci (mgr.14197) 298 : cluster [DBG] pgmap v245: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:04.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:04 smithi178 bash[18765]: cluster 2024-04-24T16:19:03.097371+0000 mgr.smithi178.tjvcci (mgr.14197) 298 : cluster [DBG] pgmap v245: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:04.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:04 smithi204 bash[20295]: cluster 2024-04-24T16:19:03.097371+0000 mgr.smithi178.tjvcci (mgr.14197) 298 : cluster [DBG] pgmap v245: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:04.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:04 smithi204 bash[20295]: cluster 2024-04-24T16:19:03.097371+0000 mgr.smithi178.tjvcci (mgr.14197) 298 : cluster [DBG] pgmap v245: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:05.873 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:19:06.856 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:06 smithi178 bash[18765]: cluster 2024-04-24T16:19:05.098417+0000 mgr.smithi178.tjvcci (mgr.14197) 299 : cluster [DBG] pgmap v246: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:06.856 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:06 smithi178 bash[18765]: cluster 2024-04-24T16:19:05.098417+0000 mgr.smithi178.tjvcci (mgr.14197) 299 : cluster [DBG] pgmap v246: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:06.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:06 smithi204 bash[20295]: cluster 2024-04-24T16:19:05.098417+0000 mgr.smithi178.tjvcci (mgr.14197) 299 : cluster [DBG] pgmap v246: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:06.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:06 smithi204 bash[20295]: cluster 2024-04-24T16:19:05.098417+0000 mgr.smithi178.tjvcci (mgr.14197) 299 : cluster [DBG] pgmap v246: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:07.199 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:19:07.861 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:07 smithi178 bash[18765]: audit 2024-04-24T16:19:07.205166+0000 mon.smithi178 (mon.0) 468 : audit [DBG] from='client.? 172.21.15.178:0/743819755' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:07.862 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:07 smithi178 bash[18765]: audit 2024-04-24T16:19:07.205166+0000 mon.smithi178 (mon.0) 468 : audit [DBG] from='client.? 172.21.15.178:0/743819755' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:07.862 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:19:07.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:07 smithi204 bash[20295]: audit 2024-04-24T16:19:07.205166+0000 mon.smithi178 (mon.0) 468 : audit [DBG] from='client.? 172.21.15.178:0/743819755' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:07.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:07 smithi204 bash[20295]: audit 2024-04-24T16:19:07.205166+0000 mon.smithi178 (mon.0) 468 : audit [DBG] from='client.? 172.21.15.178:0/743819755' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:08.864 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:19:08.875 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:08 smithi178 bash[18765]: cluster 2024-04-24T16:19:07.099380+0000 mgr.smithi178.tjvcci (mgr.14197) 300 : cluster [DBG] pgmap v247: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:08.875 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:08 smithi178 bash[18765]: cluster 2024-04-24T16:19:07.099380+0000 mgr.smithi178.tjvcci (mgr.14197) 300 : cluster [DBG] pgmap v247: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:08.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:08 smithi204 bash[20295]: cluster 2024-04-24T16:19:07.099380+0000 mgr.smithi178.tjvcci (mgr.14197) 300 : cluster [DBG] pgmap v247: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:08.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:08 smithi204 bash[20295]: cluster 2024-04-24T16:19:07.099380+0000 mgr.smithi178.tjvcci (mgr.14197) 300 : cluster [DBG] pgmap v247: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:10.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:10 smithi204 bash[20295]: cluster 2024-04-24T16:19:09.099993+0000 mgr.smithi178.tjvcci (mgr.14197) 301 : cluster [DBG] pgmap v248: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:10.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:10 smithi204 bash[20295]: cluster 2024-04-24T16:19:09.099993+0000 mgr.smithi178.tjvcci (mgr.14197) 301 : cluster [DBG] pgmap v248: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:11.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:10 smithi178 bash[18765]: cluster 2024-04-24T16:19:09.099993+0000 mgr.smithi178.tjvcci (mgr.14197) 301 : cluster [DBG] pgmap v248: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:11.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:10 smithi178 bash[18765]: cluster 2024-04-24T16:19:09.099993+0000 mgr.smithi178.tjvcci (mgr.14197) 301 : cluster [DBG] pgmap v248: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:12.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:12 smithi204 bash[20295]: cluster 2024-04-24T16:19:11.100976+0000 mgr.smithi178.tjvcci (mgr.14197) 302 : cluster [DBG] pgmap v249: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:12.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:12 smithi204 bash[20295]: cluster 2024-04-24T16:19:11.100976+0000 mgr.smithi178.tjvcci (mgr.14197) 302 : cluster [DBG] pgmap v249: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:12.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:12 smithi204 bash[20295]: audit 2024-04-24T16:19:12.390760+0000 mon.smithi178 (mon.0) 469 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:12.880 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:12 smithi204 bash[20295]: audit 2024-04-24T16:19:12.390760+0000 mon.smithi178 (mon.0) 469 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:13.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:12 smithi178 bash[18765]: cluster 2024-04-24T16:19:11.100976+0000 mgr.smithi178.tjvcci (mgr.14197) 302 : cluster [DBG] pgmap v249: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:13.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:12 smithi178 bash[18765]: cluster 2024-04-24T16:19:11.100976+0000 mgr.smithi178.tjvcci (mgr.14197) 302 : cluster [DBG] pgmap v249: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:13.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:12 smithi178 bash[18765]: audit 2024-04-24T16:19:12.390760+0000 mon.smithi178 (mon.0) 469 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:13.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:12 smithi178 bash[18765]: audit 2024-04-24T16:19:12.390760+0000 mon.smithi178 (mon.0) 469 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:13.629 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:19:14.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:14 smithi178 bash[18765]: cluster 2024-04-24T16:19:13.102122+0000 mgr.smithi178.tjvcci (mgr.14197) 303 : cluster [DBG] pgmap v250: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:14.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:14 smithi178 bash[18765]: cluster 2024-04-24T16:19:13.102122+0000 mgr.smithi178.tjvcci (mgr.14197) 303 : cluster [DBG] pgmap v250: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:14.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:14 smithi204 bash[20295]: cluster 2024-04-24T16:19:13.102122+0000 mgr.smithi178.tjvcci (mgr.14197) 303 : cluster [DBG] pgmap v250: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:14.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:14 smithi204 bash[20295]: cluster 2024-04-24T16:19:13.102122+0000 mgr.smithi178.tjvcci (mgr.14197) 303 : cluster [DBG] pgmap v250: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:14.883 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:19:15.541 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:19:15.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:15 smithi178 bash[18765]: audit 2024-04-24T16:19:14.889861+0000 mon.smithi178 (mon.0) 470 : audit [DBG] from='client.? 172.21.15.178:0/2494205554' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:15.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:15 smithi178 bash[18765]: audit 2024-04-24T16:19:14.889861+0000 mon.smithi178 (mon.0) 470 : audit [DBG] from='client.? 172.21.15.178:0/2494205554' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:15.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:15 smithi204 bash[20295]: audit 2024-04-24T16:19:14.889861+0000 mon.smithi178 (mon.0) 470 : audit [DBG] from='client.? 172.21.15.178:0/2494205554' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:15.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:15 smithi204 bash[20295]: audit 2024-04-24T16:19:14.889861+0000 mon.smithi178 (mon.0) 470 : audit [DBG] from='client.? 172.21.15.178:0/2494205554' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:16.542 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:19:16.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:16 smithi178 bash[18765]: cluster 2024-04-24T16:19:15.103064+0000 mgr.smithi178.tjvcci (mgr.14197) 304 : cluster [DBG] pgmap v251: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:16.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:16 smithi178 bash[18765]: cluster 2024-04-24T16:19:15.103064+0000 mgr.smithi178.tjvcci (mgr.14197) 304 : cluster [DBG] pgmap v251: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:16.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:16 smithi204 bash[20295]: cluster 2024-04-24T16:19:15.103064+0000 mgr.smithi178.tjvcci (mgr.14197) 304 : cluster [DBG] pgmap v251: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:16.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:16 smithi204 bash[20295]: cluster 2024-04-24T16:19:15.103064+0000 mgr.smithi178.tjvcci (mgr.14197) 304 : cluster [DBG] pgmap v251: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:19.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:18 smithi178 bash[18765]: cluster 2024-04-24T16:19:17.104044+0000 mgr.smithi178.tjvcci (mgr.14197) 305 : cluster [DBG] pgmap v252: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:19.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:18 smithi178 bash[18765]: cluster 2024-04-24T16:19:17.104044+0000 mgr.smithi178.tjvcci (mgr.14197) 305 : cluster [DBG] pgmap v252: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:19.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:18 smithi204 bash[20295]: cluster 2024-04-24T16:19:17.104044+0000 mgr.smithi178.tjvcci (mgr.14197) 305 : cluster [DBG] pgmap v252: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:19.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:18 smithi204 bash[20295]: cluster 2024-04-24T16:19:17.104044+0000 mgr.smithi178.tjvcci (mgr.14197) 305 : cluster [DBG] pgmap v252: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:21.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:20 smithi178 bash[18765]: cluster 2024-04-24T16:19:19.105143+0000 mgr.smithi178.tjvcci (mgr.14197) 306 : cluster [DBG] pgmap v253: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:21.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:20 smithi178 bash[18765]: cluster 2024-04-24T16:19:19.105143+0000 mgr.smithi178.tjvcci (mgr.14197) 306 : cluster [DBG] pgmap v253: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:21.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:20 smithi204 bash[20295]: cluster 2024-04-24T16:19:19.105143+0000 mgr.smithi178.tjvcci (mgr.14197) 306 : cluster [DBG] pgmap v253: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:21.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:20 smithi204 bash[20295]: cluster 2024-04-24T16:19:19.105143+0000 mgr.smithi178.tjvcci (mgr.14197) 306 : cluster [DBG] pgmap v253: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:21.304 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:19:22.483 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:19:22.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:22 smithi178 bash[18765]: cluster 2024-04-24T16:19:21.106256+0000 mgr.smithi178.tjvcci (mgr.14197) 307 : cluster [DBG] pgmap v254: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:22.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:22 smithi178 bash[18765]: cluster 2024-04-24T16:19:21.106256+0000 mgr.smithi178.tjvcci (mgr.14197) 307 : cluster [DBG] pgmap v254: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:22.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:22 smithi178 bash[18765]: audit 2024-04-24T16:19:22.489300+0000 mon.smithi178 (mon.0) 471 : audit [DBG] from='client.? 172.21.15.178:0/4220730461' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:22.834 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:22 smithi178 bash[18765]: audit 2024-04-24T16:19:22.489300+0000 mon.smithi178 (mon.0) 471 : audit [DBG] from='client.? 172.21.15.178:0/4220730461' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:22.940 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:22 smithi204 bash[20295]: cluster 2024-04-24T16:19:21.106256+0000 mgr.smithi178.tjvcci (mgr.14197) 307 : cluster [DBG] pgmap v254: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:22.941 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:22 smithi204 bash[20295]: cluster 2024-04-24T16:19:21.106256+0000 mgr.smithi178.tjvcci (mgr.14197) 307 : cluster [DBG] pgmap v254: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:22.941 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:22 smithi204 bash[20295]: audit 2024-04-24T16:19:22.489300+0000 mon.smithi178 (mon.0) 471 : audit [DBG] from='client.? 172.21.15.178:0/4220730461' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:22.941 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:22 smithi204 bash[20295]: audit 2024-04-24T16:19:22.489300+0000 mon.smithi178 (mon.0) 471 : audit [DBG] from='client.? 172.21.15.178:0/4220730461' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:23.135 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:19:24.136 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:19:24.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:24 smithi178 bash[18765]: cluster 2024-04-24T16:19:23.107082+0000 mgr.smithi178.tjvcci (mgr.14197) 308 : cluster [DBG] pgmap v255: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:24.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:24 smithi178 bash[18765]: cluster 2024-04-24T16:19:23.107082+0000 mgr.smithi178.tjvcci (mgr.14197) 308 : cluster [DBG] pgmap v255: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:25.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:24 smithi204 bash[20295]: cluster 2024-04-24T16:19:23.107082+0000 mgr.smithi178.tjvcci (mgr.14197) 308 : cluster [DBG] pgmap v255: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:25.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:24 smithi204 bash[20295]: cluster 2024-04-24T16:19:23.107082+0000 mgr.smithi178.tjvcci (mgr.14197) 308 : cluster [DBG] pgmap v255: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:26.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:25 smithi178 bash[18765]: audit 2024-04-24T16:19:25.186913+0000 mon.smithi178 (mon.0) 472 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:19:26.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:25 smithi178 bash[18765]: audit 2024-04-24T16:19:25.186913+0000 mon.smithi178 (mon.0) 472 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:19:26.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:25 smithi204 bash[20295]: audit 2024-04-24T16:19:25.186913+0000 mon.smithi178 (mon.0) 472 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:19:26.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:25 smithi204 bash[20295]: audit 2024-04-24T16:19:25.186913+0000 mon.smithi178 (mon.0) 472 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:19:27.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:26 smithi178 bash[18765]: cluster 2024-04-24T16:19:25.108072+0000 mgr.smithi178.tjvcci (mgr.14197) 309 : cluster [DBG] pgmap v256: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:27.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:26 smithi178 bash[18765]: cluster 2024-04-24T16:19:25.108072+0000 mgr.smithi178.tjvcci (mgr.14197) 309 : cluster [DBG] pgmap v256: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:27.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:26 smithi178 bash[18765]: audit 2024-04-24T16:19:25.713488+0000 mon.smithi178 (mon.0) 473 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:19:27.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:26 smithi178 bash[18765]: audit 2024-04-24T16:19:25.713488+0000 mon.smithi178 (mon.0) 473 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:19:27.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:26 smithi204 bash[20295]: cluster 2024-04-24T16:19:25.108072+0000 mgr.smithi178.tjvcci (mgr.14197) 309 : cluster [DBG] pgmap v256: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:27.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:26 smithi204 bash[20295]: cluster 2024-04-24T16:19:25.108072+0000 mgr.smithi178.tjvcci (mgr.14197) 309 : cluster [DBG] pgmap v256: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:27.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:26 smithi204 bash[20295]: audit 2024-04-24T16:19:25.713488+0000 mon.smithi178 (mon.0) 473 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:19:27.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:26 smithi204 bash[20295]: audit 2024-04-24T16:19:25.713488+0000 mon.smithi178 (mon.0) 473 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:19:28.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:27 smithi178 bash[18765]: audit 2024-04-24T16:19:27.391444+0000 mon.smithi178 (mon.0) 474 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:28.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:27 smithi178 bash[18765]: audit 2024-04-24T16:19:27.391444+0000 mon.smithi178 (mon.0) 474 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:28.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:27 smithi204 bash[20295]: audit 2024-04-24T16:19:27.391444+0000 mon.smithi178 (mon.0) 474 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:28.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:27 smithi204 bash[20295]: audit 2024-04-24T16:19:27.391444+0000 mon.smithi178 (mon.0) 474 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:28.890 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:19:29.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:28 smithi178 bash[18765]: cluster 2024-04-24T16:19:27.109065+0000 mgr.smithi178.tjvcci (mgr.14197) 310 : cluster [DBG] pgmap v257: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:29.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:28 smithi178 bash[18765]: cluster 2024-04-24T16:19:27.109065+0000 mgr.smithi178.tjvcci (mgr.14197) 310 : cluster [DBG] pgmap v257: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:29.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:28 smithi204 bash[20295]: cluster 2024-04-24T16:19:27.109065+0000 mgr.smithi178.tjvcci (mgr.14197) 310 : cluster [DBG] pgmap v257: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:29.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:28 smithi204 bash[20295]: cluster 2024-04-24T16:19:27.109065+0000 mgr.smithi178.tjvcci (mgr.14197) 310 : cluster [DBG] pgmap v257: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:30.098 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:19:30.728 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:19:31.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:30 smithi178 bash[18765]: cluster 2024-04-24T16:19:29.110048+0000 mgr.smithi178.tjvcci (mgr.14197) 311 : cluster [DBG] pgmap v258: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:31.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:30 smithi178 bash[18765]: cluster 2024-04-24T16:19:29.110048+0000 mgr.smithi178.tjvcci (mgr.14197) 311 : cluster [DBG] pgmap v258: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:31.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:30 smithi178 bash[18765]: audit 2024-04-24T16:19:30.104286+0000 mon.smithi178 (mon.0) 475 : audit [DBG] from='client.? 172.21.15.178:0/3020663720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:31.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:30 smithi178 bash[18765]: audit 2024-04-24T16:19:30.104286+0000 mon.smithi178 (mon.0) 475 : audit [DBG] from='client.? 172.21.15.178:0/3020663720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:31.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:30 smithi204 bash[20295]: cluster 2024-04-24T16:19:29.110048+0000 mgr.smithi178.tjvcci (mgr.14197) 311 : cluster [DBG] pgmap v258: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:31.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:30 smithi204 bash[20295]: cluster 2024-04-24T16:19:29.110048+0000 mgr.smithi178.tjvcci (mgr.14197) 311 : cluster [DBG] pgmap v258: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:31.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:30 smithi204 bash[20295]: audit 2024-04-24T16:19:30.104286+0000 mon.smithi178 (mon.0) 475 : audit [DBG] from='client.? 172.21.15.178:0/3020663720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:31.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:30 smithi204 bash[20295]: audit 2024-04-24T16:19:30.104286+0000 mon.smithi178 (mon.0) 475 : audit [DBG] from='client.? 172.21.15.178:0/3020663720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:31.729 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:19:33.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:32 smithi178 bash[18765]: cluster 2024-04-24T16:19:31.111121+0000 mgr.smithi178.tjvcci (mgr.14197) 312 : cluster [DBG] pgmap v259: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:33.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:32 smithi178 bash[18765]: cluster 2024-04-24T16:19:31.111121+0000 mgr.smithi178.tjvcci (mgr.14197) 312 : cluster [DBG] pgmap v259: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:33.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:32 smithi204 bash[20295]: cluster 2024-04-24T16:19:31.111121+0000 mgr.smithi178.tjvcci (mgr.14197) 312 : cluster [DBG] pgmap v259: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:33.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:32 smithi204 bash[20295]: cluster 2024-04-24T16:19:31.111121+0000 mgr.smithi178.tjvcci (mgr.14197) 312 : cluster [DBG] pgmap v259: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:34.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:33 smithi178 bash[18765]: audit 2024-04-24T16:19:33.229817+0000 mon.smithi178 (mon.0) 476 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:19:34.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:33 smithi178 bash[18765]: audit 2024-04-24T16:19:33.229817+0000 mon.smithi178 (mon.0) 476 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:19:34.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:33 smithi178 bash[18765]: audit 2024-04-24T16:19:33.231640+0000 mon.smithi178 (mon.0) 477 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:19:34.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:33 smithi178 bash[18765]: audit 2024-04-24T16:19:33.231640+0000 mon.smithi178 (mon.0) 477 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:19:34.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:33 smithi178 bash[18765]: audit 2024-04-24T16:19:33.243059+0000 mon.smithi178 (mon.0) 478 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:19:34.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:33 smithi178 bash[18765]: audit 2024-04-24T16:19:33.243059+0000 mon.smithi178 (mon.0) 478 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:19:34.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:33 smithi178 bash[18765]: audit 2024-04-24T16:19:33.251227+0000 mon.smithi178 (mon.0) 479 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:19:34.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:33 smithi178 bash[18765]: audit 2024-04-24T16:19:33.251227+0000 mon.smithi178 (mon.0) 479 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:19:34.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:33 smithi204 bash[20295]: audit 2024-04-24T16:19:33.229817+0000 mon.smithi178 (mon.0) 476 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:19:34.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:33 smithi204 bash[20295]: audit 2024-04-24T16:19:33.229817+0000 mon.smithi178 (mon.0) 476 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:19:34.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:33 smithi204 bash[20295]: audit 2024-04-24T16:19:33.231640+0000 mon.smithi178 (mon.0) 477 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:19:34.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:33 smithi204 bash[20295]: audit 2024-04-24T16:19:33.231640+0000 mon.smithi178 (mon.0) 477 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:19:34.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:33 smithi204 bash[20295]: audit 2024-04-24T16:19:33.243059+0000 mon.smithi178 (mon.0) 478 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:19:34.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:33 smithi204 bash[20295]: audit 2024-04-24T16:19:33.243059+0000 mon.smithi178 (mon.0) 478 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:19:34.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:33 smithi204 bash[20295]: audit 2024-04-24T16:19:33.251227+0000 mon.smithi178 (mon.0) 479 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:19:34.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:33 smithi204 bash[20295]: audit 2024-04-24T16:19:33.251227+0000 mon.smithi178 (mon.0) 479 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:19:35.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:34 smithi178 bash[18765]: cluster 2024-04-24T16:19:33.112111+0000 mgr.smithi178.tjvcci (mgr.14197) 313 : cluster [DBG] pgmap v260: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:35.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:34 smithi178 bash[18765]: cluster 2024-04-24T16:19:33.112111+0000 mgr.smithi178.tjvcci (mgr.14197) 313 : cluster [DBG] pgmap v260: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:35.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:34 smithi178 bash[18765]: cluster 2024-04-24T16:19:33.234486+0000 mgr.smithi178.tjvcci (mgr.14197) 314 : cluster [DBG] pgmap v261: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:35.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:34 smithi178 bash[18765]: cluster 2024-04-24T16:19:33.234486+0000 mgr.smithi178.tjvcci (mgr.14197) 314 : cluster [DBG] pgmap v261: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:35.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:34 smithi178 bash[18765]: cluster 2024-04-24T16:19:33.235695+0000 mgr.smithi178.tjvcci (mgr.14197) 315 : cluster [DBG] pgmap v262: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:35.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:34 smithi178 bash[18765]: cluster 2024-04-24T16:19:33.235695+0000 mgr.smithi178.tjvcci (mgr.14197) 315 : cluster [DBG] pgmap v262: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:35.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:34 smithi204 bash[20295]: cluster 2024-04-24T16:19:33.112111+0000 mgr.smithi178.tjvcci (mgr.14197) 313 : cluster [DBG] pgmap v260: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:35.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:34 smithi204 bash[20295]: cluster 2024-04-24T16:19:33.112111+0000 mgr.smithi178.tjvcci (mgr.14197) 313 : cluster [DBG] pgmap v260: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:35.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:34 smithi204 bash[20295]: cluster 2024-04-24T16:19:33.234486+0000 mgr.smithi178.tjvcci (mgr.14197) 314 : cluster [DBG] pgmap v261: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:35.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:34 smithi204 bash[20295]: cluster 2024-04-24T16:19:33.234486+0000 mgr.smithi178.tjvcci (mgr.14197) 314 : cluster [DBG] pgmap v261: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:35.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:34 smithi204 bash[20295]: cluster 2024-04-24T16:19:33.235695+0000 mgr.smithi178.tjvcci (mgr.14197) 315 : cluster [DBG] pgmap v262: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:35.131 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:34 smithi204 bash[20295]: cluster 2024-04-24T16:19:33.235695+0000 mgr.smithi178.tjvcci (mgr.14197) 315 : cluster [DBG] pgmap v262: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:36.498 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:19:36.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:36 smithi178 bash[18765]: cluster 2024-04-24T16:19:35.236685+0000 mgr.smithi178.tjvcci (mgr.14197) 316 : cluster [DBG] pgmap v263: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:36.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:36 smithi178 bash[18765]: cluster 2024-04-24T16:19:35.236685+0000 mgr.smithi178.tjvcci (mgr.14197) 316 : cluster [DBG] pgmap v263: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:37.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:36 smithi204 bash[20295]: cluster 2024-04-24T16:19:35.236685+0000 mgr.smithi178.tjvcci (mgr.14197) 316 : cluster [DBG] pgmap v263: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:37.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:36 smithi204 bash[20295]: cluster 2024-04-24T16:19:35.236685+0000 mgr.smithi178.tjvcci (mgr.14197) 316 : cluster [DBG] pgmap v263: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:37.653 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:19:38.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:37 smithi178 bash[18765]: audit 2024-04-24T16:19:37.659398+0000 mon.smithi178 (mon.0) 480 : audit [DBG] from='client.? 172.21.15.178:0/1012917829' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:38.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:37 smithi178 bash[18765]: audit 2024-04-24T16:19:37.659398+0000 mon.smithi178 (mon.0) 480 : audit [DBG] from='client.? 172.21.15.178:0/1012917829' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:38.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:37 smithi204 bash[20295]: audit 2024-04-24T16:19:37.659398+0000 mon.smithi178 (mon.0) 480 : audit [DBG] from='client.? 172.21.15.178:0/1012917829' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:38.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:37 smithi204 bash[20295]: audit 2024-04-24T16:19:37.659398+0000 mon.smithi178 (mon.0) 480 : audit [DBG] from='client.? 172.21.15.178:0/1012917829' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:38.303 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:19:39.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:38 smithi178 bash[18765]: cluster 2024-04-24T16:19:37.238010+0000 mgr.smithi178.tjvcci (mgr.14197) 317 : cluster [DBG] pgmap v264: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:39.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:38 smithi178 bash[18765]: cluster 2024-04-24T16:19:37.238010+0000 mgr.smithi178.tjvcci (mgr.14197) 317 : cluster [DBG] pgmap v264: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:39.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:38 smithi204 bash[20295]: cluster 2024-04-24T16:19:37.238010+0000 mgr.smithi178.tjvcci (mgr.14197) 317 : cluster [DBG] pgmap v264: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:39.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:38 smithi204 bash[20295]: cluster 2024-04-24T16:19:37.238010+0000 mgr.smithi178.tjvcci (mgr.14197) 317 : cluster [DBG] pgmap v264: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:39.305 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:19:41.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:40 smithi178 bash[18765]: cluster 2024-04-24T16:19:39.238984+0000 mgr.smithi178.tjvcci (mgr.14197) 318 : cluster [DBG] pgmap v265: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:41.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:40 smithi178 bash[18765]: cluster 2024-04-24T16:19:39.238984+0000 mgr.smithi178.tjvcci (mgr.14197) 318 : cluster [DBG] pgmap v265: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:41.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:40 smithi204 bash[20295]: cluster 2024-04-24T16:19:39.238984+0000 mgr.smithi178.tjvcci (mgr.14197) 318 : cluster [DBG] pgmap v265: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:41.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:40 smithi204 bash[20295]: cluster 2024-04-24T16:19:39.238984+0000 mgr.smithi178.tjvcci (mgr.14197) 318 : cluster [DBG] pgmap v265: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:43.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:42 smithi178 bash[18765]: cluster 2024-04-24T16:19:41.239963+0000 mgr.smithi178.tjvcci (mgr.14197) 319 : cluster [DBG] pgmap v266: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:43.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:42 smithi178 bash[18765]: cluster 2024-04-24T16:19:41.239963+0000 mgr.smithi178.tjvcci (mgr.14197) 319 : cluster [DBG] pgmap v266: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:43.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:42 smithi178 bash[18765]: audit 2024-04-24T16:19:42.391636+0000 mon.smithi178 (mon.0) 481 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:43.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:42 smithi178 bash[18765]: audit 2024-04-24T16:19:42.391636+0000 mon.smithi178 (mon.0) 481 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:43.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:42 smithi204 bash[20295]: cluster 2024-04-24T16:19:41.239963+0000 mgr.smithi178.tjvcci (mgr.14197) 319 : cluster [DBG] pgmap v266: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:43.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:42 smithi204 bash[20295]: cluster 2024-04-24T16:19:41.239963+0000 mgr.smithi178.tjvcci (mgr.14197) 319 : cluster [DBG] pgmap v266: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:43.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:42 smithi204 bash[20295]: audit 2024-04-24T16:19:42.391636+0000 mon.smithi178 (mon.0) 481 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:43.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:42 smithi204 bash[20295]: audit 2024-04-24T16:19:42.391636+0000 mon.smithi178 (mon.0) 481 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:44.067 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:19:45.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:44 smithi178 bash[18765]: cluster 2024-04-24T16:19:43.240980+0000 mgr.smithi178.tjvcci (mgr.14197) 320 : cluster [DBG] pgmap v267: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:45.085 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:44 smithi178 bash[18765]: cluster 2024-04-24T16:19:43.240980+0000 mgr.smithi178.tjvcci (mgr.14197) 320 : cluster [DBG] pgmap v267: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:45.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:44 smithi204 bash[20295]: cluster 2024-04-24T16:19:43.240980+0000 mgr.smithi178.tjvcci (mgr.14197) 320 : cluster [DBG] pgmap v267: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:45.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:44 smithi204 bash[20295]: cluster 2024-04-24T16:19:43.240980+0000 mgr.smithi178.tjvcci (mgr.14197) 320 : cluster [DBG] pgmap v267: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:45.297 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:19:45.959 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:19:46.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:45 smithi178 bash[18765]: audit 2024-04-24T16:19:45.303075+0000 mon.smithi178 (mon.0) 482 : audit [DBG] from='client.? 172.21.15.178:0/2406832382' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:46.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:45 smithi178 bash[18765]: audit 2024-04-24T16:19:45.303075+0000 mon.smithi178 (mon.0) 482 : audit [DBG] from='client.? 172.21.15.178:0/2406832382' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:46.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:45 smithi204 bash[20295]: audit 2024-04-24T16:19:45.303075+0000 mon.smithi178 (mon.0) 482 : audit [DBG] from='client.? 172.21.15.178:0/2406832382' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:46.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:45 smithi204 bash[20295]: audit 2024-04-24T16:19:45.303075+0000 mon.smithi178 (mon.0) 482 : audit [DBG] from='client.? 172.21.15.178:0/2406832382' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:46.960 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:19:47.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:46 smithi178 bash[18765]: cluster 2024-04-24T16:19:45.241970+0000 mgr.smithi178.tjvcci (mgr.14197) 321 : cluster [DBG] pgmap v268: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:47.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:46 smithi178 bash[18765]: cluster 2024-04-24T16:19:45.241970+0000 mgr.smithi178.tjvcci (mgr.14197) 321 : cluster [DBG] pgmap v268: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:47.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:46 smithi204 bash[20295]: cluster 2024-04-24T16:19:45.241970+0000 mgr.smithi178.tjvcci (mgr.14197) 321 : cluster [DBG] pgmap v268: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:47.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:46 smithi204 bash[20295]: cluster 2024-04-24T16:19:45.241970+0000 mgr.smithi178.tjvcci (mgr.14197) 321 : cluster [DBG] pgmap v268: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:49.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:48 smithi178 bash[18765]: cluster 2024-04-24T16:19:47.242950+0000 mgr.smithi178.tjvcci (mgr.14197) 322 : cluster [DBG] pgmap v269: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:49.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:48 smithi178 bash[18765]: cluster 2024-04-24T16:19:47.242950+0000 mgr.smithi178.tjvcci (mgr.14197) 322 : cluster [DBG] pgmap v269: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:49.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:48 smithi204 bash[20295]: cluster 2024-04-24T16:19:47.242950+0000 mgr.smithi178.tjvcci (mgr.14197) 322 : cluster [DBG] pgmap v269: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:49.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:48 smithi204 bash[20295]: cluster 2024-04-24T16:19:47.242950+0000 mgr.smithi178.tjvcci (mgr.14197) 322 : cluster [DBG] pgmap v269: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:51.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:50 smithi178 bash[18765]: cluster 2024-04-24T16:19:49.244136+0000 mgr.smithi178.tjvcci (mgr.14197) 323 : cluster [DBG] pgmap v270: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:51.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:50 smithi178 bash[18765]: cluster 2024-04-24T16:19:49.244136+0000 mgr.smithi178.tjvcci (mgr.14197) 323 : cluster [DBG] pgmap v270: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:51.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:50 smithi204 bash[20295]: cluster 2024-04-24T16:19:49.244136+0000 mgr.smithi178.tjvcci (mgr.14197) 323 : cluster [DBG] pgmap v270: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:51.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:50 smithi204 bash[20295]: cluster 2024-04-24T16:19:49.244136+0000 mgr.smithi178.tjvcci (mgr.14197) 323 : cluster [DBG] pgmap v270: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:51.727 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:19:52.928 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:19:53.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:52 smithi178 bash[18765]: cluster 2024-04-24T16:19:51.244921+0000 mgr.smithi178.tjvcci (mgr.14197) 324 : cluster [DBG] pgmap v271: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:53.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:52 smithi178 bash[18765]: cluster 2024-04-24T16:19:51.244921+0000 mgr.smithi178.tjvcci (mgr.14197) 324 : cluster [DBG] pgmap v271: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:53.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:52 smithi204 bash[20295]: cluster 2024-04-24T16:19:51.244921+0000 mgr.smithi178.tjvcci (mgr.14197) 324 : cluster [DBG] pgmap v271: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:53.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:52 smithi204 bash[20295]: cluster 2024-04-24T16:19:51.244921+0000 mgr.smithi178.tjvcci (mgr.14197) 324 : cluster [DBG] pgmap v271: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:53.539 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:19:53.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:53 smithi178 bash[18765]: audit 2024-04-24T16:19:52.934133+0000 mon.smithi178 (mon.0) 483 : audit [DBG] from='client.? 172.21.15.178:0/4118293724' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:53.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:53 smithi178 bash[18765]: audit 2024-04-24T16:19:52.934133+0000 mon.smithi178 (mon.0) 483 : audit [DBG] from='client.? 172.21.15.178:0/4118293724' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:54.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:53 smithi204 bash[20295]: audit 2024-04-24T16:19:52.934133+0000 mon.smithi178 (mon.0) 483 : audit [DBG] from='client.? 172.21.15.178:0/4118293724' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:54.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:53 smithi204 bash[20295]: audit 2024-04-24T16:19:52.934133+0000 mon.smithi178 (mon.0) 483 : audit [DBG] from='client.? 172.21.15.178:0/4118293724' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:19:54.541 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:19:54.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:54 smithi178 bash[18765]: cluster 2024-04-24T16:19:53.245885+0000 mgr.smithi178.tjvcci (mgr.14197) 325 : cluster [DBG] pgmap v272: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:54.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:54 smithi178 bash[18765]: cluster 2024-04-24T16:19:53.245885+0000 mgr.smithi178.tjvcci (mgr.14197) 325 : cluster [DBG] pgmap v272: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:55.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:54 smithi204 bash[20295]: cluster 2024-04-24T16:19:53.245885+0000 mgr.smithi178.tjvcci (mgr.14197) 325 : cluster [DBG] pgmap v272: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:55.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:54 smithi204 bash[20295]: cluster 2024-04-24T16:19:53.245885+0000 mgr.smithi178.tjvcci (mgr.14197) 325 : cluster [DBG] pgmap v272: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:57.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:56 smithi178 bash[18765]: cluster 2024-04-24T16:19:55.246819+0000 mgr.smithi178.tjvcci (mgr.14197) 326 : cluster [DBG] pgmap v273: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:57.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:56 smithi178 bash[18765]: cluster 2024-04-24T16:19:55.246819+0000 mgr.smithi178.tjvcci (mgr.14197) 326 : cluster [DBG] pgmap v273: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:57.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:56 smithi204 bash[20295]: cluster 2024-04-24T16:19:55.246819+0000 mgr.smithi178.tjvcci (mgr.14197) 326 : cluster [DBG] pgmap v273: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:57.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:56 smithi204 bash[20295]: cluster 2024-04-24T16:19:55.246819+0000 mgr.smithi178.tjvcci (mgr.14197) 326 : cluster [DBG] pgmap v273: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:58.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:57 smithi178 bash[18765]: audit 2024-04-24T16:19:57.391940+0000 mon.smithi178 (mon.0) 484 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:58.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:57 smithi178 bash[18765]: audit 2024-04-24T16:19:57.391940+0000 mon.smithi178 (mon.0) 484 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:58.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:57 smithi204 bash[20295]: audit 2024-04-24T16:19:57.391940+0000 mon.smithi178 (mon.0) 484 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:58.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:57 smithi204 bash[20295]: audit 2024-04-24T16:19:57.391940+0000 mon.smithi178 (mon.0) 484 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:19:59.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:58 smithi178 bash[18765]: cluster 2024-04-24T16:19:57.247815+0000 mgr.smithi178.tjvcci (mgr.14197) 327 : cluster [DBG] pgmap v274: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:59.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:19:58 smithi178 bash[18765]: cluster 2024-04-24T16:19:57.247815+0000 mgr.smithi178.tjvcci (mgr.14197) 327 : cluster [DBG] pgmap v274: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:59.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:58 smithi204 bash[20295]: cluster 2024-04-24T16:19:57.247815+0000 mgr.smithi178.tjvcci (mgr.14197) 327 : cluster [DBG] pgmap v274: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:59.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:19:58 smithi204 bash[20295]: cluster 2024-04-24T16:19:57.247815+0000 mgr.smithi178.tjvcci (mgr.14197) 327 : cluster [DBG] pgmap v274: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:19:59.309 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:20:00.532 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:20:01.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:00 smithi178 bash[18765]: cluster 2024-04-24T16:19:59.248880+0000 mgr.smithi178.tjvcci (mgr.14197) 328 : cluster [DBG] pgmap v275: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:01.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:00 smithi178 bash[18765]: cluster 2024-04-24T16:19:59.248880+0000 mgr.smithi178.tjvcci (mgr.14197) 328 : cluster [DBG] pgmap v275: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:01.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:00 smithi178 bash[18765]: cluster 2024-04-24T16:20:00.000126+0000 mon.smithi178 (mon.0) 485 : cluster [WRN] overall HEALTH_WARN failed to probe daemons or devices 2024-04-24T16:20:01.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:00 smithi178 bash[18765]: cluster 2024-04-24T16:20:00.000126+0000 mon.smithi178 (mon.0) 485 : cluster [WRN] overall HEALTH_WARN failed to probe daemons or devices 2024-04-24T16:20:01.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:00 smithi178 bash[18765]: audit 2024-04-24T16:20:00.538757+0000 mon.smithi178 (mon.0) 486 : audit [DBG] from='client.? 172.21.15.178:0/2487875655' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:01.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:00 smithi178 bash[18765]: audit 2024-04-24T16:20:00.538757+0000 mon.smithi178 (mon.0) 486 : audit [DBG] from='client.? 172.21.15.178:0/2487875655' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:01.101 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:20:01.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:00 smithi204 bash[20295]: cluster 2024-04-24T16:19:59.248880+0000 mgr.smithi178.tjvcci (mgr.14197) 328 : cluster [DBG] pgmap v275: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:01.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:00 smithi204 bash[20295]: cluster 2024-04-24T16:19:59.248880+0000 mgr.smithi178.tjvcci (mgr.14197) 328 : cluster [DBG] pgmap v275: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:01.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:00 smithi204 bash[20295]: cluster 2024-04-24T16:20:00.000126+0000 mon.smithi178 (mon.0) 485 : cluster [WRN] overall HEALTH_WARN failed to probe daemons or devices 2024-04-24T16:20:01.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:00 smithi204 bash[20295]: cluster 2024-04-24T16:20:00.000126+0000 mon.smithi178 (mon.0) 485 : cluster [WRN] overall HEALTH_WARN failed to probe daemons or devices 2024-04-24T16:20:01.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:00 smithi204 bash[20295]: audit 2024-04-24T16:20:00.538757+0000 mon.smithi178 (mon.0) 486 : audit [DBG] from='client.? 172.21.15.178:0/2487875655' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:01.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:00 smithi204 bash[20295]: audit 2024-04-24T16:20:00.538757+0000 mon.smithi178 (mon.0) 486 : audit [DBG] from='client.? 172.21.15.178:0/2487875655' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:02.102 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:20:03.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:02 smithi178 bash[18765]: cluster 2024-04-24T16:20:01.249947+0000 mgr.smithi178.tjvcci (mgr.14197) 329 : cluster [DBG] pgmap v276: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:03.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:02 smithi178 bash[18765]: cluster 2024-04-24T16:20:01.249947+0000 mgr.smithi178.tjvcci (mgr.14197) 329 : cluster [DBG] pgmap v276: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:03.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:02 smithi204 bash[20295]: cluster 2024-04-24T16:20:01.249947+0000 mgr.smithi178.tjvcci (mgr.14197) 329 : cluster [DBG] pgmap v276: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:03.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:02 smithi204 bash[20295]: cluster 2024-04-24T16:20:01.249947+0000 mgr.smithi178.tjvcci (mgr.14197) 329 : cluster [DBG] pgmap v276: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:05.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:04 smithi178 bash[18765]: cluster 2024-04-24T16:20:03.250915+0000 mgr.smithi178.tjvcci (mgr.14197) 330 : cluster [DBG] pgmap v277: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:05.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:04 smithi178 bash[18765]: cluster 2024-04-24T16:20:03.250915+0000 mgr.smithi178.tjvcci (mgr.14197) 330 : cluster [DBG] pgmap v277: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:05.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:04 smithi204 bash[20295]: cluster 2024-04-24T16:20:03.250915+0000 mgr.smithi178.tjvcci (mgr.14197) 330 : cluster [DBG] pgmap v277: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:05.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:04 smithi204 bash[20295]: cluster 2024-04-24T16:20:03.250915+0000 mgr.smithi178.tjvcci (mgr.14197) 330 : cluster [DBG] pgmap v277: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:06.868 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:20:07.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:06 smithi178 bash[18765]: cluster 2024-04-24T16:20:05.251862+0000 mgr.smithi178.tjvcci (mgr.14197) 331 : cluster [DBG] pgmap v278: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:07.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:06 smithi178 bash[18765]: cluster 2024-04-24T16:20:05.251862+0000 mgr.smithi178.tjvcci (mgr.14197) 331 : cluster [DBG] pgmap v278: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:07.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:06 smithi204 bash[20295]: cluster 2024-04-24T16:20:05.251862+0000 mgr.smithi178.tjvcci (mgr.14197) 331 : cluster [DBG] pgmap v278: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:07.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:06 smithi204 bash[20295]: cluster 2024-04-24T16:20:05.251862+0000 mgr.smithi178.tjvcci (mgr.14197) 331 : cluster [DBG] pgmap v278: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:07.998 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:20:08.603 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:20:09.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:08 smithi178 bash[18765]: cluster 2024-04-24T16:20:07.252855+0000 mgr.smithi178.tjvcci (mgr.14197) 332 : cluster [DBG] pgmap v279: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:09.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:08 smithi178 bash[18765]: cluster 2024-04-24T16:20:07.252855+0000 mgr.smithi178.tjvcci (mgr.14197) 332 : cluster [DBG] pgmap v279: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:09.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:08 smithi178 bash[18765]: audit 2024-04-24T16:20:08.004713+0000 mon.smithi178 (mon.0) 487 : audit [DBG] from='client.? 172.21.15.178:0/2476355742' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:09.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:08 smithi178 bash[18765]: audit 2024-04-24T16:20:08.004713+0000 mon.smithi178 (mon.0) 487 : audit [DBG] from='client.? 172.21.15.178:0/2476355742' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:09.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:08 smithi204 bash[20295]: cluster 2024-04-24T16:20:07.252855+0000 mgr.smithi178.tjvcci (mgr.14197) 332 : cluster [DBG] pgmap v279: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:09.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:08 smithi204 bash[20295]: cluster 2024-04-24T16:20:07.252855+0000 mgr.smithi178.tjvcci (mgr.14197) 332 : cluster [DBG] pgmap v279: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:09.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:08 smithi204 bash[20295]: audit 2024-04-24T16:20:08.004713+0000 mon.smithi178 (mon.0) 487 : audit [DBG] from='client.? 172.21.15.178:0/2476355742' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:09.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:08 smithi204 bash[20295]: audit 2024-04-24T16:20:08.004713+0000 mon.smithi178 (mon.0) 487 : audit [DBG] from='client.? 172.21.15.178:0/2476355742' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:09.604 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:20:11.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:10 smithi178 bash[18765]: cluster 2024-04-24T16:20:09.253853+0000 mgr.smithi178.tjvcci (mgr.14197) 333 : cluster [DBG] pgmap v280: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:11.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:10 smithi178 bash[18765]: cluster 2024-04-24T16:20:09.253853+0000 mgr.smithi178.tjvcci (mgr.14197) 333 : cluster [DBG] pgmap v280: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:11.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:10 smithi204 bash[20295]: cluster 2024-04-24T16:20:09.253853+0000 mgr.smithi178.tjvcci (mgr.14197) 333 : cluster [DBG] pgmap v280: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:11.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:10 smithi204 bash[20295]: cluster 2024-04-24T16:20:09.253853+0000 mgr.smithi178.tjvcci (mgr.14197) 333 : cluster [DBG] pgmap v280: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:13.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:12 smithi204 bash[20295]: cluster 2024-04-24T16:20:11.254778+0000 mgr.smithi178.tjvcci (mgr.14197) 334 : cluster [DBG] pgmap v281: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:13.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:12 smithi204 bash[20295]: cluster 2024-04-24T16:20:11.254778+0000 mgr.smithi178.tjvcci (mgr.14197) 334 : cluster [DBG] pgmap v281: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:13.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:12 smithi204 bash[20295]: audit 2024-04-24T16:20:12.391761+0000 mon.smithi178 (mon.0) 488 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:13.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:12 smithi204 bash[20295]: audit 2024-04-24T16:20:12.391761+0000 mon.smithi178 (mon.0) 488 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:13.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:12 smithi178 bash[18765]: cluster 2024-04-24T16:20:11.254778+0000 mgr.smithi178.tjvcci (mgr.14197) 334 : cluster [DBG] pgmap v281: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:13.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:12 smithi178 bash[18765]: cluster 2024-04-24T16:20:11.254778+0000 mgr.smithi178.tjvcci (mgr.14197) 334 : cluster [DBG] pgmap v281: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:13.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:12 smithi178 bash[18765]: audit 2024-04-24T16:20:12.391761+0000 mon.smithi178 (mon.0) 488 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:13.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:12 smithi178 bash[18765]: audit 2024-04-24T16:20:12.391761+0000 mon.smithi178 (mon.0) 488 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:14.370 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:20:15.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:14 smithi204 bash[20295]: cluster 2024-04-24T16:20:13.255796+0000 mgr.smithi178.tjvcci (mgr.14197) 335 : cluster [DBG] pgmap v282: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:15.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:14 smithi204 bash[20295]: cluster 2024-04-24T16:20:13.255796+0000 mgr.smithi178.tjvcci (mgr.14197) 335 : cluster [DBG] pgmap v282: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:15.188 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:14 smithi178 bash[18765]: cluster 2024-04-24T16:20:13.255796+0000 mgr.smithi178.tjvcci (mgr.14197) 335 : cluster [DBG] pgmap v282: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:15.188 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:14 smithi178 bash[18765]: cluster 2024-04-24T16:20:13.255796+0000 mgr.smithi178.tjvcci (mgr.14197) 335 : cluster [DBG] pgmap v282: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:15.587 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:20:16.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:15 smithi178 bash[18765]: audit 2024-04-24T16:20:15.593364+0000 mon.smithi178 (mon.0) 489 : audit [DBG] from='client.? 172.21.15.178:0/444180053' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:16.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:15 smithi178 bash[18765]: audit 2024-04-24T16:20:15.593364+0000 mon.smithi178 (mon.0) 489 : audit [DBG] from='client.? 172.21.15.178:0/444180053' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:16.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:15 smithi204 bash[20295]: audit 2024-04-24T16:20:15.593364+0000 mon.smithi178 (mon.0) 489 : audit [DBG] from='client.? 172.21.15.178:0/444180053' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:16.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:15 smithi204 bash[20295]: audit 2024-04-24T16:20:15.593364+0000 mon.smithi178 (mon.0) 489 : audit [DBG] from='client.? 172.21.15.178:0/444180053' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:16.214 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:20:17.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:16 smithi178 bash[18765]: cluster 2024-04-24T16:20:15.256543+0000 mgr.smithi178.tjvcci (mgr.14197) 336 : cluster [DBG] pgmap v283: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:17.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:16 smithi178 bash[18765]: cluster 2024-04-24T16:20:15.256543+0000 mgr.smithi178.tjvcci (mgr.14197) 336 : cluster [DBG] pgmap v283: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:17.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:16 smithi204 bash[20295]: cluster 2024-04-24T16:20:15.256543+0000 mgr.smithi178.tjvcci (mgr.14197) 336 : cluster [DBG] pgmap v283: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:17.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:16 smithi204 bash[20295]: cluster 2024-04-24T16:20:15.256543+0000 mgr.smithi178.tjvcci (mgr.14197) 336 : cluster [DBG] pgmap v283: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:17.215 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:20:19.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:18 smithi204 bash[20295]: cluster 2024-04-24T16:20:17.257487+0000 mgr.smithi178.tjvcci (mgr.14197) 337 : cluster [DBG] pgmap v284: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:19.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:18 smithi204 bash[20295]: cluster 2024-04-24T16:20:17.257487+0000 mgr.smithi178.tjvcci (mgr.14197) 337 : cluster [DBG] pgmap v284: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:19.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:18 smithi178 bash[18765]: cluster 2024-04-24T16:20:17.257487+0000 mgr.smithi178.tjvcci (mgr.14197) 337 : cluster [DBG] pgmap v284: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:19.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:18 smithi178 bash[18765]: cluster 2024-04-24T16:20:17.257487+0000 mgr.smithi178.tjvcci (mgr.14197) 337 : cluster [DBG] pgmap v284: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:21.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:20 smithi204 bash[20295]: cluster 2024-04-24T16:20:19.258532+0000 mgr.smithi178.tjvcci (mgr.14197) 338 : cluster [DBG] pgmap v285: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:21.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:20 smithi204 bash[20295]: cluster 2024-04-24T16:20:19.258532+0000 mgr.smithi178.tjvcci (mgr.14197) 338 : cluster [DBG] pgmap v285: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:21.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:20 smithi178 bash[18765]: cluster 2024-04-24T16:20:19.258532+0000 mgr.smithi178.tjvcci (mgr.14197) 338 : cluster [DBG] pgmap v285: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:21.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:20 smithi178 bash[18765]: cluster 2024-04-24T16:20:19.258532+0000 mgr.smithi178.tjvcci (mgr.14197) 338 : cluster [DBG] pgmap v285: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:21.981 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:20:23.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:22 smithi178 bash[18765]: cluster 2024-04-24T16:20:21.259560+0000 mgr.smithi178.tjvcci (mgr.14197) 339 : cluster [DBG] pgmap v286: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:23.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:22 smithi178 bash[18765]: cluster 2024-04-24T16:20:21.259560+0000 mgr.smithi178.tjvcci (mgr.14197) 339 : cluster [DBG] pgmap v286: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:23.103 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:20:23.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:22 smithi204 bash[20295]: cluster 2024-04-24T16:20:21.259560+0000 mgr.smithi178.tjvcci (mgr.14197) 339 : cluster [DBG] pgmap v286: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:23.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:22 smithi204 bash[20295]: cluster 2024-04-24T16:20:21.259560+0000 mgr.smithi178.tjvcci (mgr.14197) 339 : cluster [DBG] pgmap v286: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:23.740 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:20:24.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:23 smithi178 bash[18765]: audit 2024-04-24T16:20:23.110047+0000 mon.smithi178 (mon.0) 490 : audit [DBG] from='client.? 172.21.15.178:0/3275384711' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:24.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:23 smithi178 bash[18765]: audit 2024-04-24T16:20:23.110047+0000 mon.smithi178 (mon.0) 490 : audit [DBG] from='client.? 172.21.15.178:0/3275384711' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:24.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:23 smithi204 bash[20295]: audit 2024-04-24T16:20:23.110047+0000 mon.smithi178 (mon.0) 490 : audit [DBG] from='client.? 172.21.15.178:0/3275384711' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:24.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:23 smithi204 bash[20295]: audit 2024-04-24T16:20:23.110047+0000 mon.smithi178 (mon.0) 490 : audit [DBG] from='client.? 172.21.15.178:0/3275384711' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:24.741 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:20:25.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:24 smithi178 bash[18765]: cluster 2024-04-24T16:20:23.260615+0000 mgr.smithi178.tjvcci (mgr.14197) 340 : cluster [DBG] pgmap v287: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:25.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:24 smithi178 bash[18765]: cluster 2024-04-24T16:20:23.260615+0000 mgr.smithi178.tjvcci (mgr.14197) 340 : cluster [DBG] pgmap v287: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:25.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:24 smithi204 bash[20295]: cluster 2024-04-24T16:20:23.260615+0000 mgr.smithi178.tjvcci (mgr.14197) 340 : cluster [DBG] pgmap v287: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:25.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:24 smithi204 bash[20295]: cluster 2024-04-24T16:20:23.260615+0000 mgr.smithi178.tjvcci (mgr.14197) 340 : cluster [DBG] pgmap v287: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:27.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:26 smithi178 bash[18765]: cluster 2024-04-24T16:20:25.261614+0000 mgr.smithi178.tjvcci (mgr.14197) 341 : cluster [DBG] pgmap v288: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:27.084 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:26 smithi178 bash[18765]: cluster 2024-04-24T16:20:25.261614+0000 mgr.smithi178.tjvcci (mgr.14197) 341 : cluster [DBG] pgmap v288: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:27.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:26 smithi204 bash[20295]: cluster 2024-04-24T16:20:25.261614+0000 mgr.smithi178.tjvcci (mgr.14197) 341 : cluster [DBG] pgmap v288: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:27.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:26 smithi204 bash[20295]: cluster 2024-04-24T16:20:25.261614+0000 mgr.smithi178.tjvcci (mgr.14197) 341 : cluster [DBG] pgmap v288: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:28.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:27 smithi178 bash[18765]: audit 2024-04-24T16:20:27.392713+0000 mon.smithi178 (mon.0) 491 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:28.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:27 smithi178 bash[18765]: audit 2024-04-24T16:20:27.392713+0000 mon.smithi178 (mon.0) 491 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:27 smithi204 bash[20295]: audit 2024-04-24T16:20:27.392713+0000 mon.smithi178 (mon.0) 491 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:27 smithi204 bash[20295]: audit 2024-04-24T16:20:27.392713+0000 mon.smithi178 (mon.0) 491 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:29.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:28 smithi178 bash[18765]: cluster 2024-04-24T16:20:27.262618+0000 mgr.smithi178.tjvcci (mgr.14197) 342 : cluster [DBG] pgmap v289: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:29.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:28 smithi178 bash[18765]: cluster 2024-04-24T16:20:27.262618+0000 mgr.smithi178.tjvcci (mgr.14197) 342 : cluster [DBG] pgmap v289: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:29.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:28 smithi204 bash[20295]: cluster 2024-04-24T16:20:27.262618+0000 mgr.smithi178.tjvcci (mgr.14197) 342 : cluster [DBG] pgmap v289: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:29.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:28 smithi204 bash[20295]: cluster 2024-04-24T16:20:27.262618+0000 mgr.smithi178.tjvcci (mgr.14197) 342 : cluster [DBG] pgmap v289: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:29.510 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:20:30.779 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:20:31.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:30 smithi178 bash[18765]: cluster 2024-04-24T16:20:29.263561+0000 mgr.smithi178.tjvcci (mgr.14197) 343 : cluster [DBG] pgmap v290: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:31.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:30 smithi178 bash[18765]: cluster 2024-04-24T16:20:29.263561+0000 mgr.smithi178.tjvcci (mgr.14197) 343 : cluster [DBG] pgmap v290: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:31.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:30 smithi178 bash[18765]: audit 2024-04-24T16:20:30.786271+0000 mon.smithi178 (mon.0) 492 : audit [DBG] from='client.? 172.21.15.178:0/2068006037' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:31.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:30 smithi178 bash[18765]: audit 2024-04-24T16:20:30.786271+0000 mon.smithi178 (mon.0) 492 : audit [DBG] from='client.? 172.21.15.178:0/2068006037' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:31.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:30 smithi204 bash[20295]: cluster 2024-04-24T16:20:29.263561+0000 mgr.smithi178.tjvcci (mgr.14197) 343 : cluster [DBG] pgmap v290: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:31.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:30 smithi204 bash[20295]: cluster 2024-04-24T16:20:29.263561+0000 mgr.smithi178.tjvcci (mgr.14197) 343 : cluster [DBG] pgmap v290: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:31.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:30 smithi204 bash[20295]: audit 2024-04-24T16:20:30.786271+0000 mon.smithi178 (mon.0) 492 : audit [DBG] from='client.? 172.21.15.178:0/2068006037' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:31.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:30 smithi204 bash[20295]: audit 2024-04-24T16:20:30.786271+0000 mon.smithi178 (mon.0) 492 : audit [DBG] from='client.? 172.21.15.178:0/2068006037' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:31.407 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:20:32.408 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:20:33.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:32 smithi178 bash[18765]: cluster 2024-04-24T16:20:31.264266+0000 mgr.smithi178.tjvcci (mgr.14197) 344 : cluster [DBG] pgmap v291: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:33.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:32 smithi178 bash[18765]: cluster 2024-04-24T16:20:31.264266+0000 mgr.smithi178.tjvcci (mgr.14197) 344 : cluster [DBG] pgmap v291: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:33.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:32 smithi204 bash[20295]: cluster 2024-04-24T16:20:31.264266+0000 mgr.smithi178.tjvcci (mgr.14197) 344 : cluster [DBG] pgmap v291: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:33.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:32 smithi204 bash[20295]: cluster 2024-04-24T16:20:31.264266+0000 mgr.smithi178.tjvcci (mgr.14197) 344 : cluster [DBG] pgmap v291: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:34.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:33 smithi178 bash[18765]: audit 2024-04-24T16:20:33.350474+0000 mon.smithi178 (mon.0) 493 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:20:34.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:33 smithi178 bash[18765]: audit 2024-04-24T16:20:33.350474+0000 mon.smithi178 (mon.0) 493 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:20:34.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:33 smithi204 bash[20295]: audit 2024-04-24T16:20:33.350474+0000 mon.smithi178 (mon.0) 493 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:20:34.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:33 smithi204 bash[20295]: audit 2024-04-24T16:20:33.350474+0000 mon.smithi178 (mon.0) 493 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:20:35.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:34 smithi178 bash[18765]: cluster 2024-04-24T16:20:33.265200+0000 mgr.smithi178.tjvcci (mgr.14197) 345 : cluster [DBG] pgmap v292: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:35.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:34 smithi178 bash[18765]: cluster 2024-04-24T16:20:33.265200+0000 mgr.smithi178.tjvcci (mgr.14197) 345 : cluster [DBG] pgmap v292: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:35.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:34 smithi204 bash[20295]: cluster 2024-04-24T16:20:33.265200+0000 mgr.smithi178.tjvcci (mgr.14197) 345 : cluster [DBG] pgmap v292: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:35.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:34 smithi204 bash[20295]: cluster 2024-04-24T16:20:33.265200+0000 mgr.smithi178.tjvcci (mgr.14197) 345 : cluster [DBG] pgmap v292: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:37.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:36 smithi178 bash[18765]: cluster 2024-04-24T16:20:35.266200+0000 mgr.smithi178.tjvcci (mgr.14197) 346 : cluster [DBG] pgmap v293: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:37.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:36 smithi178 bash[18765]: cluster 2024-04-24T16:20:35.266200+0000 mgr.smithi178.tjvcci (mgr.14197) 346 : cluster [DBG] pgmap v293: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:37.168 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:20:37.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:36 smithi204 bash[20295]: cluster 2024-04-24T16:20:35.266200+0000 mgr.smithi178.tjvcci (mgr.14197) 346 : cluster [DBG] pgmap v293: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:37.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:36 smithi204 bash[20295]: cluster 2024-04-24T16:20:35.266200+0000 mgr.smithi178.tjvcci (mgr.14197) 346 : cluster [DBG] pgmap v293: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:38.378 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:20:39.193 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:38 smithi178 bash[18765]: cluster 2024-04-24T16:20:37.267238+0000 mgr.smithi178.tjvcci (mgr.14197) 347 : cluster [DBG] pgmap v294: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:39.193 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:38 smithi178 bash[18765]: cluster 2024-04-24T16:20:37.267238+0000 mgr.smithi178.tjvcci (mgr.14197) 347 : cluster [DBG] pgmap v294: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:39.193 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:38 smithi178 bash[18765]: audit 2024-04-24T16:20:38.384498+0000 mon.smithi178 (mon.0) 494 : audit [DBG] from='client.? 172.21.15.178:0/3558539168' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:39.194 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:38 smithi178 bash[18765]: audit 2024-04-24T16:20:38.384498+0000 mon.smithi178 (mon.0) 494 : audit [DBG] from='client.? 172.21.15.178:0/3558539168' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:39.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:38 smithi204 bash[20295]: cluster 2024-04-24T16:20:37.267238+0000 mgr.smithi178.tjvcci (mgr.14197) 347 : cluster [DBG] pgmap v294: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:39.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:38 smithi204 bash[20295]: cluster 2024-04-24T16:20:37.267238+0000 mgr.smithi178.tjvcci (mgr.14197) 347 : cluster [DBG] pgmap v294: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:39.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:38 smithi204 bash[20295]: audit 2024-04-24T16:20:38.384498+0000 mon.smithi178 (mon.0) 494 : audit [DBG] from='client.? 172.21.15.178:0/3558539168' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:39.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:38 smithi204 bash[20295]: audit 2024-04-24T16:20:38.384498+0000 mon.smithi178 (mon.0) 494 : audit [DBG] from='client.? 172.21.15.178:0/3558539168' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:39.482 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:20:40.484 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:20:41.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:40 smithi178 bash[18765]: cluster 2024-04-24T16:20:39.268227+0000 mgr.smithi178.tjvcci (mgr.14197) 348 : cluster [DBG] pgmap v295: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:41.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:40 smithi178 bash[18765]: cluster 2024-04-24T16:20:39.268227+0000 mgr.smithi178.tjvcci (mgr.14197) 348 : cluster [DBG] pgmap v295: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:41.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:40 smithi178 bash[18765]: audit 2024-04-24T16:20:40.915743+0000 mon.smithi178 (mon.0) 495 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:20:41.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:40 smithi178 bash[18765]: audit 2024-04-24T16:20:40.915743+0000 mon.smithi178 (mon.0) 495 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:20:41.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:40 smithi178 bash[18765]: audit 2024-04-24T16:20:40.917668+0000 mon.smithi178 (mon.0) 496 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:20:41.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:40 smithi178 bash[18765]: audit 2024-04-24T16:20:40.917668+0000 mon.smithi178 (mon.0) 496 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:20:41.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:40 smithi204 bash[20295]: cluster 2024-04-24T16:20:39.268227+0000 mgr.smithi178.tjvcci (mgr.14197) 348 : cluster [DBG] pgmap v295: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:41.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:40 smithi204 bash[20295]: cluster 2024-04-24T16:20:39.268227+0000 mgr.smithi178.tjvcci (mgr.14197) 348 : cluster [DBG] pgmap v295: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:41.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:40 smithi204 bash[20295]: audit 2024-04-24T16:20:40.915743+0000 mon.smithi178 (mon.0) 495 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:20:41.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:40 smithi204 bash[20295]: audit 2024-04-24T16:20:40.915743+0000 mon.smithi178 (mon.0) 495 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:20:41.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:40 smithi204 bash[20295]: audit 2024-04-24T16:20:40.917668+0000 mon.smithi178 (mon.0) 496 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:20:41.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:40 smithi204 bash[20295]: audit 2024-04-24T16:20:40.917668+0000 mon.smithi178 (mon.0) 496 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:20:42.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:41 smithi178 bash[18765]: cluster 2024-04-24T16:20:40.920696+0000 mgr.smithi178.tjvcci (mgr.14197) 349 : cluster [DBG] pgmap v296: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:42.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:41 smithi178 bash[18765]: cluster 2024-04-24T16:20:40.920696+0000 mgr.smithi178.tjvcci (mgr.14197) 349 : cluster [DBG] pgmap v296: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:42.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:41 smithi178 bash[18765]: cluster 2024-04-24T16:20:40.922413+0000 mgr.smithi178.tjvcci (mgr.14197) 350 : cluster [DBG] pgmap v297: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:42.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:41 smithi178 bash[18765]: cluster 2024-04-24T16:20:40.922413+0000 mgr.smithi178.tjvcci (mgr.14197) 350 : cluster [DBG] pgmap v297: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:42.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:41 smithi178 bash[18765]: audit 2024-04-24T16:20:40.933540+0000 mon.smithi178 (mon.0) 497 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:20:42.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:41 smithi178 bash[18765]: audit 2024-04-24T16:20:40.933540+0000 mon.smithi178 (mon.0) 497 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:20:42.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:41 smithi178 bash[18765]: audit 2024-04-24T16:20:40.941466+0000 mon.smithi178 (mon.0) 498 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:20:42.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:41 smithi178 bash[18765]: audit 2024-04-24T16:20:40.941466+0000 mon.smithi178 (mon.0) 498 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:20:42.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:41 smithi204 bash[20295]: cluster 2024-04-24T16:20:40.920696+0000 mgr.smithi178.tjvcci (mgr.14197) 349 : cluster [DBG] pgmap v296: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:42.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:41 smithi204 bash[20295]: cluster 2024-04-24T16:20:40.920696+0000 mgr.smithi178.tjvcci (mgr.14197) 349 : cluster [DBG] pgmap v296: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:42.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:41 smithi204 bash[20295]: cluster 2024-04-24T16:20:40.922413+0000 mgr.smithi178.tjvcci (mgr.14197) 350 : cluster [DBG] pgmap v297: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:42.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:41 smithi204 bash[20295]: cluster 2024-04-24T16:20:40.922413+0000 mgr.smithi178.tjvcci (mgr.14197) 350 : cluster [DBG] pgmap v297: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:42.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:41 smithi204 bash[20295]: audit 2024-04-24T16:20:40.933540+0000 mon.smithi178 (mon.0) 497 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:20:42.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:41 smithi204 bash[20295]: audit 2024-04-24T16:20:40.933540+0000 mon.smithi178 (mon.0) 497 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:20:42.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:41 smithi204 bash[20295]: audit 2024-04-24T16:20:40.941466+0000 mon.smithi178 (mon.0) 498 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:20:42.381 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:41 smithi204 bash[20295]: audit 2024-04-24T16:20:40.941466+0000 mon.smithi178 (mon.0) 498 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:20:43.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:42 smithi178 bash[18765]: audit 2024-04-24T16:20:42.393184+0000 mon.smithi178 (mon.0) 499 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:43.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:42 smithi178 bash[18765]: audit 2024-04-24T16:20:42.393184+0000 mon.smithi178 (mon.0) 499 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:43.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:42 smithi204 bash[20295]: audit 2024-04-24T16:20:42.393184+0000 mon.smithi178 (mon.0) 499 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:43.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:42 smithi204 bash[20295]: audit 2024-04-24T16:20:42.393184+0000 mon.smithi178 (mon.0) 499 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:44.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:43 smithi178 bash[18765]: cluster 2024-04-24T16:20:42.923477+0000 mgr.smithi178.tjvcci (mgr.14197) 351 : cluster [DBG] pgmap v298: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:44.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:43 smithi178 bash[18765]: cluster 2024-04-24T16:20:42.923477+0000 mgr.smithi178.tjvcci (mgr.14197) 351 : cluster [DBG] pgmap v298: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:44.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:43 smithi204 bash[20295]: cluster 2024-04-24T16:20:42.923477+0000 mgr.smithi178.tjvcci (mgr.14197) 351 : cluster [DBG] pgmap v298: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:44.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:43 smithi204 bash[20295]: cluster 2024-04-24T16:20:42.923477+0000 mgr.smithi178.tjvcci (mgr.14197) 351 : cluster [DBG] pgmap v298: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:45.243 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:20:46.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:45 smithi178 bash[18765]: cluster 2024-04-24T16:20:44.924575+0000 mgr.smithi178.tjvcci (mgr.14197) 352 : cluster [DBG] pgmap v299: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:46.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:45 smithi178 bash[18765]: cluster 2024-04-24T16:20:44.924575+0000 mgr.smithi178.tjvcci (mgr.14197) 352 : cluster [DBG] pgmap v299: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:46.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:45 smithi204 bash[20295]: cluster 2024-04-24T16:20:44.924575+0000 mgr.smithi178.tjvcci (mgr.14197) 352 : cluster [DBG] pgmap v299: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:46.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:45 smithi204 bash[20295]: cluster 2024-04-24T16:20:44.924575+0000 mgr.smithi178.tjvcci (mgr.14197) 352 : cluster [DBG] pgmap v299: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:46.393 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:20:47.037 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:20:47.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:46 smithi178 bash[18765]: audit 2024-04-24T16:20:46.400431+0000 mon.smithi178 (mon.0) 500 : audit [DBG] from='client.? 172.21.15.178:0/2469806096' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:47.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:46 smithi178 bash[18765]: audit 2024-04-24T16:20:46.400431+0000 mon.smithi178 (mon.0) 500 : audit [DBG] from='client.? 172.21.15.178:0/2469806096' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:47.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:46 smithi204 bash[20295]: audit 2024-04-24T16:20:46.400431+0000 mon.smithi178 (mon.0) 500 : audit [DBG] from='client.? 172.21.15.178:0/2469806096' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:47.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:46 smithi204 bash[20295]: audit 2024-04-24T16:20:46.400431+0000 mon.smithi178 (mon.0) 500 : audit [DBG] from='client.? 172.21.15.178:0/2469806096' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:48.039 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:20:48.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:47 smithi178 bash[18765]: cluster 2024-04-24T16:20:46.925605+0000 mgr.smithi178.tjvcci (mgr.14197) 353 : cluster [DBG] pgmap v300: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:48.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:47 smithi178 bash[18765]: cluster 2024-04-24T16:20:46.925605+0000 mgr.smithi178.tjvcci (mgr.14197) 353 : cluster [DBG] pgmap v300: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:48.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:47 smithi204 bash[20295]: cluster 2024-04-24T16:20:46.925605+0000 mgr.smithi178.tjvcci (mgr.14197) 353 : cluster [DBG] pgmap v300: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:48.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:47 smithi204 bash[20295]: cluster 2024-04-24T16:20:46.925605+0000 mgr.smithi178.tjvcci (mgr.14197) 353 : cluster [DBG] pgmap v300: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:50.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:49 smithi178 bash[18765]: cluster 2024-04-24T16:20:48.926541+0000 mgr.smithi178.tjvcci (mgr.14197) 354 : cluster [DBG] pgmap v301: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:50.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:49 smithi178 bash[18765]: cluster 2024-04-24T16:20:48.926541+0000 mgr.smithi178.tjvcci (mgr.14197) 354 : cluster [DBG] pgmap v301: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:50.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:49 smithi204 bash[20295]: cluster 2024-04-24T16:20:48.926541+0000 mgr.smithi178.tjvcci (mgr.14197) 354 : cluster [DBG] pgmap v301: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:50.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:49 smithi204 bash[20295]: cluster 2024-04-24T16:20:48.926541+0000 mgr.smithi178.tjvcci (mgr.14197) 354 : cluster [DBG] pgmap v301: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:52.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:51 smithi178 bash[18765]: cluster 2024-04-24T16:20:50.927562+0000 mgr.smithi178.tjvcci (mgr.14197) 355 : cluster [DBG] pgmap v302: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:52.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:51 smithi178 bash[18765]: cluster 2024-04-24T16:20:50.927562+0000 mgr.smithi178.tjvcci (mgr.14197) 355 : cluster [DBG] pgmap v302: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:52.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:51 smithi204 bash[20295]: cluster 2024-04-24T16:20:50.927562+0000 mgr.smithi178.tjvcci (mgr.14197) 355 : cluster [DBG] pgmap v302: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:52.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:51 smithi204 bash[20295]: cluster 2024-04-24T16:20:50.927562+0000 mgr.smithi178.tjvcci (mgr.14197) 355 : cluster [DBG] pgmap v302: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:52.807 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:20:53.997 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:20:54.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:53 smithi178 bash[18765]: cluster 2024-04-24T16:20:52.928585+0000 mgr.smithi178.tjvcci (mgr.14197) 356 : cluster [DBG] pgmap v303: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:54.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:53 smithi178 bash[18765]: cluster 2024-04-24T16:20:52.928585+0000 mgr.smithi178.tjvcci (mgr.14197) 356 : cluster [DBG] pgmap v303: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:54.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:53 smithi204 bash[20295]: cluster 2024-04-24T16:20:52.928585+0000 mgr.smithi178.tjvcci (mgr.14197) 356 : cluster [DBG] pgmap v303: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:54.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:53 smithi204 bash[20295]: cluster 2024-04-24T16:20:52.928585+0000 mgr.smithi178.tjvcci (mgr.14197) 356 : cluster [DBG] pgmap v303: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:54.603 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:20:55.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:54 smithi178 bash[18765]: audit 2024-04-24T16:20:54.004400+0000 mon.smithi178 (mon.0) 501 : audit [DBG] from='client.? 172.21.15.178:0/2765491905' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:55.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:54 smithi178 bash[18765]: audit 2024-04-24T16:20:54.004400+0000 mon.smithi178 (mon.0) 501 : audit [DBG] from='client.? 172.21.15.178:0/2765491905' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:55.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:54 smithi204 bash[20295]: audit 2024-04-24T16:20:54.004400+0000 mon.smithi178 (mon.0) 501 : audit [DBG] from='client.? 172.21.15.178:0/2765491905' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:55.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:54 smithi204 bash[20295]: audit 2024-04-24T16:20:54.004400+0000 mon.smithi178 (mon.0) 501 : audit [DBG] from='client.? 172.21.15.178:0/2765491905' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:20:55.605 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:20:56.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:55 smithi178 bash[18765]: cluster 2024-04-24T16:20:54.929575+0000 mgr.smithi178.tjvcci (mgr.14197) 357 : cluster [DBG] pgmap v304: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:56.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:55 smithi178 bash[18765]: cluster 2024-04-24T16:20:54.929575+0000 mgr.smithi178.tjvcci (mgr.14197) 357 : cluster [DBG] pgmap v304: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:56.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:55 smithi204 bash[20295]: cluster 2024-04-24T16:20:54.929575+0000 mgr.smithi178.tjvcci (mgr.14197) 357 : cluster [DBG] pgmap v304: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:56.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:55 smithi204 bash[20295]: cluster 2024-04-24T16:20:54.929575+0000 mgr.smithi178.tjvcci (mgr.14197) 357 : cluster [DBG] pgmap v304: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:58.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:57 smithi178 bash[18765]: cluster 2024-04-24T16:20:56.930677+0000 mgr.smithi178.tjvcci (mgr.14197) 358 : cluster [DBG] pgmap v305: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:58.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:57 smithi178 bash[18765]: cluster 2024-04-24T16:20:56.930677+0000 mgr.smithi178.tjvcci (mgr.14197) 358 : cluster [DBG] pgmap v305: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:58.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:57 smithi178 bash[18765]: audit 2024-04-24T16:20:57.393598+0000 mon.smithi178 (mon.0) 502 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:58.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:57 smithi178 bash[18765]: audit 2024-04-24T16:20:57.393598+0000 mon.smithi178 (mon.0) 502 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:57 smithi204 bash[20295]: cluster 2024-04-24T16:20:56.930677+0000 mgr.smithi178.tjvcci (mgr.14197) 358 : cluster [DBG] pgmap v305: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:57 smithi204 bash[20295]: cluster 2024-04-24T16:20:56.930677+0000 mgr.smithi178.tjvcci (mgr.14197) 358 : cluster [DBG] pgmap v305: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:20:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:57 smithi204 bash[20295]: audit 2024-04-24T16:20:57.393598+0000 mon.smithi178 (mon.0) 502 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:20:58.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:57 smithi204 bash[20295]: audit 2024-04-24T16:20:57.393598+0000 mon.smithi178 (mon.0) 502 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:00.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:59 smithi178 bash[18765]: cluster 2024-04-24T16:20:58.931710+0000 mgr.smithi178.tjvcci (mgr.14197) 359 : cluster [DBG] pgmap v306: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:00.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:20:59 smithi178 bash[18765]: cluster 2024-04-24T16:20:58.931710+0000 mgr.smithi178.tjvcci (mgr.14197) 359 : cluster [DBG] pgmap v306: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:00.374 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:21:00.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:59 smithi204 bash[20295]: cluster 2024-04-24T16:20:58.931710+0000 mgr.smithi178.tjvcci (mgr.14197) 359 : cluster [DBG] pgmap v306: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:00.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:20:59 smithi204 bash[20295]: cluster 2024-04-24T16:20:58.931710+0000 mgr.smithi178.tjvcci (mgr.14197) 359 : cluster [DBG] pgmap v306: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:01.468 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:21:02.071 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:21:02.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:01 smithi178 bash[18765]: cluster 2024-04-24T16:21:00.932664+0000 mgr.smithi178.tjvcci (mgr.14197) 360 : cluster [DBG] pgmap v307: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:02.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:01 smithi178 bash[18765]: cluster 2024-04-24T16:21:00.932664+0000 mgr.smithi178.tjvcci (mgr.14197) 360 : cluster [DBG] pgmap v307: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:02.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:01 smithi178 bash[18765]: audit 2024-04-24T16:21:01.475630+0000 mon.smithi178 (mon.0) 503 : audit [DBG] from='client.? 172.21.15.178:0/2012055565' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:02.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:01 smithi178 bash[18765]: audit 2024-04-24T16:21:01.475630+0000 mon.smithi178 (mon.0) 503 : audit [DBG] from='client.? 172.21.15.178:0/2012055565' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:02.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:01 smithi204 bash[20295]: cluster 2024-04-24T16:21:00.932664+0000 mgr.smithi178.tjvcci (mgr.14197) 360 : cluster [DBG] pgmap v307: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:02.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:01 smithi204 bash[20295]: cluster 2024-04-24T16:21:00.932664+0000 mgr.smithi178.tjvcci (mgr.14197) 360 : cluster [DBG] pgmap v307: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:02.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:01 smithi204 bash[20295]: audit 2024-04-24T16:21:01.475630+0000 mon.smithi178 (mon.0) 503 : audit [DBG] from='client.? 172.21.15.178:0/2012055565' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:02.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:01 smithi204 bash[20295]: audit 2024-04-24T16:21:01.475630+0000 mon.smithi178 (mon.0) 503 : audit [DBG] from='client.? 172.21.15.178:0/2012055565' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:03.072 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:21:04.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:03 smithi178 bash[18765]: cluster 2024-04-24T16:21:02.933618+0000 mgr.smithi178.tjvcci (mgr.14197) 361 : cluster [DBG] pgmap v308: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:04.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:03 smithi178 bash[18765]: cluster 2024-04-24T16:21:02.933618+0000 mgr.smithi178.tjvcci (mgr.14197) 361 : cluster [DBG] pgmap v308: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:04.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:03 smithi204 bash[20295]: cluster 2024-04-24T16:21:02.933618+0000 mgr.smithi178.tjvcci (mgr.14197) 361 : cluster [DBG] pgmap v308: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:04.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:03 smithi204 bash[20295]: cluster 2024-04-24T16:21:02.933618+0000 mgr.smithi178.tjvcci (mgr.14197) 361 : cluster [DBG] pgmap v308: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:06.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:06 smithi178 bash[18765]: cluster 2024-04-24T16:21:04.934594+0000 mgr.smithi178.tjvcci (mgr.14197) 362 : cluster [DBG] pgmap v309: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:06.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:06 smithi178 bash[18765]: cluster 2024-04-24T16:21:04.934594+0000 mgr.smithi178.tjvcci (mgr.14197) 362 : cluster [DBG] pgmap v309: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:06.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:05 smithi204 bash[20295]: cluster 2024-04-24T16:21:04.934594+0000 mgr.smithi178.tjvcci (mgr.14197) 362 : cluster [DBG] pgmap v309: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:06.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:05 smithi204 bash[20295]: cluster 2024-04-24T16:21:04.934594+0000 mgr.smithi178.tjvcci (mgr.14197) 362 : cluster [DBG] pgmap v309: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:07.834 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:21:08.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:08 smithi178 bash[18765]: cluster 2024-04-24T16:21:06.935650+0000 mgr.smithi178.tjvcci (mgr.14197) 363 : cluster [DBG] pgmap v310: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:08.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:08 smithi178 bash[18765]: cluster 2024-04-24T16:21:06.935650+0000 mgr.smithi178.tjvcci (mgr.14197) 363 : cluster [DBG] pgmap v310: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:08.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:08 smithi204 bash[20295]: cluster 2024-04-24T16:21:06.935650+0000 mgr.smithi178.tjvcci (mgr.14197) 363 : cluster [DBG] pgmap v310: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:08.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:08 smithi204 bash[20295]: cluster 2024-04-24T16:21:06.935650+0000 mgr.smithi178.tjvcci (mgr.14197) 363 : cluster [DBG] pgmap v310: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:09.031 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:21:09.661 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:21:10.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:10 smithi178 bash[18765]: cluster 2024-04-24T16:21:08.936659+0000 mgr.smithi178.tjvcci (mgr.14197) 364 : cluster [DBG] pgmap v311: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:10.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:10 smithi178 bash[18765]: cluster 2024-04-24T16:21:08.936659+0000 mgr.smithi178.tjvcci (mgr.14197) 364 : cluster [DBG] pgmap v311: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:10.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:10 smithi178 bash[18765]: audit 2024-04-24T16:21:09.038192+0000 mon.smithi178 (mon.0) 504 : audit [DBG] from='client.? 172.21.15.178:0/1562725404' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:10.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:10 smithi178 bash[18765]: audit 2024-04-24T16:21:09.038192+0000 mon.smithi178 (mon.0) 504 : audit [DBG] from='client.? 172.21.15.178:0/1562725404' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:10.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:10 smithi204 bash[20295]: cluster 2024-04-24T16:21:08.936659+0000 mgr.smithi178.tjvcci (mgr.14197) 364 : cluster [DBG] pgmap v311: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:10.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:10 smithi204 bash[20295]: cluster 2024-04-24T16:21:08.936659+0000 mgr.smithi178.tjvcci (mgr.14197) 364 : cluster [DBG] pgmap v311: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:10.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:10 smithi204 bash[20295]: audit 2024-04-24T16:21:09.038192+0000 mon.smithi178 (mon.0) 504 : audit [DBG] from='client.? 172.21.15.178:0/1562725404' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:10.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:10 smithi204 bash[20295]: audit 2024-04-24T16:21:09.038192+0000 mon.smithi178 (mon.0) 504 : audit [DBG] from='client.? 172.21.15.178:0/1562725404' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:10.663 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:21:12.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:12 smithi178 bash[18765]: cluster 2024-04-24T16:21:10.937656+0000 mgr.smithi178.tjvcci (mgr.14197) 365 : cluster [DBG] pgmap v312: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:12.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:12 smithi178 bash[18765]: cluster 2024-04-24T16:21:10.937656+0000 mgr.smithi178.tjvcci (mgr.14197) 365 : cluster [DBG] pgmap v312: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:12.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:12 smithi204 bash[20295]: cluster 2024-04-24T16:21:10.937656+0000 mgr.smithi178.tjvcci (mgr.14197) 365 : cluster [DBG] pgmap v312: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:12.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:12 smithi204 bash[20295]: cluster 2024-04-24T16:21:10.937656+0000 mgr.smithi178.tjvcci (mgr.14197) 365 : cluster [DBG] pgmap v312: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:13.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:13 smithi178 bash[18765]: audit 2024-04-24T16:21:12.394127+0000 mon.smithi178 (mon.0) 505 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:13.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:13 smithi178 bash[18765]: audit 2024-04-24T16:21:12.394127+0000 mon.smithi178 (mon.0) 505 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:13.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:13 smithi204 bash[20295]: audit 2024-04-24T16:21:12.394127+0000 mon.smithi178 (mon.0) 505 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:13.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:13 smithi204 bash[20295]: audit 2024-04-24T16:21:12.394127+0000 mon.smithi178 (mon.0) 505 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:14.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:14 smithi178 bash[18765]: cluster 2024-04-24T16:21:12.938688+0000 mgr.smithi178.tjvcci (mgr.14197) 366 : cluster [DBG] pgmap v313: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:14.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:14 smithi178 bash[18765]: cluster 2024-04-24T16:21:12.938688+0000 mgr.smithi178.tjvcci (mgr.14197) 366 : cluster [DBG] pgmap v313: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:14.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:14 smithi204 bash[20295]: cluster 2024-04-24T16:21:12.938688+0000 mgr.smithi178.tjvcci (mgr.14197) 366 : cluster [DBG] pgmap v313: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:14.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:14 smithi204 bash[20295]: cluster 2024-04-24T16:21:12.938688+0000 mgr.smithi178.tjvcci (mgr.14197) 366 : cluster [DBG] pgmap v313: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:15.422 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:21:16.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:16 smithi178 bash[18765]: cluster 2024-04-24T16:21:14.939397+0000 mgr.smithi178.tjvcci (mgr.14197) 367 : cluster [DBG] pgmap v314: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:16.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:16 smithi178 bash[18765]: cluster 2024-04-24T16:21:14.939397+0000 mgr.smithi178.tjvcci (mgr.14197) 367 : cluster [DBG] pgmap v314: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:16.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:16 smithi204 bash[20295]: cluster 2024-04-24T16:21:14.939397+0000 mgr.smithi178.tjvcci (mgr.14197) 367 : cluster [DBG] pgmap v314: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:16.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:16 smithi204 bash[20295]: cluster 2024-04-24T16:21:14.939397+0000 mgr.smithi178.tjvcci (mgr.14197) 367 : cluster [DBG] pgmap v314: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:16.604 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:21:17.199 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:21:17.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:17 smithi178 bash[18765]: audit 2024-04-24T16:21:16.611614+0000 mon.smithi178 (mon.0) 506 : audit [DBG] from='client.? 172.21.15.178:0/3846314883' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:17.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:17 smithi178 bash[18765]: audit 2024-04-24T16:21:16.611614+0000 mon.smithi178 (mon.0) 506 : audit [DBG] from='client.? 172.21.15.178:0/3846314883' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:17.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:17 smithi204 bash[20295]: audit 2024-04-24T16:21:16.611614+0000 mon.smithi178 (mon.0) 506 : audit [DBG] from='client.? 172.21.15.178:0/3846314883' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:17.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:17 smithi204 bash[20295]: audit 2024-04-24T16:21:16.611614+0000 mon.smithi178 (mon.0) 506 : audit [DBG] from='client.? 172.21.15.178:0/3846314883' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:18.200 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:21:18.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:18 smithi178 bash[18765]: cluster 2024-04-24T16:21:16.940350+0000 mgr.smithi178.tjvcci (mgr.14197) 368 : cluster [DBG] pgmap v315: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:18.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:18 smithi178 bash[18765]: cluster 2024-04-24T16:21:16.940350+0000 mgr.smithi178.tjvcci (mgr.14197) 368 : cluster [DBG] pgmap v315: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:18.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:18 smithi204 bash[20295]: cluster 2024-04-24T16:21:16.940350+0000 mgr.smithi178.tjvcci (mgr.14197) 368 : cluster [DBG] pgmap v315: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:18.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:18 smithi204 bash[20295]: cluster 2024-04-24T16:21:16.940350+0000 mgr.smithi178.tjvcci (mgr.14197) 368 : cluster [DBG] pgmap v315: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:20.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:20 smithi178 bash[18765]: cluster 2024-04-24T16:21:18.941315+0000 mgr.smithi178.tjvcci (mgr.14197) 369 : cluster [DBG] pgmap v316: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:20.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:20 smithi178 bash[18765]: cluster 2024-04-24T16:21:18.941315+0000 mgr.smithi178.tjvcci (mgr.14197) 369 : cluster [DBG] pgmap v316: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:20.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:20 smithi204 bash[20295]: cluster 2024-04-24T16:21:18.941315+0000 mgr.smithi178.tjvcci (mgr.14197) 369 : cluster [DBG] pgmap v316: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:20.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:20 smithi204 bash[20295]: cluster 2024-04-24T16:21:18.941315+0000 mgr.smithi178.tjvcci (mgr.14197) 369 : cluster [DBG] pgmap v316: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:22.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:22 smithi178 bash[18765]: cluster 2024-04-24T16:21:20.942190+0000 mgr.smithi178.tjvcci (mgr.14197) 370 : cluster [DBG] pgmap v317: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:22.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:22 smithi178 bash[18765]: cluster 2024-04-24T16:21:20.942190+0000 mgr.smithi178.tjvcci (mgr.14197) 370 : cluster [DBG] pgmap v317: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:22.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:22 smithi204 bash[20295]: cluster 2024-04-24T16:21:20.942190+0000 mgr.smithi178.tjvcci (mgr.14197) 370 : cluster [DBG] pgmap v317: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:22.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:22 smithi204 bash[20295]: cluster 2024-04-24T16:21:20.942190+0000 mgr.smithi178.tjvcci (mgr.14197) 370 : cluster [DBG] pgmap v317: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:22.966 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:21:24.127 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:21:24.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:24 smithi178 bash[18765]: cluster 2024-04-24T16:21:22.943140+0000 mgr.smithi178.tjvcci (mgr.14197) 371 : cluster [DBG] pgmap v318: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:24.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:24 smithi178 bash[18765]: cluster 2024-04-24T16:21:22.943140+0000 mgr.smithi178.tjvcci (mgr.14197) 371 : cluster [DBG] pgmap v318: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:24.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:24 smithi204 bash[20295]: cluster 2024-04-24T16:21:22.943140+0000 mgr.smithi178.tjvcci (mgr.14197) 371 : cluster [DBG] pgmap v318: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:24.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:24 smithi204 bash[20295]: cluster 2024-04-24T16:21:22.943140+0000 mgr.smithi178.tjvcci (mgr.14197) 371 : cluster [DBG] pgmap v318: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:24.778 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:21:25.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:25 smithi178 bash[18765]: audit 2024-04-24T16:21:24.133924+0000 mon.smithi178 (mon.0) 507 : audit [DBG] from='client.? 172.21.15.178:0/1550687433' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:25.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:25 smithi178 bash[18765]: audit 2024-04-24T16:21:24.133924+0000 mon.smithi178 (mon.0) 507 : audit [DBG] from='client.? 172.21.15.178:0/1550687433' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:25.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:25 smithi204 bash[20295]: audit 2024-04-24T16:21:24.133924+0000 mon.smithi178 (mon.0) 507 : audit [DBG] from='client.? 172.21.15.178:0/1550687433' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:25.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:25 smithi204 bash[20295]: audit 2024-04-24T16:21:24.133924+0000 mon.smithi178 (mon.0) 507 : audit [DBG] from='client.? 172.21.15.178:0/1550687433' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:25.779 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:21:26.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:26 smithi178 bash[18765]: cluster 2024-04-24T16:21:24.944256+0000 mgr.smithi178.tjvcci (mgr.14197) 372 : cluster [DBG] pgmap v319: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:26.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:26 smithi178 bash[18765]: cluster 2024-04-24T16:21:24.944256+0000 mgr.smithi178.tjvcci (mgr.14197) 372 : cluster [DBG] pgmap v319: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:26.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:26 smithi204 bash[20295]: cluster 2024-04-24T16:21:24.944256+0000 mgr.smithi178.tjvcci (mgr.14197) 372 : cluster [DBG] pgmap v319: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:26.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:26 smithi204 bash[20295]: cluster 2024-04-24T16:21:24.944256+0000 mgr.smithi178.tjvcci (mgr.14197) 372 : cluster [DBG] pgmap v319: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:28.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:28 smithi178 bash[18765]: cluster 2024-04-24T16:21:26.945324+0000 mgr.smithi178.tjvcci (mgr.14197) 373 : cluster [DBG] pgmap v320: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:28.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:28 smithi178 bash[18765]: cluster 2024-04-24T16:21:26.945324+0000 mgr.smithi178.tjvcci (mgr.14197) 373 : cluster [DBG] pgmap v320: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:28.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:28 smithi178 bash[18765]: audit 2024-04-24T16:21:27.394557+0000 mon.smithi178 (mon.0) 508 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:28.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:28 smithi178 bash[18765]: audit 2024-04-24T16:21:27.394557+0000 mon.smithi178 (mon.0) 508 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:28 smithi204 bash[20295]: cluster 2024-04-24T16:21:26.945324+0000 mgr.smithi178.tjvcci (mgr.14197) 373 : cluster [DBG] pgmap v320: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:28 smithi204 bash[20295]: cluster 2024-04-24T16:21:26.945324+0000 mgr.smithi178.tjvcci (mgr.14197) 373 : cluster [DBG] pgmap v320: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:28 smithi204 bash[20295]: audit 2024-04-24T16:21:27.394557+0000 mon.smithi178 (mon.0) 508 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:28 smithi204 bash[20295]: audit 2024-04-24T16:21:27.394557+0000 mon.smithi178 (mon.0) 508 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:30.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:30 smithi178 bash[18765]: cluster 2024-04-24T16:21:28.946354+0000 mgr.smithi178.tjvcci (mgr.14197) 374 : cluster [DBG] pgmap v321: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:30.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:30 smithi178 bash[18765]: cluster 2024-04-24T16:21:28.946354+0000 mgr.smithi178.tjvcci (mgr.14197) 374 : cluster [DBG] pgmap v321: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:30.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:30 smithi204 bash[20295]: cluster 2024-04-24T16:21:28.946354+0000 mgr.smithi178.tjvcci (mgr.14197) 374 : cluster [DBG] pgmap v321: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:30.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:30 smithi204 bash[20295]: cluster 2024-04-24T16:21:28.946354+0000 mgr.smithi178.tjvcci (mgr.14197) 374 : cluster [DBG] pgmap v321: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:30.546 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:21:31.672 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:21:32.233 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:21:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:32 smithi178 bash[18765]: cluster 2024-04-24T16:21:30.947361+0000 mgr.smithi178.tjvcci (mgr.14197) 375 : cluster [DBG] pgmap v322: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:32 smithi178 bash[18765]: cluster 2024-04-24T16:21:30.947361+0000 mgr.smithi178.tjvcci (mgr.14197) 375 : cluster [DBG] pgmap v322: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:32 smithi178 bash[18765]: audit 2024-04-24T16:21:31.678928+0000 mon.smithi178 (mon.0) 509 : audit [DBG] from='client.? 172.21.15.178:0/2893501193' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:32.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:32 smithi178 bash[18765]: audit 2024-04-24T16:21:31.678928+0000 mon.smithi178 (mon.0) 509 : audit [DBG] from='client.? 172.21.15.178:0/2893501193' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:32 smithi204 bash[20295]: cluster 2024-04-24T16:21:30.947361+0000 mgr.smithi178.tjvcci (mgr.14197) 375 : cluster [DBG] pgmap v322: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:32 smithi204 bash[20295]: cluster 2024-04-24T16:21:30.947361+0000 mgr.smithi178.tjvcci (mgr.14197) 375 : cluster [DBG] pgmap v322: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:32 smithi204 bash[20295]: audit 2024-04-24T16:21:31.678928+0000 mon.smithi178 (mon.0) 509 : audit [DBG] from='client.? 172.21.15.178:0/2893501193' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:32 smithi204 bash[20295]: audit 2024-04-24T16:21:31.678928+0000 mon.smithi178 (mon.0) 509 : audit [DBG] from='client.? 172.21.15.178:0/2893501193' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:33.234 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:21:34.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:34 smithi178 bash[18765]: cluster 2024-04-24T16:21:32.948435+0000 mgr.smithi178.tjvcci (mgr.14197) 376 : cluster [DBG] pgmap v323: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:34.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:34 smithi178 bash[18765]: cluster 2024-04-24T16:21:32.948435+0000 mgr.smithi178.tjvcci (mgr.14197) 376 : cluster [DBG] pgmap v323: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:34.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:34 smithi204 bash[20295]: cluster 2024-04-24T16:21:32.948435+0000 mgr.smithi178.tjvcci (mgr.14197) 376 : cluster [DBG] pgmap v323: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:34.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:34 smithi204 bash[20295]: cluster 2024-04-24T16:21:32.948435+0000 mgr.smithi178.tjvcci (mgr.14197) 376 : cluster [DBG] pgmap v323: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:36.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:36 smithi178 bash[18765]: cluster 2024-04-24T16:21:34.949486+0000 mgr.smithi178.tjvcci (mgr.14197) 377 : cluster [DBG] pgmap v324: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:36.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:36 smithi178 bash[18765]: cluster 2024-04-24T16:21:34.949486+0000 mgr.smithi178.tjvcci (mgr.14197) 377 : cluster [DBG] pgmap v324: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:36.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:36 smithi204 bash[20295]: cluster 2024-04-24T16:21:34.949486+0000 mgr.smithi178.tjvcci (mgr.14197) 377 : cluster [DBG] pgmap v324: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:36.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:36 smithi204 bash[20295]: cluster 2024-04-24T16:21:34.949486+0000 mgr.smithi178.tjvcci (mgr.14197) 377 : cluster [DBG] pgmap v324: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:37.998 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:21:38.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:38 smithi178 bash[18765]: cluster 2024-04-24T16:21:36.950576+0000 mgr.smithi178.tjvcci (mgr.14197) 378 : cluster [DBG] pgmap v325: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:38.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:38 smithi178 bash[18765]: cluster 2024-04-24T16:21:36.950576+0000 mgr.smithi178.tjvcci (mgr.14197) 378 : cluster [DBG] pgmap v325: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:38.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:38 smithi204 bash[20295]: cluster 2024-04-24T16:21:36.950576+0000 mgr.smithi178.tjvcci (mgr.14197) 378 : cluster [DBG] pgmap v325: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:38.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:38 smithi204 bash[20295]: cluster 2024-04-24T16:21:36.950576+0000 mgr.smithi178.tjvcci (mgr.14197) 378 : cluster [DBG] pgmap v325: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:39.281 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:21:39.897 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:21:40.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:40 smithi178 bash[18765]: cluster 2024-04-24T16:21:38.951176+0000 mgr.smithi178.tjvcci (mgr.14197) 379 : cluster [DBG] pgmap v326: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:40.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:40 smithi178 bash[18765]: cluster 2024-04-24T16:21:38.951176+0000 mgr.smithi178.tjvcci (mgr.14197) 379 : cluster [DBG] pgmap v326: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:40.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:40 smithi178 bash[18765]: audit 2024-04-24T16:21:39.288718+0000 mon.smithi178 (mon.0) 510 : audit [DBG] from='client.? 172.21.15.178:0/1189773189' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:40.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:40 smithi178 bash[18765]: audit 2024-04-24T16:21:39.288718+0000 mon.smithi178 (mon.0) 510 : audit [DBG] from='client.? 172.21.15.178:0/1189773189' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:40.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:40 smithi204 bash[20295]: cluster 2024-04-24T16:21:38.951176+0000 mgr.smithi178.tjvcci (mgr.14197) 379 : cluster [DBG] pgmap v326: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:40.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:40 smithi204 bash[20295]: cluster 2024-04-24T16:21:38.951176+0000 mgr.smithi178.tjvcci (mgr.14197) 379 : cluster [DBG] pgmap v326: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:40.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:40 smithi204 bash[20295]: audit 2024-04-24T16:21:39.288718+0000 mon.smithi178 (mon.0) 510 : audit [DBG] from='client.? 172.21.15.178:0/1189773189' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:40.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:40 smithi204 bash[20295]: audit 2024-04-24T16:21:39.288718+0000 mon.smithi178 (mon.0) 510 : audit [DBG] from='client.? 172.21.15.178:0/1189773189' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:40.898 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:21:41.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:41 smithi178 bash[18765]: audit 2024-04-24T16:21:41.039776+0000 mon.smithi178 (mon.0) 511 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:21:41.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:41 smithi178 bash[18765]: audit 2024-04-24T16:21:41.039776+0000 mon.smithi178 (mon.0) 511 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:21:41.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:41 smithi204 bash[20295]: audit 2024-04-24T16:21:41.039776+0000 mon.smithi178 (mon.0) 511 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:21:41.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:41 smithi204 bash[20295]: audit 2024-04-24T16:21:41.039776+0000 mon.smithi178 (mon.0) 511 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:21:42.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:42 smithi204 bash[20295]: cluster 2024-04-24T16:21:40.952161+0000 mgr.smithi178.tjvcci (mgr.14197) 380 : cluster [DBG] pgmap v327: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:42.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:42 smithi204 bash[20295]: cluster 2024-04-24T16:21:40.952161+0000 mgr.smithi178.tjvcci (mgr.14197) 380 : cluster [DBG] pgmap v327: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:42.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:42 smithi204 bash[20295]: audit 2024-04-24T16:21:41.732958+0000 mon.smithi178 (mon.0) 512 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:21:42.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:42 smithi204 bash[20295]: audit 2024-04-24T16:21:41.732958+0000 mon.smithi178 (mon.0) 512 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:21:42.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:42 smithi178 bash[18765]: cluster 2024-04-24T16:21:40.952161+0000 mgr.smithi178.tjvcci (mgr.14197) 380 : cluster [DBG] pgmap v327: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:42.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:42 smithi178 bash[18765]: cluster 2024-04-24T16:21:40.952161+0000 mgr.smithi178.tjvcci (mgr.14197) 380 : cluster [DBG] pgmap v327: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:42.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:42 smithi178 bash[18765]: audit 2024-04-24T16:21:41.732958+0000 mon.smithi178 (mon.0) 512 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:21:42.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:42 smithi178 bash[18765]: audit 2024-04-24T16:21:41.732958+0000 mon.smithi178 (mon.0) 512 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:21:43.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:43 smithi204 bash[20295]: audit 2024-04-24T16:21:42.395086+0000 mon.smithi178 (mon.0) 513 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:43.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:43 smithi204 bash[20295]: audit 2024-04-24T16:21:42.395086+0000 mon.smithi178 (mon.0) 513 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:43.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:43 smithi178 bash[18765]: audit 2024-04-24T16:21:42.395086+0000 mon.smithi178 (mon.0) 513 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:43.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:43 smithi178 bash[18765]: audit 2024-04-24T16:21:42.395086+0000 mon.smithi178 (mon.0) 513 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:44.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:44 smithi204 bash[20295]: cluster 2024-04-24T16:21:42.953128+0000 mgr.smithi178.tjvcci (mgr.14197) 381 : cluster [DBG] pgmap v328: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:44.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:44 smithi204 bash[20295]: cluster 2024-04-24T16:21:42.953128+0000 mgr.smithi178.tjvcci (mgr.14197) 381 : cluster [DBG] pgmap v328: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:44.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:44 smithi178 bash[18765]: cluster 2024-04-24T16:21:42.953128+0000 mgr.smithi178.tjvcci (mgr.14197) 381 : cluster [DBG] pgmap v328: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:44.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:44 smithi178 bash[18765]: cluster 2024-04-24T16:21:42.953128+0000 mgr.smithi178.tjvcci (mgr.14197) 381 : cluster [DBG] pgmap v328: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:45.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:45 smithi178 bash[18765]: cluster 2024-04-24T16:21:44.954184+0000 mgr.smithi178.tjvcci (mgr.14197) 382 : cluster [DBG] pgmap v329: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:45.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:45 smithi178 bash[18765]: cluster 2024-04-24T16:21:44.954184+0000 mgr.smithi178.tjvcci (mgr.14197) 382 : cluster [DBG] pgmap v329: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:45.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:45 smithi204 bash[20295]: cluster 2024-04-24T16:21:44.954184+0000 mgr.smithi178.tjvcci (mgr.14197) 382 : cluster [DBG] pgmap v329: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:45.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:45 smithi204 bash[20295]: cluster 2024-04-24T16:21:44.954184+0000 mgr.smithi178.tjvcci (mgr.14197) 382 : cluster [DBG] pgmap v329: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:45.663 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:21:46.786 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:21:47.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:46 smithi178 bash[18765]: audit 2024-04-24T16:21:46.793052+0000 mon.smithi178 (mon.0) 514 : audit [DBG] from='client.? 172.21.15.178:0/1022825791' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:47.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:46 smithi178 bash[18765]: audit 2024-04-24T16:21:46.793052+0000 mon.smithi178 (mon.0) 514 : audit [DBG] from='client.? 172.21.15.178:0/1022825791' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:47.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:46 smithi204 bash[20295]: audit 2024-04-24T16:21:46.793052+0000 mon.smithi178 (mon.0) 514 : audit [DBG] from='client.? 172.21.15.178:0/1022825791' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:47.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:46 smithi204 bash[20295]: audit 2024-04-24T16:21:46.793052+0000 mon.smithi178 (mon.0) 514 : audit [DBG] from='client.? 172.21.15.178:0/1022825791' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:47.772 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:21:47.939 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:47 smithi178 bash[18765]: cluster 2024-04-24T16:21:46.955120+0000 mgr.smithi178.tjvcci (mgr.14197) 383 : cluster [DBG] pgmap v330: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:47.939 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:47 smithi178 bash[18765]: cluster 2024-04-24T16:21:46.955120+0000 mgr.smithi178.tjvcci (mgr.14197) 383 : cluster [DBG] pgmap v330: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:48.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:47 smithi204 bash[20295]: cluster 2024-04-24T16:21:46.955120+0000 mgr.smithi178.tjvcci (mgr.14197) 383 : cluster [DBG] pgmap v330: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:48.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:47 smithi204 bash[20295]: cluster 2024-04-24T16:21:46.955120+0000 mgr.smithi178.tjvcci (mgr.14197) 383 : cluster [DBG] pgmap v330: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:48.774 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:21:50.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: cluster 2024-04-24T16:21:48.956020+0000 mgr.smithi178.tjvcci (mgr.14197) 384 : cluster [DBG] pgmap v331: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:50.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: cluster 2024-04-24T16:21:48.956020+0000 mgr.smithi178.tjvcci (mgr.14197) 384 : cluster [DBG] pgmap v331: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:50.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: audit 2024-04-24T16:21:49.203584+0000 mon.smithi178 (mon.0) 515 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi204", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:21:50.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: audit 2024-04-24T16:21:49.203584+0000 mon.smithi178 (mon.0) 515 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi204", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:21:50.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: audit 2024-04-24T16:21:49.219526+0000 mon.smithi178 (mon.0) 516 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi178", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:21:50.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: audit 2024-04-24T16:21:49.219526+0000 mon.smithi178 (mon.0) 516 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi178", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:21:50.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: audit 2024-04-24T16:21:49.220885+0000 mon.smithi178 (mon.0) 517 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:21:50.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: audit 2024-04-24T16:21:49.220885+0000 mon.smithi178 (mon.0) 517 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:21:50.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: audit 2024-04-24T16:21:49.222013+0000 mon.smithi178 (mon.0) 518 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:21:50.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: audit 2024-04-24T16:21:49.222013+0000 mon.smithi178 (mon.0) 518 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:21:50.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: audit 2024-04-24T16:21:49.229840+0000 mon.smithi178 (mon.0) 519 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:21:50.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: audit 2024-04-24T16:21:49.229840+0000 mon.smithi178 (mon.0) 519 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:21:50.333 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: audit 2024-04-24T16:21:49.237589+0000 mon.smithi178 (mon.0) 520 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:21:50.334 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:50 smithi178 bash[18765]: audit 2024-04-24T16:21:49.237589+0000 mon.smithi178 (mon.0) 520 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:21:50.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: cluster 2024-04-24T16:21:48.956020+0000 mgr.smithi178.tjvcci (mgr.14197) 384 : cluster [DBG] pgmap v331: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:50.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: cluster 2024-04-24T16:21:48.956020+0000 mgr.smithi178.tjvcci (mgr.14197) 384 : cluster [DBG] pgmap v331: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:50.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: audit 2024-04-24T16:21:49.203584+0000 mon.smithi178 (mon.0) 515 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi204", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:21:50.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: audit 2024-04-24T16:21:49.203584+0000 mon.smithi178 (mon.0) 515 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi204", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:21:50.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: audit 2024-04-24T16:21:49.219526+0000 mon.smithi178 (mon.0) 516 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi178", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:21:50.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: audit 2024-04-24T16:21:49.219526+0000 mon.smithi178 (mon.0) 516 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config rm", "who": "osd/host:smithi178", "name": "osd_memory_target"}]: dispatch 2024-04-24T16:21:50.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: audit 2024-04-24T16:21:49.220885+0000 mon.smithi178 (mon.0) 517 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:21:50.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: audit 2024-04-24T16:21:49.220885+0000 mon.smithi178 (mon.0) 517 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:21:50.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: audit 2024-04-24T16:21:49.222013+0000 mon.smithi178 (mon.0) 518 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:21:50.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: audit 2024-04-24T16:21:49.222013+0000 mon.smithi178 (mon.0) 518 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:21:50.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: audit 2024-04-24T16:21:49.229840+0000 mon.smithi178 (mon.0) 519 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:21:50.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: audit 2024-04-24T16:21:49.229840+0000 mon.smithi178 (mon.0) 519 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:21:50.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: audit 2024-04-24T16:21:49.237589+0000 mon.smithi178 (mon.0) 520 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:21:50.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:50 smithi204 bash[20295]: audit 2024-04-24T16:21:49.237589+0000 mon.smithi178 (mon.0) 520 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:21:51.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:51 smithi178 bash[18765]: cluster 2024-04-24T16:21:49.223996+0000 mgr.smithi178.tjvcci (mgr.14197) 385 : cluster [DBG] pgmap v332: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:51.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:51 smithi178 bash[18765]: cluster 2024-04-24T16:21:49.223996+0000 mgr.smithi178.tjvcci (mgr.14197) 385 : cluster [DBG] pgmap v332: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:51.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:51 smithi178 bash[18765]: cluster 2024-04-24T16:21:49.224686+0000 mgr.smithi178.tjvcci (mgr.14197) 386 : cluster [DBG] pgmap v333: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:51.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:51 smithi178 bash[18765]: cluster 2024-04-24T16:21:49.224686+0000 mgr.smithi178.tjvcci (mgr.14197) 386 : cluster [DBG] pgmap v333: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:51.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:51 smithi204 bash[20295]: cluster 2024-04-24T16:21:49.223996+0000 mgr.smithi178.tjvcci (mgr.14197) 385 : cluster [DBG] pgmap v332: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:51.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:51 smithi204 bash[20295]: cluster 2024-04-24T16:21:49.223996+0000 mgr.smithi178.tjvcci (mgr.14197) 385 : cluster [DBG] pgmap v332: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:51.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:51 smithi204 bash[20295]: cluster 2024-04-24T16:21:49.224686+0000 mgr.smithi178.tjvcci (mgr.14197) 386 : cluster [DBG] pgmap v333: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:51.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:51 smithi204 bash[20295]: cluster 2024-04-24T16:21:49.224686+0000 mgr.smithi178.tjvcci (mgr.14197) 386 : cluster [DBG] pgmap v333: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:53.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:53 smithi178 bash[18765]: cluster 2024-04-24T16:21:51.225570+0000 mgr.smithi178.tjvcci (mgr.14197) 387 : cluster [DBG] pgmap v334: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:53.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:53 smithi178 bash[18765]: cluster 2024-04-24T16:21:51.225570+0000 mgr.smithi178.tjvcci (mgr.14197) 387 : cluster [DBG] pgmap v334: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:53.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:53 smithi204 bash[20295]: cluster 2024-04-24T16:21:51.225570+0000 mgr.smithi178.tjvcci (mgr.14197) 387 : cluster [DBG] pgmap v334: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:53.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:53 smithi204 bash[20295]: cluster 2024-04-24T16:21:51.225570+0000 mgr.smithi178.tjvcci (mgr.14197) 387 : cluster [DBG] pgmap v334: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:53.544 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:21:54.681 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:21:55.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:55 smithi178 bash[18765]: cluster 2024-04-24T16:21:53.226565+0000 mgr.smithi178.tjvcci (mgr.14197) 388 : cluster [DBG] pgmap v335: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:55.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:55 smithi178 bash[18765]: cluster 2024-04-24T16:21:53.226565+0000 mgr.smithi178.tjvcci (mgr.14197) 388 : cluster [DBG] pgmap v335: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:55.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:55 smithi178 bash[18765]: audit 2024-04-24T16:21:54.688100+0000 mon.smithi178 (mon.0) 521 : audit [DBG] from='client.? 172.21.15.178:0/414104404' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:55.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:55 smithi178 bash[18765]: audit 2024-04-24T16:21:54.688100+0000 mon.smithi178 (mon.0) 521 : audit [DBG] from='client.? 172.21.15.178:0/414104404' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:55.360 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:21:55.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:55 smithi204 bash[20295]: cluster 2024-04-24T16:21:53.226565+0000 mgr.smithi178.tjvcci (mgr.14197) 388 : cluster [DBG] pgmap v335: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:55.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:55 smithi204 bash[20295]: cluster 2024-04-24T16:21:53.226565+0000 mgr.smithi178.tjvcci (mgr.14197) 388 : cluster [DBG] pgmap v335: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:55.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:55 smithi204 bash[20295]: audit 2024-04-24T16:21:54.688100+0000 mon.smithi178 (mon.0) 521 : audit [DBG] from='client.? 172.21.15.178:0/414104404' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:55.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:55 smithi204 bash[20295]: audit 2024-04-24T16:21:54.688100+0000 mon.smithi178 (mon.0) 521 : audit [DBG] from='client.? 172.21.15.178:0/414104404' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:21:56.362 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:21:57.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:57 smithi178 bash[18765]: cluster 2024-04-24T16:21:55.227544+0000 mgr.smithi178.tjvcci (mgr.14197) 389 : cluster [DBG] pgmap v336: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:57.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:57 smithi178 bash[18765]: cluster 2024-04-24T16:21:55.227544+0000 mgr.smithi178.tjvcci (mgr.14197) 389 : cluster [DBG] pgmap v336: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:57.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:57 smithi204 bash[20295]: cluster 2024-04-24T16:21:55.227544+0000 mgr.smithi178.tjvcci (mgr.14197) 389 : cluster [DBG] pgmap v336: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:57.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:57 smithi204 bash[20295]: cluster 2024-04-24T16:21:55.227544+0000 mgr.smithi178.tjvcci (mgr.14197) 389 : cluster [DBG] pgmap v336: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:58.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:58 smithi178 bash[18765]: audit 2024-04-24T16:21:57.395450+0000 mon.smithi178 (mon.0) 522 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:58.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:58 smithi178 bash[18765]: audit 2024-04-24T16:21:57.395450+0000 mon.smithi178 (mon.0) 522 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:58 smithi204 bash[20295]: audit 2024-04-24T16:21:57.395450+0000 mon.smithi178 (mon.0) 522 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:58 smithi204 bash[20295]: audit 2024-04-24T16:21:57.395450+0000 mon.smithi178 (mon.0) 522 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:21:59.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:59 smithi178 bash[18765]: cluster 2024-04-24T16:21:57.228561+0000 mgr.smithi178.tjvcci (mgr.14197) 390 : cluster [DBG] pgmap v337: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:59.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:21:59 smithi178 bash[18765]: cluster 2024-04-24T16:21:57.228561+0000 mgr.smithi178.tjvcci (mgr.14197) 390 : cluster [DBG] pgmap v337: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:59.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:59 smithi204 bash[20295]: cluster 2024-04-24T16:21:57.228561+0000 mgr.smithi178.tjvcci (mgr.14197) 390 : cluster [DBG] pgmap v337: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:21:59.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:21:59 smithi204 bash[20295]: cluster 2024-04-24T16:21:57.228561+0000 mgr.smithi178.tjvcci (mgr.14197) 390 : cluster [DBG] pgmap v337: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:01.132 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:22:01.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:01 smithi178 bash[18765]: cluster 2024-04-24T16:21:59.229569+0000 mgr.smithi178.tjvcci (mgr.14197) 391 : cluster [DBG] pgmap v338: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:01.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:01 smithi178 bash[18765]: cluster 2024-04-24T16:21:59.229569+0000 mgr.smithi178.tjvcci (mgr.14197) 391 : cluster [DBG] pgmap v338: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:01.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:01 smithi204 bash[20295]: cluster 2024-04-24T16:21:59.229569+0000 mgr.smithi178.tjvcci (mgr.14197) 391 : cluster [DBG] pgmap v338: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:01.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:01 smithi204 bash[20295]: cluster 2024-04-24T16:21:59.229569+0000 mgr.smithi178.tjvcci (mgr.14197) 391 : cluster [DBG] pgmap v338: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:02.295 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:22:02.913 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:22:03.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:03 smithi178 bash[18765]: cluster 2024-04-24T16:22:01.230232+0000 mgr.smithi178.tjvcci (mgr.14197) 392 : cluster [DBG] pgmap v339: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:03.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:03 smithi178 bash[18765]: cluster 2024-04-24T16:22:01.230232+0000 mgr.smithi178.tjvcci (mgr.14197) 392 : cluster [DBG] pgmap v339: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:03.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:03 smithi178 bash[18765]: audit 2024-04-24T16:22:02.302760+0000 mon.smithi178 (mon.0) 523 : audit [DBG] from='client.? 172.21.15.178:0/1180647189' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:03.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:03 smithi178 bash[18765]: audit 2024-04-24T16:22:02.302760+0000 mon.smithi178 (mon.0) 523 : audit [DBG] from='client.? 172.21.15.178:0/1180647189' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:03.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:03 smithi204 bash[20295]: cluster 2024-04-24T16:22:01.230232+0000 mgr.smithi178.tjvcci (mgr.14197) 392 : cluster [DBG] pgmap v339: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:03.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:03 smithi204 bash[20295]: cluster 2024-04-24T16:22:01.230232+0000 mgr.smithi178.tjvcci (mgr.14197) 392 : cluster [DBG] pgmap v339: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:03.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:03 smithi204 bash[20295]: audit 2024-04-24T16:22:02.302760+0000 mon.smithi178 (mon.0) 523 : audit [DBG] from='client.? 172.21.15.178:0/1180647189' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:03.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:03 smithi204 bash[20295]: audit 2024-04-24T16:22:02.302760+0000 mon.smithi178 (mon.0) 523 : audit [DBG] from='client.? 172.21.15.178:0/1180647189' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:03.915 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:22:05.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:05 smithi178 bash[18765]: cluster 2024-04-24T16:22:03.231204+0000 mgr.smithi178.tjvcci (mgr.14197) 393 : cluster [DBG] pgmap v340: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:05.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:05 smithi178 bash[18765]: cluster 2024-04-24T16:22:03.231204+0000 mgr.smithi178.tjvcci (mgr.14197) 393 : cluster [DBG] pgmap v340: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:05.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:05 smithi204 bash[20295]: cluster 2024-04-24T16:22:03.231204+0000 mgr.smithi178.tjvcci (mgr.14197) 393 : cluster [DBG] pgmap v340: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:05.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:05 smithi204 bash[20295]: cluster 2024-04-24T16:22:03.231204+0000 mgr.smithi178.tjvcci (mgr.14197) 393 : cluster [DBG] pgmap v340: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:07.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:07 smithi178 bash[18765]: cluster 2024-04-24T16:22:05.232191+0000 mgr.smithi178.tjvcci (mgr.14197) 394 : cluster [DBG] pgmap v341: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:07.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:07 smithi178 bash[18765]: cluster 2024-04-24T16:22:05.232191+0000 mgr.smithi178.tjvcci (mgr.14197) 394 : cluster [DBG] pgmap v341: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:07.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:07 smithi204 bash[20295]: cluster 2024-04-24T16:22:05.232191+0000 mgr.smithi178.tjvcci (mgr.14197) 394 : cluster [DBG] pgmap v341: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:07.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:07 smithi204 bash[20295]: cluster 2024-04-24T16:22:05.232191+0000 mgr.smithi178.tjvcci (mgr.14197) 394 : cluster [DBG] pgmap v341: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:08.677 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:22:09.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:09 smithi178 bash[18765]: cluster 2024-04-24T16:22:07.233212+0000 mgr.smithi178.tjvcci (mgr.14197) 395 : cluster [DBG] pgmap v342: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:09.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:09 smithi178 bash[18765]: cluster 2024-04-24T16:22:07.233212+0000 mgr.smithi178.tjvcci (mgr.14197) 395 : cluster [DBG] pgmap v342: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:09.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:09 smithi204 bash[20295]: cluster 2024-04-24T16:22:07.233212+0000 mgr.smithi178.tjvcci (mgr.14197) 395 : cluster [DBG] pgmap v342: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:09.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:09 smithi204 bash[20295]: cluster 2024-04-24T16:22:07.233212+0000 mgr.smithi178.tjvcci (mgr.14197) 395 : cluster [DBG] pgmap v342: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:09.909 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:22:10.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:10 smithi178 bash[18765]: audit 2024-04-24T16:22:09.917118+0000 mon.smithi178 (mon.0) 524 : audit [DBG] from='client.? 172.21.15.178:0/2649377740' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:10.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:10 smithi178 bash[18765]: audit 2024-04-24T16:22:09.917118+0000 mon.smithi178 (mon.0) 524 : audit [DBG] from='client.? 172.21.15.178:0/2649377740' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:10.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:10 smithi204 bash[20295]: audit 2024-04-24T16:22:09.917118+0000 mon.smithi178 (mon.0) 524 : audit [DBG] from='client.? 172.21.15.178:0/2649377740' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:10.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:10 smithi204 bash[20295]: audit 2024-04-24T16:22:09.917118+0000 mon.smithi178 (mon.0) 524 : audit [DBG] from='client.? 172.21.15.178:0/2649377740' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:10.545 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:22:11.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:11 smithi178 bash[18765]: cluster 2024-04-24T16:22:09.234263+0000 mgr.smithi178.tjvcci (mgr.14197) 396 : cluster [DBG] pgmap v343: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:11.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:11 smithi178 bash[18765]: cluster 2024-04-24T16:22:09.234263+0000 mgr.smithi178.tjvcci (mgr.14197) 396 : cluster [DBG] pgmap v343: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:11.378 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:11 smithi204 bash[20295]: cluster 2024-04-24T16:22:09.234263+0000 mgr.smithi178.tjvcci (mgr.14197) 396 : cluster [DBG] pgmap v343: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:11.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:11 smithi204 bash[20295]: cluster 2024-04-24T16:22:09.234263+0000 mgr.smithi178.tjvcci (mgr.14197) 396 : cluster [DBG] pgmap v343: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:11.546 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:22:13.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:13 smithi178 bash[18765]: cluster 2024-04-24T16:22:11.235220+0000 mgr.smithi178.tjvcci (mgr.14197) 397 : cluster [DBG] pgmap v344: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:13.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:13 smithi178 bash[18765]: cluster 2024-04-24T16:22:11.235220+0000 mgr.smithi178.tjvcci (mgr.14197) 397 : cluster [DBG] pgmap v344: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:13.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:13 smithi178 bash[18765]: audit 2024-04-24T16:22:12.395862+0000 mon.smithi178 (mon.0) 525 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:13.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:13 smithi178 bash[18765]: audit 2024-04-24T16:22:12.395862+0000 mon.smithi178 (mon.0) 525 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:13.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:13 smithi204 bash[20295]: cluster 2024-04-24T16:22:11.235220+0000 mgr.smithi178.tjvcci (mgr.14197) 397 : cluster [DBG] pgmap v344: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:13.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:13 smithi204 bash[20295]: cluster 2024-04-24T16:22:11.235220+0000 mgr.smithi178.tjvcci (mgr.14197) 397 : cluster [DBG] pgmap v344: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:13.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:13 smithi204 bash[20295]: audit 2024-04-24T16:22:12.395862+0000 mon.smithi178 (mon.0) 525 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:13.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:13 smithi204 bash[20295]: audit 2024-04-24T16:22:12.395862+0000 mon.smithi178 (mon.0) 525 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:15.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:15 smithi178 bash[18765]: cluster 2024-04-24T16:22:13.236245+0000 mgr.smithi178.tjvcci (mgr.14197) 398 : cluster [DBG] pgmap v345: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:15.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:15 smithi178 bash[18765]: cluster 2024-04-24T16:22:13.236245+0000 mgr.smithi178.tjvcci (mgr.14197) 398 : cluster [DBG] pgmap v345: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:15.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:15 smithi204 bash[20295]: cluster 2024-04-24T16:22:13.236245+0000 mgr.smithi178.tjvcci (mgr.14197) 398 : cluster [DBG] pgmap v345: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:15.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:15 smithi204 bash[20295]: cluster 2024-04-24T16:22:13.236245+0000 mgr.smithi178.tjvcci (mgr.14197) 398 : cluster [DBG] pgmap v345: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:16.318 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:22:17.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:17 smithi178 bash[18765]: cluster 2024-04-24T16:22:15.237199+0000 mgr.smithi178.tjvcci (mgr.14197) 399 : cluster [DBG] pgmap v346: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:17.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:17 smithi178 bash[18765]: cluster 2024-04-24T16:22:15.237199+0000 mgr.smithi178.tjvcci (mgr.14197) 399 : cluster [DBG] pgmap v346: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:17.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:17 smithi204 bash[20295]: cluster 2024-04-24T16:22:15.237199+0000 mgr.smithi178.tjvcci (mgr.14197) 399 : cluster [DBG] pgmap v346: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:17.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:17 smithi204 bash[20295]: cluster 2024-04-24T16:22:15.237199+0000 mgr.smithi178.tjvcci (mgr.14197) 399 : cluster [DBG] pgmap v346: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:17.453 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:22:18.082 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:22:18.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:18 smithi178 bash[18765]: audit 2024-04-24T16:22:17.460440+0000 mon.smithi178 (mon.0) 526 : audit [DBG] from='client.? 172.21.15.178:0/4263557754' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:18.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:18 smithi178 bash[18765]: audit 2024-04-24T16:22:17.460440+0000 mon.smithi178 (mon.0) 526 : audit [DBG] from='client.? 172.21.15.178:0/4263557754' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:18.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:18 smithi204 bash[20295]: audit 2024-04-24T16:22:17.460440+0000 mon.smithi178 (mon.0) 526 : audit [DBG] from='client.? 172.21.15.178:0/4263557754' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:18.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:18 smithi204 bash[20295]: audit 2024-04-24T16:22:17.460440+0000 mon.smithi178 (mon.0) 526 : audit [DBG] from='client.? 172.21.15.178:0/4263557754' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:19.083 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:22:19.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:19 smithi204 bash[20295]: cluster 2024-04-24T16:22:17.237802+0000 mgr.smithi178.tjvcci (mgr.14197) 400 : cluster [DBG] pgmap v347: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:19.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:19 smithi204 bash[20295]: cluster 2024-04-24T16:22:17.237802+0000 mgr.smithi178.tjvcci (mgr.14197) 400 : cluster [DBG] pgmap v347: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:19.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:19 smithi178 bash[18765]: cluster 2024-04-24T16:22:17.237802+0000 mgr.smithi178.tjvcci (mgr.14197) 400 : cluster [DBG] pgmap v347: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:19.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:19 smithi178 bash[18765]: cluster 2024-04-24T16:22:17.237802+0000 mgr.smithi178.tjvcci (mgr.14197) 400 : cluster [DBG] pgmap v347: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:21.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:21 smithi204 bash[20295]: cluster 2024-04-24T16:22:19.238705+0000 mgr.smithi178.tjvcci (mgr.14197) 401 : cluster [DBG] pgmap v348: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:21.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:21 smithi204 bash[20295]: cluster 2024-04-24T16:22:19.238705+0000 mgr.smithi178.tjvcci (mgr.14197) 401 : cluster [DBG] pgmap v348: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:21.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:21 smithi178 bash[18765]: cluster 2024-04-24T16:22:19.238705+0000 mgr.smithi178.tjvcci (mgr.14197) 401 : cluster [DBG] pgmap v348: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:21.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:21 smithi178 bash[18765]: cluster 2024-04-24T16:22:19.238705+0000 mgr.smithi178.tjvcci (mgr.14197) 401 : cluster [DBG] pgmap v348: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:23.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:23 smithi204 bash[20295]: cluster 2024-04-24T16:22:21.239707+0000 mgr.smithi178.tjvcci (mgr.14197) 402 : cluster [DBG] pgmap v349: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:23.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:23 smithi204 bash[20295]: cluster 2024-04-24T16:22:21.239707+0000 mgr.smithi178.tjvcci (mgr.14197) 402 : cluster [DBG] pgmap v349: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:23.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:23 smithi178 bash[18765]: cluster 2024-04-24T16:22:21.239707+0000 mgr.smithi178.tjvcci (mgr.14197) 402 : cluster [DBG] pgmap v349: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:23.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:23 smithi178 bash[18765]: cluster 2024-04-24T16:22:21.239707+0000 mgr.smithi178.tjvcci (mgr.14197) 402 : cluster [DBG] pgmap v349: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:23.858 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:22:25.059 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:22:25.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:25 smithi178 bash[18765]: cluster 2024-04-24T16:22:23.240676+0000 mgr.smithi178.tjvcci (mgr.14197) 403 : cluster [DBG] pgmap v350: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:25.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:25 smithi178 bash[18765]: cluster 2024-04-24T16:22:23.240676+0000 mgr.smithi178.tjvcci (mgr.14197) 403 : cluster [DBG] pgmap v350: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:25.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:25 smithi178 bash[18765]: audit 2024-04-24T16:22:25.067046+0000 mon.smithi178 (mon.0) 527 : audit [DBG] from='client.? 172.21.15.178:0/3129826805' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:25.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:25 smithi178 bash[18765]: audit 2024-04-24T16:22:25.067046+0000 mon.smithi178 (mon.0) 527 : audit [DBG] from='client.? 172.21.15.178:0/3129826805' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:25.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:25 smithi204 bash[20295]: cluster 2024-04-24T16:22:23.240676+0000 mgr.smithi178.tjvcci (mgr.14197) 403 : cluster [DBG] pgmap v350: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:25.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:25 smithi204 bash[20295]: cluster 2024-04-24T16:22:23.240676+0000 mgr.smithi178.tjvcci (mgr.14197) 403 : cluster [DBG] pgmap v350: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:25.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:25 smithi204 bash[20295]: audit 2024-04-24T16:22:25.067046+0000 mon.smithi178 (mon.0) 527 : audit [DBG] from='client.? 172.21.15.178:0/3129826805' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:25.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:25 smithi204 bash[20295]: audit 2024-04-24T16:22:25.067046+0000 mon.smithi178 (mon.0) 527 : audit [DBG] from='client.? 172.21.15.178:0/3129826805' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:25.644 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:22:26.645 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:22:27.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:27 smithi204 bash[20295]: cluster 2024-04-24T16:22:25.241626+0000 mgr.smithi178.tjvcci (mgr.14197) 404 : cluster [DBG] pgmap v351: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:27.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:27 smithi204 bash[20295]: cluster 2024-04-24T16:22:25.241626+0000 mgr.smithi178.tjvcci (mgr.14197) 404 : cluster [DBG] pgmap v351: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:27.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:27 smithi178 bash[18765]: cluster 2024-04-24T16:22:25.241626+0000 mgr.smithi178.tjvcci (mgr.14197) 404 : cluster [DBG] pgmap v351: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:27.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:27 smithi178 bash[18765]: cluster 2024-04-24T16:22:25.241626+0000 mgr.smithi178.tjvcci (mgr.14197) 404 : cluster [DBG] pgmap v351: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:28 smithi204 bash[20295]: audit 2024-04-24T16:22:27.396273+0000 mon.smithi178 (mon.0) 528 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:28 smithi204 bash[20295]: audit 2024-04-24T16:22:27.396273+0000 mon.smithi178 (mon.0) 528 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:28.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:28 smithi178 bash[18765]: audit 2024-04-24T16:22:27.396273+0000 mon.smithi178 (mon.0) 528 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:28.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:28 smithi178 bash[18765]: audit 2024-04-24T16:22:27.396273+0000 mon.smithi178 (mon.0) 528 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:29.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:29 smithi204 bash[20295]: cluster 2024-04-24T16:22:27.242597+0000 mgr.smithi178.tjvcci (mgr.14197) 405 : cluster [DBG] pgmap v352: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:29.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:29 smithi204 bash[20295]: cluster 2024-04-24T16:22:27.242597+0000 mgr.smithi178.tjvcci (mgr.14197) 405 : cluster [DBG] pgmap v352: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:29.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:29 smithi178 bash[18765]: cluster 2024-04-24T16:22:27.242597+0000 mgr.smithi178.tjvcci (mgr.14197) 405 : cluster [DBG] pgmap v352: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:29.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:29 smithi178 bash[18765]: cluster 2024-04-24T16:22:27.242597+0000 mgr.smithi178.tjvcci (mgr.14197) 405 : cluster [DBG] pgmap v352: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:30.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:30 smithi178 bash[18765]: cluster 2024-04-24T16:22:29.243671+0000 mgr.smithi178.tjvcci (mgr.14197) 406 : cluster [DBG] pgmap v353: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:30.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:30 smithi178 bash[18765]: cluster 2024-04-24T16:22:29.243671+0000 mgr.smithi178.tjvcci (mgr.14197) 406 : cluster [DBG] pgmap v353: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:30.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:30 smithi204 bash[20295]: cluster 2024-04-24T16:22:29.243671+0000 mgr.smithi178.tjvcci (mgr.14197) 406 : cluster [DBG] pgmap v353: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:30.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:30 smithi204 bash[20295]: cluster 2024-04-24T16:22:29.243671+0000 mgr.smithi178.tjvcci (mgr.14197) 406 : cluster [DBG] pgmap v353: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:31.417 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:22:32.557 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:22:32.571 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:32 smithi178 bash[18765]: cluster 2024-04-24T16:22:31.244780+0000 mgr.smithi178.tjvcci (mgr.14197) 407 : cluster [DBG] pgmap v354: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:32.571 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:32 smithi178 bash[18765]: cluster 2024-04-24T16:22:31.244780+0000 mgr.smithi178.tjvcci (mgr.14197) 407 : cluster [DBG] pgmap v354: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:32.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:32 smithi204 bash[20295]: cluster 2024-04-24T16:22:31.244780+0000 mgr.smithi178.tjvcci (mgr.14197) 407 : cluster [DBG] pgmap v354: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:32.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:32 smithi204 bash[20295]: cluster 2024-04-24T16:22:31.244780+0000 mgr.smithi178.tjvcci (mgr.14197) 407 : cluster [DBG] pgmap v354: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:33.144 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:22:33.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:33 smithi178 bash[18765]: audit 2024-04-24T16:22:32.564327+0000 mon.smithi178 (mon.0) 529 : audit [DBG] from='client.? 172.21.15.178:0/3714894598' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:33.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:33 smithi178 bash[18765]: audit 2024-04-24T16:22:32.564327+0000 mon.smithi178 (mon.0) 529 : audit [DBG] from='client.? 172.21.15.178:0/3714894598' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:33.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:33 smithi204 bash[20295]: audit 2024-04-24T16:22:32.564327+0000 mon.smithi178 (mon.0) 529 : audit [DBG] from='client.? 172.21.15.178:0/3714894598' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:33.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:33 smithi204 bash[20295]: audit 2024-04-24T16:22:32.564327+0000 mon.smithi178 (mon.0) 529 : audit [DBG] from='client.? 172.21.15.178:0/3714894598' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:34.145 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:22:34.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:34 smithi178 bash[18765]: cluster 2024-04-24T16:22:33.245746+0000 mgr.smithi178.tjvcci (mgr.14197) 408 : cluster [DBG] pgmap v355: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:34.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:34 smithi178 bash[18765]: cluster 2024-04-24T16:22:33.245746+0000 mgr.smithi178.tjvcci (mgr.14197) 408 : cluster [DBG] pgmap v355: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:34.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:34 smithi204 bash[20295]: cluster 2024-04-24T16:22:33.245746+0000 mgr.smithi178.tjvcci (mgr.14197) 408 : cluster [DBG] pgmap v355: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:34.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:34 smithi204 bash[20295]: cluster 2024-04-24T16:22:33.245746+0000 mgr.smithi178.tjvcci (mgr.14197) 408 : cluster [DBG] pgmap v355: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:36.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:36 smithi178 bash[18765]: cluster 2024-04-24T16:22:35.246713+0000 mgr.smithi178.tjvcci (mgr.14197) 409 : cluster [DBG] pgmap v356: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:36.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:36 smithi178 bash[18765]: cluster 2024-04-24T16:22:35.246713+0000 mgr.smithi178.tjvcci (mgr.14197) 409 : cluster [DBG] pgmap v356: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:36.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:36 smithi204 bash[20295]: cluster 2024-04-24T16:22:35.246713+0000 mgr.smithi178.tjvcci (mgr.14197) 409 : cluster [DBG] pgmap v356: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:36.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:36 smithi204 bash[20295]: cluster 2024-04-24T16:22:35.246713+0000 mgr.smithi178.tjvcci (mgr.14197) 409 : cluster [DBG] pgmap v356: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:38.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:38 smithi178 bash[18765]: cluster 2024-04-24T16:22:37.247745+0000 mgr.smithi178.tjvcci (mgr.14197) 410 : cluster [DBG] pgmap v357: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:38.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:38 smithi178 bash[18765]: cluster 2024-04-24T16:22:37.247745+0000 mgr.smithi178.tjvcci (mgr.14197) 410 : cluster [DBG] pgmap v357: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:38.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:38 smithi204 bash[20295]: cluster 2024-04-24T16:22:37.247745+0000 mgr.smithi178.tjvcci (mgr.14197) 410 : cluster [DBG] pgmap v357: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:38.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:38 smithi204 bash[20295]: cluster 2024-04-24T16:22:37.247745+0000 mgr.smithi178.tjvcci (mgr.14197) 410 : cluster [DBG] pgmap v357: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:38.912 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:22:40.088 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:22:40.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:40 smithi178 bash[18765]: cluster 2024-04-24T16:22:39.248296+0000 mgr.smithi178.tjvcci (mgr.14197) 411 : cluster [DBG] pgmap v358: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:40.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:40 smithi178 bash[18765]: cluster 2024-04-24T16:22:39.248296+0000 mgr.smithi178.tjvcci (mgr.14197) 411 : cluster [DBG] pgmap v358: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:40.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:40 smithi178 bash[18765]: audit 2024-04-24T16:22:40.095803+0000 mon.smithi178 (mon.0) 530 : audit [DBG] from='client.? 172.21.15.178:0/2440233919' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:40.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:40 smithi178 bash[18765]: audit 2024-04-24T16:22:40.095803+0000 mon.smithi178 (mon.0) 530 : audit [DBG] from='client.? 172.21.15.178:0/2440233919' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:40.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:40 smithi204 bash[20295]: cluster 2024-04-24T16:22:39.248296+0000 mgr.smithi178.tjvcci (mgr.14197) 411 : cluster [DBG] pgmap v358: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:40.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:40 smithi204 bash[20295]: cluster 2024-04-24T16:22:39.248296+0000 mgr.smithi178.tjvcci (mgr.14197) 411 : cluster [DBG] pgmap v358: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:40.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:40 smithi204 bash[20295]: audit 2024-04-24T16:22:40.095803+0000 mon.smithi178 (mon.0) 530 : audit [DBG] from='client.? 172.21.15.178:0/2440233919' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:40.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:40 smithi204 bash[20295]: audit 2024-04-24T16:22:40.095803+0000 mon.smithi178 (mon.0) 530 : audit [DBG] from='client.? 172.21.15.178:0/2440233919' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:40.745 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:22:41.746 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:22:42.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:42 smithi178 bash[18765]: cluster 2024-04-24T16:22:41.249232+0000 mgr.smithi178.tjvcci (mgr.14197) 412 : cluster [DBG] pgmap v359: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:42.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:42 smithi178 bash[18765]: cluster 2024-04-24T16:22:41.249232+0000 mgr.smithi178.tjvcci (mgr.14197) 412 : cluster [DBG] pgmap v359: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:42.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:42 smithi204 bash[20295]: cluster 2024-04-24T16:22:41.249232+0000 mgr.smithi178.tjvcci (mgr.14197) 412 : cluster [DBG] pgmap v359: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:42.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:42 smithi204 bash[20295]: cluster 2024-04-24T16:22:41.249232+0000 mgr.smithi178.tjvcci (mgr.14197) 412 : cluster [DBG] pgmap v359: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:43.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:43 smithi178 bash[18765]: audit 2024-04-24T16:22:42.396977+0000 mon.smithi178 (mon.0) 531 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:43.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:43 smithi178 bash[18765]: audit 2024-04-24T16:22:42.396977+0000 mon.smithi178 (mon.0) 531 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:43.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:43 smithi204 bash[20295]: audit 2024-04-24T16:22:42.396977+0000 mon.smithi178 (mon.0) 531 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:43.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:43 smithi204 bash[20295]: audit 2024-04-24T16:22:42.396977+0000 mon.smithi178 (mon.0) 531 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:44.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:44 smithi178 bash[18765]: cluster 2024-04-24T16:22:43.250163+0000 mgr.smithi178.tjvcci (mgr.14197) 413 : cluster [DBG] pgmap v360: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:44.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:44 smithi178 bash[18765]: cluster 2024-04-24T16:22:43.250163+0000 mgr.smithi178.tjvcci (mgr.14197) 413 : cluster [DBG] pgmap v360: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:44.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:44 smithi204 bash[20295]: cluster 2024-04-24T16:22:43.250163+0000 mgr.smithi178.tjvcci (mgr.14197) 413 : cluster [DBG] pgmap v360: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:44.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:44 smithi204 bash[20295]: cluster 2024-04-24T16:22:43.250163+0000 mgr.smithi178.tjvcci (mgr.14197) 413 : cluster [DBG] pgmap v360: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:46.520 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:22:46.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:46 smithi204 bash[20295]: cluster 2024-04-24T16:22:45.251089+0000 mgr.smithi178.tjvcci (mgr.14197) 414 : cluster [DBG] pgmap v361: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:46.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:46 smithi204 bash[20295]: cluster 2024-04-24T16:22:45.251089+0000 mgr.smithi178.tjvcci (mgr.14197) 414 : cluster [DBG] pgmap v361: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:46.829 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:46 smithi178 bash[18765]: cluster 2024-04-24T16:22:45.251089+0000 mgr.smithi178.tjvcci (mgr.14197) 414 : cluster [DBG] pgmap v361: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:46.829 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:46 smithi178 bash[18765]: cluster 2024-04-24T16:22:45.251089+0000 mgr.smithi178.tjvcci (mgr.14197) 414 : cluster [DBG] pgmap v361: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:47.785 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:22:48.370 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:22:48.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:48 smithi204 bash[20295]: cluster 2024-04-24T16:22:47.252072+0000 mgr.smithi178.tjvcci (mgr.14197) 415 : cluster [DBG] pgmap v362: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:48.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:48 smithi204 bash[20295]: cluster 2024-04-24T16:22:47.252072+0000 mgr.smithi178.tjvcci (mgr.14197) 415 : cluster [DBG] pgmap v362: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:48.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:48 smithi204 bash[20295]: audit 2024-04-24T16:22:47.792096+0000 mon.smithi178 (mon.0) 532 : audit [DBG] from='client.? 172.21.15.178:0/1695875621' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:48.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:48 smithi204 bash[20295]: audit 2024-04-24T16:22:47.792096+0000 mon.smithi178 (mon.0) 532 : audit [DBG] from='client.? 172.21.15.178:0/1695875621' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:48.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:48 smithi178 bash[18765]: cluster 2024-04-24T16:22:47.252072+0000 mgr.smithi178.tjvcci (mgr.14197) 415 : cluster [DBG] pgmap v362: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:48.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:48 smithi178 bash[18765]: cluster 2024-04-24T16:22:47.252072+0000 mgr.smithi178.tjvcci (mgr.14197) 415 : cluster [DBG] pgmap v362: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:48.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:48 smithi178 bash[18765]: audit 2024-04-24T16:22:47.792096+0000 mon.smithi178 (mon.0) 532 : audit [DBG] from='client.? 172.21.15.178:0/1695875621' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:48.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:48 smithi178 bash[18765]: audit 2024-04-24T16:22:47.792096+0000 mon.smithi178 (mon.0) 532 : audit [DBG] from='client.? 172.21.15.178:0/1695875621' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:49.372 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:22:49.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:49 smithi204 bash[20295]: audit 2024-04-24T16:22:49.330757+0000 mon.smithi178 (mon.0) 533 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:22:49.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:49 smithi204 bash[20295]: audit 2024-04-24T16:22:49.330757+0000 mon.smithi178 (mon.0) 533 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:22:49.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:49 smithi178 bash[18765]: audit 2024-04-24T16:22:49.330757+0000 mon.smithi178 (mon.0) 533 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:22:49.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:49 smithi178 bash[18765]: audit 2024-04-24T16:22:49.330757+0000 mon.smithi178 (mon.0) 533 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:22:50.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:50 smithi178 bash[18765]: cluster 2024-04-24T16:22:49.253092+0000 mgr.smithi178.tjvcci (mgr.14197) 416 : cluster [DBG] pgmap v363: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:50.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:50 smithi178 bash[18765]: cluster 2024-04-24T16:22:49.253092+0000 mgr.smithi178.tjvcci (mgr.14197) 416 : cluster [DBG] pgmap v363: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:50.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:50 smithi204 bash[20295]: cluster 2024-04-24T16:22:49.253092+0000 mgr.smithi178.tjvcci (mgr.14197) 416 : cluster [DBG] pgmap v363: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:50.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:50 smithi204 bash[20295]: cluster 2024-04-24T16:22:49.253092+0000 mgr.smithi178.tjvcci (mgr.14197) 416 : cluster [DBG] pgmap v363: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:52.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:52 smithi204 bash[20295]: cluster 2024-04-24T16:22:51.254132+0000 mgr.smithi178.tjvcci (mgr.14197) 417 : cluster [DBG] pgmap v364: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:52.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:52 smithi204 bash[20295]: cluster 2024-04-24T16:22:51.254132+0000 mgr.smithi178.tjvcci (mgr.14197) 417 : cluster [DBG] pgmap v364: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:52.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:52 smithi178 bash[18765]: cluster 2024-04-24T16:22:51.254132+0000 mgr.smithi178.tjvcci (mgr.14197) 417 : cluster [DBG] pgmap v364: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:52.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:52 smithi178 bash[18765]: cluster 2024-04-24T16:22:51.254132+0000 mgr.smithi178.tjvcci (mgr.14197) 417 : cluster [DBG] pgmap v364: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:54.141 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:22:54.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:54 smithi178 bash[18765]: cluster 2024-04-24T16:22:53.255099+0000 mgr.smithi178.tjvcci (mgr.14197) 418 : cluster [DBG] pgmap v365: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:54.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:54 smithi178 bash[18765]: cluster 2024-04-24T16:22:53.255099+0000 mgr.smithi178.tjvcci (mgr.14197) 418 : cluster [DBG] pgmap v365: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:54.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:54 smithi204 bash[20295]: cluster 2024-04-24T16:22:53.255099+0000 mgr.smithi178.tjvcci (mgr.14197) 418 : cluster [DBG] pgmap v365: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:54.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:54 smithi204 bash[20295]: cluster 2024-04-24T16:22:53.255099+0000 mgr.smithi178.tjvcci (mgr.14197) 418 : cluster [DBG] pgmap v365: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:55.789 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:22:56.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:56 smithi178 bash[18765]: cluster 2024-04-24T16:22:55.256549+0000 mgr.smithi178.tjvcci (mgr.14197) 419 : cluster [DBG] pgmap v366: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:56.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:56 smithi178 bash[18765]: cluster 2024-04-24T16:22:55.256549+0000 mgr.smithi178.tjvcci (mgr.14197) 419 : cluster [DBG] pgmap v366: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:56.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:56 smithi178 bash[18765]: audit 2024-04-24T16:22:55.796690+0000 mon.smithi178 (mon.0) 534 : audit [DBG] from='client.? 172.21.15.178:0/649808438' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:56.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:56 smithi178 bash[18765]: audit 2024-04-24T16:22:55.796690+0000 mon.smithi178 (mon.0) 534 : audit [DBG] from='client.? 172.21.15.178:0/649808438' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:56.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:56 smithi204 bash[20295]: cluster 2024-04-24T16:22:55.256549+0000 mgr.smithi178.tjvcci (mgr.14197) 419 : cluster [DBG] pgmap v366: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:56.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:56 smithi204 bash[20295]: cluster 2024-04-24T16:22:55.256549+0000 mgr.smithi178.tjvcci (mgr.14197) 419 : cluster [DBG] pgmap v366: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:56.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:56 smithi204 bash[20295]: audit 2024-04-24T16:22:55.796690+0000 mon.smithi178 (mon.0) 534 : audit [DBG] from='client.? 172.21.15.178:0/649808438' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:56.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:56 smithi204 bash[20295]: audit 2024-04-24T16:22:55.796690+0000 mon.smithi178 (mon.0) 534 : audit [DBG] from='client.? 172.21.15.178:0/649808438' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:22:56.761 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:22:57.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:57 smithi204 bash[20295]: audit 2024-04-24T16:22:57.000247+0000 mon.smithi178 (mon.0) 535 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:22:57.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:57 smithi204 bash[20295]: audit 2024-04-24T16:22:57.000247+0000 mon.smithi178 (mon.0) 535 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:22:57.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:57 smithi204 bash[20295]: audit 2024-04-24T16:22:57.002215+0000 mon.smithi178 (mon.0) 536 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:22:57.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:57 smithi204 bash[20295]: audit 2024-04-24T16:22:57.002215+0000 mon.smithi178 (mon.0) 536 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:22:57.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:57 smithi204 bash[20295]: cluster 2024-04-24T16:22:57.005184+0000 mgr.smithi178.tjvcci (mgr.14197) 420 : cluster [DBG] pgmap v367: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:57.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:57 smithi204 bash[20295]: cluster 2024-04-24T16:22:57.005184+0000 mgr.smithi178.tjvcci (mgr.14197) 420 : cluster [DBG] pgmap v367: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:57.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:57 smithi204 bash[20295]: cluster 2024-04-24T16:22:57.006439+0000 mgr.smithi178.tjvcci (mgr.14197) 421 : cluster [DBG] pgmap v368: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:57.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:57 smithi204 bash[20295]: cluster 2024-04-24T16:22:57.006439+0000 mgr.smithi178.tjvcci (mgr.14197) 421 : cluster [DBG] pgmap v368: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:57.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:57 smithi204 bash[20295]: audit 2024-04-24T16:22:57.014254+0000 mon.smithi178 (mon.0) 537 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:22:57.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:57 smithi204 bash[20295]: audit 2024-04-24T16:22:57.014254+0000 mon.smithi178 (mon.0) 537 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:22:57.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:57 smithi204 bash[20295]: audit 2024-04-24T16:22:57.022647+0000 mon.smithi178 (mon.0) 538 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:22:57.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:57 smithi204 bash[20295]: audit 2024-04-24T16:22:57.022647+0000 mon.smithi178 (mon.0) 538 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:22:57.762 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:22:57.774 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:57 smithi178 bash[18765]: audit 2024-04-24T16:22:57.000247+0000 mon.smithi178 (mon.0) 535 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:22:57.774 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:57 smithi178 bash[18765]: audit 2024-04-24T16:22:57.000247+0000 mon.smithi178 (mon.0) 535 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:22:57.774 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:57 smithi178 bash[18765]: audit 2024-04-24T16:22:57.002215+0000 mon.smithi178 (mon.0) 536 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:22:57.774 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:57 smithi178 bash[18765]: audit 2024-04-24T16:22:57.002215+0000 mon.smithi178 (mon.0) 536 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:22:57.774 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:57 smithi178 bash[18765]: cluster 2024-04-24T16:22:57.005184+0000 mgr.smithi178.tjvcci (mgr.14197) 420 : cluster [DBG] pgmap v367: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:57.774 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:57 smithi178 bash[18765]: cluster 2024-04-24T16:22:57.005184+0000 mgr.smithi178.tjvcci (mgr.14197) 420 : cluster [DBG] pgmap v367: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:57.775 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:57 smithi178 bash[18765]: cluster 2024-04-24T16:22:57.006439+0000 mgr.smithi178.tjvcci (mgr.14197) 421 : cluster [DBG] pgmap v368: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:57.775 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:57 smithi178 bash[18765]: cluster 2024-04-24T16:22:57.006439+0000 mgr.smithi178.tjvcci (mgr.14197) 421 : cluster [DBG] pgmap v368: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:57.775 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:57 smithi178 bash[18765]: audit 2024-04-24T16:22:57.014254+0000 mon.smithi178 (mon.0) 537 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:22:57.775 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:57 smithi178 bash[18765]: audit 2024-04-24T16:22:57.014254+0000 mon.smithi178 (mon.0) 537 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:22:57.775 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:57 smithi178 bash[18765]: audit 2024-04-24T16:22:57.022647+0000 mon.smithi178 (mon.0) 538 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:22:57.775 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:57 smithi178 bash[18765]: audit 2024-04-24T16:22:57.022647+0000 mon.smithi178 (mon.0) 538 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:22:58.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:58 smithi204 bash[20295]: audit 2024-04-24T16:22:57.397266+0000 mon.smithi178 (mon.0) 539 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:58.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:58 smithi204 bash[20295]: audit 2024-04-24T16:22:57.397266+0000 mon.smithi178 (mon.0) 539 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:58.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:58 smithi178 bash[18765]: audit 2024-04-24T16:22:57.397266+0000 mon.smithi178 (mon.0) 539 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:58.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:58 smithi178 bash[18765]: audit 2024-04-24T16:22:57.397266+0000 mon.smithi178 (mon.0) 539 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:22:59.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:59 smithi178 bash[18765]: cluster 2024-04-24T16:22:59.007391+0000 mgr.smithi178.tjvcci (mgr.14197) 422 : cluster [DBG] pgmap v369: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:59.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:22:59 smithi178 bash[18765]: cluster 2024-04-24T16:22:59.007391+0000 mgr.smithi178.tjvcci (mgr.14197) 422 : cluster [DBG] pgmap v369: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:59.878 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:59 smithi204 bash[20295]: cluster 2024-04-24T16:22:59.007391+0000 mgr.smithi178.tjvcci (mgr.14197) 422 : cluster [DBG] pgmap v369: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:22:59.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:22:59 smithi204 bash[20295]: cluster 2024-04-24T16:22:59.007391+0000 mgr.smithi178.tjvcci (mgr.14197) 422 : cluster [DBG] pgmap v369: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:02.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:02 smithi178 bash[18765]: cluster 2024-04-24T16:23:01.008577+0000 mgr.smithi178.tjvcci (mgr.14197) 423 : cluster [DBG] pgmap v370: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:02.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:02 smithi178 bash[18765]: cluster 2024-04-24T16:23:01.008577+0000 mgr.smithi178.tjvcci (mgr.14197) 423 : cluster [DBG] pgmap v370: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:02.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:02 smithi204 bash[20295]: cluster 2024-04-24T16:23:01.008577+0000 mgr.smithi178.tjvcci (mgr.14197) 423 : cluster [DBG] pgmap v370: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:02.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:02 smithi204 bash[20295]: cluster 2024-04-24T16:23:01.008577+0000 mgr.smithi178.tjvcci (mgr.14197) 423 : cluster [DBG] pgmap v370: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:02.529 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:23:03.716 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:23:04.318 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:04 smithi178 bash[18765]: cluster 2024-04-24T16:23:03.009562+0000 mgr.smithi178.tjvcci (mgr.14197) 424 : cluster [DBG] pgmap v371: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:04.318 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:04 smithi178 bash[18765]: cluster 2024-04-24T16:23:03.009562+0000 mgr.smithi178.tjvcci (mgr.14197) 424 : cluster [DBG] pgmap v371: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:04.318 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:04 smithi178 bash[18765]: audit 2024-04-24T16:23:03.723503+0000 mon.smithi178 (mon.0) 540 : audit [DBG] from='client.? 172.21.15.178:0/3919982074' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:04.318 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:04 smithi178 bash[18765]: audit 2024-04-24T16:23:03.723503+0000 mon.smithi178 (mon.0) 540 : audit [DBG] from='client.? 172.21.15.178:0/3919982074' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:04.319 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:23:04.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:04 smithi204 bash[20295]: cluster 2024-04-24T16:23:03.009562+0000 mgr.smithi178.tjvcci (mgr.14197) 424 : cluster [DBG] pgmap v371: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:04.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:04 smithi204 bash[20295]: cluster 2024-04-24T16:23:03.009562+0000 mgr.smithi178.tjvcci (mgr.14197) 424 : cluster [DBG] pgmap v371: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:04.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:04 smithi204 bash[20295]: audit 2024-04-24T16:23:03.723503+0000 mon.smithi178 (mon.0) 540 : audit [DBG] from='client.? 172.21.15.178:0/3919982074' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:04.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:04 smithi204 bash[20295]: audit 2024-04-24T16:23:03.723503+0000 mon.smithi178 (mon.0) 540 : audit [DBG] from='client.? 172.21.15.178:0/3919982074' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:05.320 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:23:06.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:06 smithi178 bash[18765]: cluster 2024-04-24T16:23:05.010646+0000 mgr.smithi178.tjvcci (mgr.14197) 425 : cluster [DBG] pgmap v372: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:06.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:06 smithi178 bash[18765]: cluster 2024-04-24T16:23:05.010646+0000 mgr.smithi178.tjvcci (mgr.14197) 425 : cluster [DBG] pgmap v372: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:06.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:06 smithi204 bash[20295]: cluster 2024-04-24T16:23:05.010646+0000 mgr.smithi178.tjvcci (mgr.14197) 425 : cluster [DBG] pgmap v372: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:06.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:06 smithi204 bash[20295]: cluster 2024-04-24T16:23:05.010646+0000 mgr.smithi178.tjvcci (mgr.14197) 425 : cluster [DBG] pgmap v372: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:08.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:08 smithi178 bash[18765]: cluster 2024-04-24T16:23:07.011678+0000 mgr.smithi178.tjvcci (mgr.14197) 426 : cluster [DBG] pgmap v373: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:08.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:08 smithi178 bash[18765]: cluster 2024-04-24T16:23:07.011678+0000 mgr.smithi178.tjvcci (mgr.14197) 426 : cluster [DBG] pgmap v373: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:08.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:08 smithi204 bash[20295]: cluster 2024-04-24T16:23:07.011678+0000 mgr.smithi178.tjvcci (mgr.14197) 426 : cluster [DBG] pgmap v373: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:08.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:08 smithi204 bash[20295]: cluster 2024-04-24T16:23:07.011678+0000 mgr.smithi178.tjvcci (mgr.14197) 426 : cluster [DBG] pgmap v373: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:10.091 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:23:10.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:10 smithi178 bash[18765]: cluster 2024-04-24T16:23:09.012669+0000 mgr.smithi178.tjvcci (mgr.14197) 427 : cluster [DBG] pgmap v374: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:10.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:10 smithi178 bash[18765]: cluster 2024-04-24T16:23:09.012669+0000 mgr.smithi178.tjvcci (mgr.14197) 427 : cluster [DBG] pgmap v374: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:10.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:10 smithi204 bash[20295]: cluster 2024-04-24T16:23:09.012669+0000 mgr.smithi178.tjvcci (mgr.14197) 427 : cluster [DBG] pgmap v374: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:10.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:10 smithi204 bash[20295]: cluster 2024-04-24T16:23:09.012669+0000 mgr.smithi178.tjvcci (mgr.14197) 427 : cluster [DBG] pgmap v374: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:11.352 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:23:11.974 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:23:12.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:12 smithi178 bash[18765]: cluster 2024-04-24T16:23:11.013276+0000 mgr.smithi178.tjvcci (mgr.14197) 428 : cluster [DBG] pgmap v375: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:12.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:12 smithi178 bash[18765]: cluster 2024-04-24T16:23:11.013276+0000 mgr.smithi178.tjvcci (mgr.14197) 428 : cluster [DBG] pgmap v375: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:12.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:12 smithi178 bash[18765]: audit 2024-04-24T16:23:11.360021+0000 mon.smithi178 (mon.0) 541 : audit [DBG] from='client.? 172.21.15.178:0/1070476372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:12.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:12 smithi178 bash[18765]: audit 2024-04-24T16:23:11.360021+0000 mon.smithi178 (mon.0) 541 : audit [DBG] from='client.? 172.21.15.178:0/1070476372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:12.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:12 smithi204 bash[20295]: cluster 2024-04-24T16:23:11.013276+0000 mgr.smithi178.tjvcci (mgr.14197) 428 : cluster [DBG] pgmap v375: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:12.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:12 smithi204 bash[20295]: cluster 2024-04-24T16:23:11.013276+0000 mgr.smithi178.tjvcci (mgr.14197) 428 : cluster [DBG] pgmap v375: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:12.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:12 smithi204 bash[20295]: audit 2024-04-24T16:23:11.360021+0000 mon.smithi178 (mon.0) 541 : audit [DBG] from='client.? 172.21.15.178:0/1070476372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:12.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:12 smithi204 bash[20295]: audit 2024-04-24T16:23:11.360021+0000 mon.smithi178 (mon.0) 541 : audit [DBG] from='client.? 172.21.15.178:0/1070476372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:12.976 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:23:13.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:13 smithi178 bash[18765]: audit 2024-04-24T16:23:12.397738+0000 mon.smithi178 (mon.0) 542 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:13.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:13 smithi178 bash[18765]: audit 2024-04-24T16:23:12.397738+0000 mon.smithi178 (mon.0) 542 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:13.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:13 smithi204 bash[20295]: audit 2024-04-24T16:23:12.397738+0000 mon.smithi178 (mon.0) 542 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:13.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:13 smithi204 bash[20295]: audit 2024-04-24T16:23:12.397738+0000 mon.smithi178 (mon.0) 542 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:14.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:14 smithi204 bash[20295]: cluster 2024-04-24T16:23:13.014005+0000 mgr.smithi178.tjvcci (mgr.14197) 429 : cluster [DBG] pgmap v376: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:14.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:14 smithi204 bash[20295]: cluster 2024-04-24T16:23:13.014005+0000 mgr.smithi178.tjvcci (mgr.14197) 429 : cluster [DBG] pgmap v376: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:14.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:14 smithi178 bash[18765]: cluster 2024-04-24T16:23:13.014005+0000 mgr.smithi178.tjvcci (mgr.14197) 429 : cluster [DBG] pgmap v376: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:14.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:14 smithi178 bash[18765]: cluster 2024-04-24T16:23:13.014005+0000 mgr.smithi178.tjvcci (mgr.14197) 429 : cluster [DBG] pgmap v376: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:16.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:16 smithi204 bash[20295]: cluster 2024-04-24T16:23:15.014975+0000 mgr.smithi178.tjvcci (mgr.14197) 430 : cluster [DBG] pgmap v377: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:16.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:16 smithi204 bash[20295]: cluster 2024-04-24T16:23:15.014975+0000 mgr.smithi178.tjvcci (mgr.14197) 430 : cluster [DBG] pgmap v377: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:16.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:16 smithi178 bash[18765]: cluster 2024-04-24T16:23:15.014975+0000 mgr.smithi178.tjvcci (mgr.14197) 430 : cluster [DBG] pgmap v377: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:16.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:16 smithi178 bash[18765]: cluster 2024-04-24T16:23:15.014975+0000 mgr.smithi178.tjvcci (mgr.14197) 430 : cluster [DBG] pgmap v377: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:17.743 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:23:18.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:18 smithi204 bash[20295]: cluster 2024-04-24T16:23:17.015917+0000 mgr.smithi178.tjvcci (mgr.14197) 431 : cluster [DBG] pgmap v378: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:18.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:18 smithi204 bash[20295]: cluster 2024-04-24T16:23:17.015917+0000 mgr.smithi178.tjvcci (mgr.14197) 431 : cluster [DBG] pgmap v378: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:18.495 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:18 smithi178 bash[18765]: cluster 2024-04-24T16:23:17.015917+0000 mgr.smithi178.tjvcci (mgr.14197) 431 : cluster [DBG] pgmap v378: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:18.495 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:18 smithi178 bash[18765]: cluster 2024-04-24T16:23:17.015917+0000 mgr.smithi178.tjvcci (mgr.14197) 431 : cluster [DBG] pgmap v378: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:18.894 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:23:19.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:19 smithi178 bash[18765]: audit 2024-04-24T16:23:18.902262+0000 mon.smithi178 (mon.0) 543 : audit [DBG] from='client.? 172.21.15.178:0/642904092' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:19.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:19 smithi178 bash[18765]: audit 2024-04-24T16:23:18.902262+0000 mon.smithi178 (mon.0) 543 : audit [DBG] from='client.? 172.21.15.178:0/642904092' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:19.378 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:19 smithi204 bash[20295]: audit 2024-04-24T16:23:18.902262+0000 mon.smithi178 (mon.0) 543 : audit [DBG] from='client.? 172.21.15.178:0/642904092' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:19.378 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:19 smithi204 bash[20295]: audit 2024-04-24T16:23:18.902262+0000 mon.smithi178 (mon.0) 543 : audit [DBG] from='client.? 172.21.15.178:0/642904092' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:19.548 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:23:20.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:20 smithi204 bash[20295]: cluster 2024-04-24T16:23:19.016885+0000 mgr.smithi178.tjvcci (mgr.14197) 432 : cluster [DBG] pgmap v379: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:20.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:20 smithi204 bash[20295]: cluster 2024-04-24T16:23:19.016885+0000 mgr.smithi178.tjvcci (mgr.14197) 432 : cluster [DBG] pgmap v379: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:20.549 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:23:20.560 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:20 smithi178 bash[18765]: cluster 2024-04-24T16:23:19.016885+0000 mgr.smithi178.tjvcci (mgr.14197) 432 : cluster [DBG] pgmap v379: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:20.560 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:20 smithi178 bash[18765]: cluster 2024-04-24T16:23:19.016885+0000 mgr.smithi178.tjvcci (mgr.14197) 432 : cluster [DBG] pgmap v379: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:22.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:22 smithi204 bash[20295]: cluster 2024-04-24T16:23:21.017893+0000 mgr.smithi178.tjvcci (mgr.14197) 433 : cluster [DBG] pgmap v380: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:22.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:22 smithi204 bash[20295]: cluster 2024-04-24T16:23:21.017893+0000 mgr.smithi178.tjvcci (mgr.14197) 433 : cluster [DBG] pgmap v380: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:22.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:22 smithi178 bash[18765]: cluster 2024-04-24T16:23:21.017893+0000 mgr.smithi178.tjvcci (mgr.14197) 433 : cluster [DBG] pgmap v380: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:22.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:22 smithi178 bash[18765]: cluster 2024-04-24T16:23:21.017893+0000 mgr.smithi178.tjvcci (mgr.14197) 433 : cluster [DBG] pgmap v380: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:24.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:24 smithi204 bash[20295]: cluster 2024-04-24T16:23:23.018898+0000 mgr.smithi178.tjvcci (mgr.14197) 434 : cluster [DBG] pgmap v381: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:24.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:24 smithi204 bash[20295]: cluster 2024-04-24T16:23:23.018898+0000 mgr.smithi178.tjvcci (mgr.14197) 434 : cluster [DBG] pgmap v381: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:24.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:24 smithi178 bash[18765]: cluster 2024-04-24T16:23:23.018898+0000 mgr.smithi178.tjvcci (mgr.14197) 434 : cluster [DBG] pgmap v381: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:24.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:24 smithi178 bash[18765]: cluster 2024-04-24T16:23:23.018898+0000 mgr.smithi178.tjvcci (mgr.14197) 434 : cluster [DBG] pgmap v381: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:25.315 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:23:26.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:26 smithi204 bash[20295]: cluster 2024-04-24T16:23:25.019887+0000 mgr.smithi178.tjvcci (mgr.14197) 435 : cluster [DBG] pgmap v382: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:26.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:26 smithi204 bash[20295]: cluster 2024-04-24T16:23:25.019887+0000 mgr.smithi178.tjvcci (mgr.14197) 435 : cluster [DBG] pgmap v382: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:26.510 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:23:26.524 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:26 smithi178 bash[18765]: cluster 2024-04-24T16:23:25.019887+0000 mgr.smithi178.tjvcci (mgr.14197) 435 : cluster [DBG] pgmap v382: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:26.524 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:26 smithi178 bash[18765]: cluster 2024-04-24T16:23:25.019887+0000 mgr.smithi178.tjvcci (mgr.14197) 435 : cluster [DBG] pgmap v382: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:27.140 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:23:27.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:27 smithi204 bash[20295]: audit 2024-04-24T16:23:26.518447+0000 mon.smithi178 (mon.0) 544 : audit [DBG] from='client.? 172.21.15.178:0/4184533193' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:27.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:27 smithi204 bash[20295]: audit 2024-04-24T16:23:26.518447+0000 mon.smithi178 (mon.0) 544 : audit [DBG] from='client.? 172.21.15.178:0/4184533193' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:27.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:27 smithi178 bash[18765]: audit 2024-04-24T16:23:26.518447+0000 mon.smithi178 (mon.0) 544 : audit [DBG] from='client.? 172.21.15.178:0/4184533193' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:27.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:27 smithi178 bash[18765]: audit 2024-04-24T16:23:26.518447+0000 mon.smithi178 (mon.0) 544 : audit [DBG] from='client.? 172.21.15.178:0/4184533193' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:28.141 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:23:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:28 smithi204 bash[20295]: cluster 2024-04-24T16:23:27.020888+0000 mgr.smithi178.tjvcci (mgr.14197) 436 : cluster [DBG] pgmap v383: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:28 smithi204 bash[20295]: cluster 2024-04-24T16:23:27.020888+0000 mgr.smithi178.tjvcci (mgr.14197) 436 : cluster [DBG] pgmap v383: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:28 smithi204 bash[20295]: audit 2024-04-24T16:23:27.398124+0000 mon.smithi178 (mon.0) 545 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:28 smithi204 bash[20295]: audit 2024-04-24T16:23:27.398124+0000 mon.smithi178 (mon.0) 545 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:28.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:28 smithi178 bash[18765]: cluster 2024-04-24T16:23:27.020888+0000 mgr.smithi178.tjvcci (mgr.14197) 436 : cluster [DBG] pgmap v383: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:28.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:28 smithi178 bash[18765]: cluster 2024-04-24T16:23:27.020888+0000 mgr.smithi178.tjvcci (mgr.14197) 436 : cluster [DBG] pgmap v383: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:28.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:28 smithi178 bash[18765]: audit 2024-04-24T16:23:27.398124+0000 mon.smithi178 (mon.0) 545 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:28.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:28 smithi178 bash[18765]: audit 2024-04-24T16:23:27.398124+0000 mon.smithi178 (mon.0) 545 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:29.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:29 smithi178 bash[18765]: cluster 2024-04-24T16:23:29.021861+0000 mgr.smithi178.tjvcci (mgr.14197) 437 : cluster [DBG] pgmap v384: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:29.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:29 smithi178 bash[18765]: cluster 2024-04-24T16:23:29.021861+0000 mgr.smithi178.tjvcci (mgr.14197) 437 : cluster [DBG] pgmap v384: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:29.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:29 smithi204 bash[20295]: cluster 2024-04-24T16:23:29.021861+0000 mgr.smithi178.tjvcci (mgr.14197) 437 : cluster [DBG] pgmap v384: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:29.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:29 smithi204 bash[20295]: cluster 2024-04-24T16:23:29.021861+0000 mgr.smithi178.tjvcci (mgr.14197) 437 : cluster [DBG] pgmap v384: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:32.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:32 smithi178 bash[18765]: cluster 2024-04-24T16:23:31.022799+0000 mgr.smithi178.tjvcci (mgr.14197) 438 : cluster [DBG] pgmap v385: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:32 smithi178 bash[18765]: cluster 2024-04-24T16:23:31.022799+0000 mgr.smithi178.tjvcci (mgr.14197) 438 : cluster [DBG] pgmap v385: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:32 smithi204 bash[20295]: cluster 2024-04-24T16:23:31.022799+0000 mgr.smithi178.tjvcci (mgr.14197) 438 : cluster [DBG] pgmap v385: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:32 smithi204 bash[20295]: cluster 2024-04-24T16:23:31.022799+0000 mgr.smithi178.tjvcci (mgr.14197) 438 : cluster [DBG] pgmap v385: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:32.918 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:23:34.123 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:23:34.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:34 smithi178 bash[18765]: cluster 2024-04-24T16:23:33.023821+0000 mgr.smithi178.tjvcci (mgr.14197) 439 : cluster [DBG] pgmap v386: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:34.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:34 smithi178 bash[18765]: cluster 2024-04-24T16:23:33.023821+0000 mgr.smithi178.tjvcci (mgr.14197) 439 : cluster [DBG] pgmap v386: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:34.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:34 smithi204 bash[20295]: cluster 2024-04-24T16:23:33.023821+0000 mgr.smithi178.tjvcci (mgr.14197) 439 : cluster [DBG] pgmap v386: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:34.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:34 smithi204 bash[20295]: cluster 2024-04-24T16:23:33.023821+0000 mgr.smithi178.tjvcci (mgr.14197) 439 : cluster [DBG] pgmap v386: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:34.684 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:23:35.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:35 smithi204 bash[20295]: audit 2024-04-24T16:23:34.130897+0000 mon.smithi178 (mon.0) 546 : audit [DBG] from='client.? 172.21.15.178:0/2700242649' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:35.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:35 smithi204 bash[20295]: audit 2024-04-24T16:23:34.130897+0000 mon.smithi178 (mon.0) 546 : audit [DBG] from='client.? 172.21.15.178:0/2700242649' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:35.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:35 smithi178 bash[18765]: audit 2024-04-24T16:23:34.130897+0000 mon.smithi178 (mon.0) 546 : audit [DBG] from='client.? 172.21.15.178:0/2700242649' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:35.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:35 smithi178 bash[18765]: audit 2024-04-24T16:23:34.130897+0000 mon.smithi178 (mon.0) 546 : audit [DBG] from='client.? 172.21.15.178:0/2700242649' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:35.685 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:23:36.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:36 smithi204 bash[20295]: cluster 2024-04-24T16:23:35.024946+0000 mgr.smithi178.tjvcci (mgr.14197) 440 : cluster [DBG] pgmap v387: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:36.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:36 smithi204 bash[20295]: cluster 2024-04-24T16:23:35.024946+0000 mgr.smithi178.tjvcci (mgr.14197) 440 : cluster [DBG] pgmap v387: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:36.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:36 smithi178 bash[18765]: cluster 2024-04-24T16:23:35.024946+0000 mgr.smithi178.tjvcci (mgr.14197) 440 : cluster [DBG] pgmap v387: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:36.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:36 smithi178 bash[18765]: cluster 2024-04-24T16:23:35.024946+0000 mgr.smithi178.tjvcci (mgr.14197) 440 : cluster [DBG] pgmap v387: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:38.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:38 smithi204 bash[20295]: cluster 2024-04-24T16:23:37.025951+0000 mgr.smithi178.tjvcci (mgr.14197) 441 : cluster [DBG] pgmap v388: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:38.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:38 smithi204 bash[20295]: cluster 2024-04-24T16:23:37.025951+0000 mgr.smithi178.tjvcci (mgr.14197) 441 : cluster [DBG] pgmap v388: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:38.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:38 smithi178 bash[18765]: cluster 2024-04-24T16:23:37.025951+0000 mgr.smithi178.tjvcci (mgr.14197) 441 : cluster [DBG] pgmap v388: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:38.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:38 smithi178 bash[18765]: cluster 2024-04-24T16:23:37.025951+0000 mgr.smithi178.tjvcci (mgr.14197) 441 : cluster [DBG] pgmap v388: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:40.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:40 smithi204 bash[20295]: cluster 2024-04-24T16:23:39.026928+0000 mgr.smithi178.tjvcci (mgr.14197) 442 : cluster [DBG] pgmap v389: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:40.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:40 smithi204 bash[20295]: cluster 2024-04-24T16:23:39.026928+0000 mgr.smithi178.tjvcci (mgr.14197) 442 : cluster [DBG] pgmap v389: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:40.452 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:23:40.474 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:40 smithi178 bash[18765]: cluster 2024-04-24T16:23:39.026928+0000 mgr.smithi178.tjvcci (mgr.14197) 442 : cluster [DBG] pgmap v389: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:40.474 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:40 smithi178 bash[18765]: cluster 2024-04-24T16:23:39.026928+0000 mgr.smithi178.tjvcci (mgr.14197) 442 : cluster [DBG] pgmap v389: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:41.669 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:23:42.247 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:23:42.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:42 smithi204 bash[20295]: cluster 2024-04-24T16:23:41.027940+0000 mgr.smithi178.tjvcci (mgr.14197) 443 : cluster [DBG] pgmap v390: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:42.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:42 smithi204 bash[20295]: cluster 2024-04-24T16:23:41.027940+0000 mgr.smithi178.tjvcci (mgr.14197) 443 : cluster [DBG] pgmap v390: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:42.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:42 smithi204 bash[20295]: audit 2024-04-24T16:23:41.677416+0000 mon.smithi178 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.178:0/1389222916' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:42.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:42 smithi204 bash[20295]: audit 2024-04-24T16:23:41.677416+0000 mon.smithi178 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.178:0/1389222916' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:42.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:42 smithi178 bash[18765]: cluster 2024-04-24T16:23:41.027940+0000 mgr.smithi178.tjvcci (mgr.14197) 443 : cluster [DBG] pgmap v390: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:42.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:42 smithi178 bash[18765]: cluster 2024-04-24T16:23:41.027940+0000 mgr.smithi178.tjvcci (mgr.14197) 443 : cluster [DBG] pgmap v390: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:42.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:42 smithi178 bash[18765]: audit 2024-04-24T16:23:41.677416+0000 mon.smithi178 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.178:0/1389222916' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:42.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:42 smithi178 bash[18765]: audit 2024-04-24T16:23:41.677416+0000 mon.smithi178 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.178:0/1389222916' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:43.249 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:23:43.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:43 smithi204 bash[20295]: audit 2024-04-24T16:23:42.398560+0000 mon.smithi178 (mon.0) 548 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:43.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:43 smithi204 bash[20295]: audit 2024-04-24T16:23:42.398560+0000 mon.smithi178 (mon.0) 548 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:43.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:43 smithi178 bash[18765]: audit 2024-04-24T16:23:42.398560+0000 mon.smithi178 (mon.0) 548 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:43.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:43 smithi178 bash[18765]: audit 2024-04-24T16:23:42.398560+0000 mon.smithi178 (mon.0) 548 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:44.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:44 smithi204 bash[20295]: cluster 2024-04-24T16:23:43.028884+0000 mgr.smithi178.tjvcci (mgr.14197) 444 : cluster [DBG] pgmap v391: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:44.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:44 smithi204 bash[20295]: cluster 2024-04-24T16:23:43.028884+0000 mgr.smithi178.tjvcci (mgr.14197) 444 : cluster [DBG] pgmap v391: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:44.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:44 smithi178 bash[18765]: cluster 2024-04-24T16:23:43.028884+0000 mgr.smithi178.tjvcci (mgr.14197) 444 : cluster [DBG] pgmap v391: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:44.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:44 smithi178 bash[18765]: cluster 2024-04-24T16:23:43.028884+0000 mgr.smithi178.tjvcci (mgr.14197) 444 : cluster [DBG] pgmap v391: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:46.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:46 smithi204 bash[20295]: cluster 2024-04-24T16:23:45.029910+0000 mgr.smithi178.tjvcci (mgr.14197) 445 : cluster [DBG] pgmap v392: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:46.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:46 smithi204 bash[20295]: cluster 2024-04-24T16:23:45.029910+0000 mgr.smithi178.tjvcci (mgr.14197) 445 : cluster [DBG] pgmap v392: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:46.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:46 smithi178 bash[18765]: cluster 2024-04-24T16:23:45.029910+0000 mgr.smithi178.tjvcci (mgr.14197) 445 : cluster [DBG] pgmap v392: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:46.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:46 smithi178 bash[18765]: cluster 2024-04-24T16:23:45.029910+0000 mgr.smithi178.tjvcci (mgr.14197) 445 : cluster [DBG] pgmap v392: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:48.021 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:23:48.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:48 smithi178 bash[18765]: cluster 2024-04-24T16:23:47.030846+0000 mgr.smithi178.tjvcci (mgr.14197) 446 : cluster [DBG] pgmap v393: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:48.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:48 smithi178 bash[18765]: cluster 2024-04-24T16:23:47.030846+0000 mgr.smithi178.tjvcci (mgr.14197) 446 : cluster [DBG] pgmap v393: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:48.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:48 smithi204 bash[20295]: cluster 2024-04-24T16:23:47.030846+0000 mgr.smithi178.tjvcci (mgr.14197) 446 : cluster [DBG] pgmap v393: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:48.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:48 smithi204 bash[20295]: cluster 2024-04-24T16:23:47.030846+0000 mgr.smithi178.tjvcci (mgr.14197) 446 : cluster [DBG] pgmap v393: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:49.257 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:23:49.860 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:23:50.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:50 smithi204 bash[20295]: cluster 2024-04-24T16:23:49.031441+0000 mgr.smithi178.tjvcci (mgr.14197) 447 : cluster [DBG] pgmap v394: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:50.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:50 smithi204 bash[20295]: cluster 2024-04-24T16:23:49.031441+0000 mgr.smithi178.tjvcci (mgr.14197) 447 : cluster [DBG] pgmap v394: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:50.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:50 smithi204 bash[20295]: audit 2024-04-24T16:23:49.264701+0000 mon.smithi178 (mon.0) 549 : audit [DBG] from='client.? 172.21.15.178:0/1514736478' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:50.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:50 smithi204 bash[20295]: audit 2024-04-24T16:23:49.264701+0000 mon.smithi178 (mon.0) 549 : audit [DBG] from='client.? 172.21.15.178:0/1514736478' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:50.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:50 smithi178 bash[18765]: cluster 2024-04-24T16:23:49.031441+0000 mgr.smithi178.tjvcci (mgr.14197) 447 : cluster [DBG] pgmap v394: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:50.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:50 smithi178 bash[18765]: cluster 2024-04-24T16:23:49.031441+0000 mgr.smithi178.tjvcci (mgr.14197) 447 : cluster [DBG] pgmap v394: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:50.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:50 smithi178 bash[18765]: audit 2024-04-24T16:23:49.264701+0000 mon.smithi178 (mon.0) 549 : audit [DBG] from='client.? 172.21.15.178:0/1514736478' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:50.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:50 smithi178 bash[18765]: audit 2024-04-24T16:23:49.264701+0000 mon.smithi178 (mon.0) 549 : audit [DBG] from='client.? 172.21.15.178:0/1514736478' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:50.861 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:23:51.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:51 smithi178 bash[18765]: cluster 2024-04-24T16:23:51.032365+0000 mgr.smithi178.tjvcci (mgr.14197) 448 : cluster [DBG] pgmap v395: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:51.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:51 smithi178 bash[18765]: cluster 2024-04-24T16:23:51.032365+0000 mgr.smithi178.tjvcci (mgr.14197) 448 : cluster [DBG] pgmap v395: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:51.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:51 smithi204 bash[20295]: cluster 2024-04-24T16:23:51.032365+0000 mgr.smithi178.tjvcci (mgr.14197) 448 : cluster [DBG] pgmap v395: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:51.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:51 smithi204 bash[20295]: cluster 2024-04-24T16:23:51.032365+0000 mgr.smithi178.tjvcci (mgr.14197) 448 : cluster [DBG] pgmap v395: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:54.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:54 smithi178 bash[18765]: cluster 2024-04-24T16:23:53.033386+0000 mgr.smithi178.tjvcci (mgr.14197) 449 : cluster [DBG] pgmap v396: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:54.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:54 smithi178 bash[18765]: cluster 2024-04-24T16:23:53.033386+0000 mgr.smithi178.tjvcci (mgr.14197) 449 : cluster [DBG] pgmap v396: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:54.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:54 smithi204 bash[20295]: cluster 2024-04-24T16:23:53.033386+0000 mgr.smithi178.tjvcci (mgr.14197) 449 : cluster [DBG] pgmap v396: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:54.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:54 smithi204 bash[20295]: cluster 2024-04-24T16:23:53.033386+0000 mgr.smithi178.tjvcci (mgr.14197) 449 : cluster [DBG] pgmap v396: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:55.625 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:23:56.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:56 smithi204 bash[20295]: cluster 2024-04-24T16:23:55.034412+0000 mgr.smithi178.tjvcci (mgr.14197) 450 : cluster [DBG] pgmap v397: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:56.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:56 smithi204 bash[20295]: cluster 2024-04-24T16:23:55.034412+0000 mgr.smithi178.tjvcci (mgr.14197) 450 : cluster [DBG] pgmap v397: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:56.430 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:56 smithi178 bash[18765]: cluster 2024-04-24T16:23:55.034412+0000 mgr.smithi178.tjvcci (mgr.14197) 450 : cluster [DBG] pgmap v397: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:56.431 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:56 smithi178 bash[18765]: cluster 2024-04-24T16:23:55.034412+0000 mgr.smithi178.tjvcci (mgr.14197) 450 : cluster [DBG] pgmap v397: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:56.824 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:23:57.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:57 smithi204 bash[20295]: audit 2024-04-24T16:23:56.832192+0000 mon.smithi178 (mon.0) 550 : audit [DBG] from='client.? 172.21.15.178:0/1243579352' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:57.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:57 smithi204 bash[20295]: audit 2024-04-24T16:23:56.832192+0000 mon.smithi178 (mon.0) 550 : audit [DBG] from='client.? 172.21.15.178:0/1243579352' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:57.442 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:57 smithi178 bash[18765]: audit 2024-04-24T16:23:56.832192+0000 mon.smithi178 (mon.0) 550 : audit [DBG] from='client.? 172.21.15.178:0/1243579352' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:57.442 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:57 smithi178 bash[18765]: audit 2024-04-24T16:23:56.832192+0000 mon.smithi178 (mon.0) 550 : audit [DBG] from='client.? 172.21.15.178:0/1243579352' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:23:57.443 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:23:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:58 smithi204 bash[20295]: cluster 2024-04-24T16:23:57.035383+0000 mgr.smithi178.tjvcci (mgr.14197) 451 : cluster [DBG] pgmap v398: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:58 smithi204 bash[20295]: cluster 2024-04-24T16:23:57.035383+0000 mgr.smithi178.tjvcci (mgr.14197) 451 : cluster [DBG] pgmap v398: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:58 smithi204 bash[20295]: audit 2024-04-24T16:23:57.121174+0000 mon.smithi178 (mon.0) 551 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:23:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:58 smithi204 bash[20295]: audit 2024-04-24T16:23:57.121174+0000 mon.smithi178 (mon.0) 551 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:23:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:58 smithi204 bash[20295]: audit 2024-04-24T16:23:57.398875+0000 mon.smithi178 (mon.0) 552 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:23:58 smithi204 bash[20295]: audit 2024-04-24T16:23:57.398875+0000 mon.smithi178 (mon.0) 552 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:58.444 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:23:58.455 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:58 smithi178 bash[18765]: cluster 2024-04-24T16:23:57.035383+0000 mgr.smithi178.tjvcci (mgr.14197) 451 : cluster [DBG] pgmap v398: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:58.455 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:58 smithi178 bash[18765]: cluster 2024-04-24T16:23:57.035383+0000 mgr.smithi178.tjvcci (mgr.14197) 451 : cluster [DBG] pgmap v398: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:23:58.455 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:58 smithi178 bash[18765]: audit 2024-04-24T16:23:57.121174+0000 mon.smithi178 (mon.0) 551 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:23:58.455 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:58 smithi178 bash[18765]: audit 2024-04-24T16:23:57.121174+0000 mon.smithi178 (mon.0) 551 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:23:58.455 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:58 smithi178 bash[18765]: audit 2024-04-24T16:23:57.398875+0000 mon.smithi178 (mon.0) 552 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:23:58.455 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:23:58 smithi178 bash[18765]: audit 2024-04-24T16:23:57.398875+0000 mon.smithi178 (mon.0) 552 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:00.363 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:00 smithi178 bash[18765]: cluster 2024-04-24T16:23:59.036420+0000 mgr.smithi178.tjvcci (mgr.14197) 452 : cluster [DBG] pgmap v399: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:00.363 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:00 smithi178 bash[18765]: cluster 2024-04-24T16:23:59.036420+0000 mgr.smithi178.tjvcci (mgr.14197) 452 : cluster [DBG] pgmap v399: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:00.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:00 smithi204 bash[20295]: cluster 2024-04-24T16:23:59.036420+0000 mgr.smithi178.tjvcci (mgr.14197) 452 : cluster [DBG] pgmap v399: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:00.382 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:00 smithi204 bash[20295]: cluster 2024-04-24T16:23:59.036420+0000 mgr.smithi178.tjvcci (mgr.14197) 452 : cluster [DBG] pgmap v399: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:02.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:02 smithi204 bash[20295]: cluster 2024-04-24T16:24:01.037355+0000 mgr.smithi178.tjvcci (mgr.14197) 453 : cluster [DBG] pgmap v400: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:02.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:02 smithi204 bash[20295]: cluster 2024-04-24T16:24:01.037355+0000 mgr.smithi178.tjvcci (mgr.14197) 453 : cluster [DBG] pgmap v400: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:02.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:02 smithi178 bash[18765]: cluster 2024-04-24T16:24:01.037355+0000 mgr.smithi178.tjvcci (mgr.14197) 453 : cluster [DBG] pgmap v400: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:02.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:02 smithi178 bash[18765]: cluster 2024-04-24T16:24:01.037355+0000 mgr.smithi178.tjvcci (mgr.14197) 453 : cluster [DBG] pgmap v400: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:02.835 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:24:04.324 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:24:04.378 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:04 smithi204 bash[20295]: cluster 2024-04-24T16:24:03.038314+0000 mgr.smithi178.tjvcci (mgr.14197) 454 : cluster [DBG] pgmap v401: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:04.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:04 smithi204 bash[20295]: cluster 2024-04-24T16:24:03.038314+0000 mgr.smithi178.tjvcci (mgr.14197) 454 : cluster [DBG] pgmap v401: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:04.613 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:04 smithi178 bash[18765]: cluster 2024-04-24T16:24:03.038314+0000 mgr.smithi178.tjvcci (mgr.14197) 454 : cluster [DBG] pgmap v401: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:04.614 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:04 smithi178 bash[18765]: cluster 2024-04-24T16:24:03.038314+0000 mgr.smithi178.tjvcci (mgr.14197) 454 : cluster [DBG] pgmap v401: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:05.163 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:24:05.378 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:05 smithi204 bash[20295]: audit 2024-04-24T16:24:04.332302+0000 mon.smithi178 (mon.0) 553 : audit [DBG] from='client.? 172.21.15.178:0/1443253669' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:05.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:05 smithi204 bash[20295]: audit 2024-04-24T16:24:04.332302+0000 mon.smithi178 (mon.0) 553 : audit [DBG] from='client.? 172.21.15.178:0/1443253669' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:05.381 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:05 smithi178 bash[18765]: audit 2024-04-24T16:24:04.332302+0000 mon.smithi178 (mon.0) 553 : audit [DBG] from='client.? 172.21.15.178:0/1443253669' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:05.382 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:05 smithi178 bash[18765]: audit 2024-04-24T16:24:04.332302+0000 mon.smithi178 (mon.0) 553 : audit [DBG] from='client.? 172.21.15.178:0/1443253669' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:06.165 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:24:06.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:06 smithi204 bash[20295]: cluster 2024-04-24T16:24:05.039324+0000 mgr.smithi178.tjvcci (mgr.14197) 455 : cluster [DBG] pgmap v402: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:06.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:06 smithi204 bash[20295]: cluster 2024-04-24T16:24:05.039324+0000 mgr.smithi178.tjvcci (mgr.14197) 455 : cluster [DBG] pgmap v402: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:06.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:06 smithi204 bash[20295]: audit 2024-04-24T16:24:05.179021+0000 mon.smithi178 (mon.0) 554 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:24:06.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:06 smithi204 bash[20295]: audit 2024-04-24T16:24:05.179021+0000 mon.smithi178 (mon.0) 554 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:24:06.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:06 smithi204 bash[20295]: audit 2024-04-24T16:24:05.180233+0000 mon.smithi178 (mon.0) 555 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:24:06.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:06 smithi204 bash[20295]: audit 2024-04-24T16:24:05.180233+0000 mon.smithi178 (mon.0) 555 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:24:06.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:06 smithi204 bash[20295]: audit 2024-04-24T16:24:05.186761+0000 mon.smithi178 (mon.0) 556 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:24:06.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:06 smithi204 bash[20295]: audit 2024-04-24T16:24:05.186761+0000 mon.smithi178 (mon.0) 556 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:24:06.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:06 smithi204 bash[20295]: audit 2024-04-24T16:24:05.190995+0000 mon.smithi178 (mon.0) 557 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:24:06.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:06 smithi204 bash[20295]: audit 2024-04-24T16:24:05.190995+0000 mon.smithi178 (mon.0) 557 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:24:06.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:06 smithi178 bash[18765]: cluster 2024-04-24T16:24:05.039324+0000 mgr.smithi178.tjvcci (mgr.14197) 455 : cluster [DBG] pgmap v402: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:06.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:06 smithi178 bash[18765]: cluster 2024-04-24T16:24:05.039324+0000 mgr.smithi178.tjvcci (mgr.14197) 455 : cluster [DBG] pgmap v402: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:06.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:06 smithi178 bash[18765]: audit 2024-04-24T16:24:05.179021+0000 mon.smithi178 (mon.0) 554 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:24:06.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:06 smithi178 bash[18765]: audit 2024-04-24T16:24:05.179021+0000 mon.smithi178 (mon.0) 554 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:24:06.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:06 smithi178 bash[18765]: audit 2024-04-24T16:24:05.180233+0000 mon.smithi178 (mon.0) 555 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:24:06.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:06 smithi178 bash[18765]: audit 2024-04-24T16:24:05.180233+0000 mon.smithi178 (mon.0) 555 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:24:06.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:06 smithi178 bash[18765]: audit 2024-04-24T16:24:05.186761+0000 mon.smithi178 (mon.0) 556 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:24:06.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:06 smithi178 bash[18765]: audit 2024-04-24T16:24:05.186761+0000 mon.smithi178 (mon.0) 556 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:24:06.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:06 smithi178 bash[18765]: audit 2024-04-24T16:24:05.190995+0000 mon.smithi178 (mon.0) 557 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:24:06.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:06 smithi178 bash[18765]: audit 2024-04-24T16:24:05.190995+0000 mon.smithi178 (mon.0) 557 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:24:07.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:07 smithi204 bash[20295]: cluster 2024-04-24T16:24:05.181972+0000 mgr.smithi178.tjvcci (mgr.14197) 456 : cluster [DBG] pgmap v403: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:07.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:07 smithi204 bash[20295]: cluster 2024-04-24T16:24:05.181972+0000 mgr.smithi178.tjvcci (mgr.14197) 456 : cluster [DBG] pgmap v403: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:07.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:07 smithi204 bash[20295]: cluster 2024-04-24T16:24:05.182514+0000 mgr.smithi178.tjvcci (mgr.14197) 457 : cluster [DBG] pgmap v404: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:07.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:07 smithi204 bash[20295]: cluster 2024-04-24T16:24:05.182514+0000 mgr.smithi178.tjvcci (mgr.14197) 457 : cluster [DBG] pgmap v404: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:07.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:07 smithi178 bash[18765]: cluster 2024-04-24T16:24:05.181972+0000 mgr.smithi178.tjvcci (mgr.14197) 456 : cluster [DBG] pgmap v403: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:07.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:07 smithi178 bash[18765]: cluster 2024-04-24T16:24:05.181972+0000 mgr.smithi178.tjvcci (mgr.14197) 456 : cluster [DBG] pgmap v403: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:07.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:07 smithi178 bash[18765]: cluster 2024-04-24T16:24:05.182514+0000 mgr.smithi178.tjvcci (mgr.14197) 457 : cluster [DBG] pgmap v404: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:07.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:07 smithi178 bash[18765]: cluster 2024-04-24T16:24:05.182514+0000 mgr.smithi178.tjvcci (mgr.14197) 457 : cluster [DBG] pgmap v404: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:08.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:08 smithi204 bash[20295]: cluster 2024-04-24T16:24:07.183448+0000 mgr.smithi178.tjvcci (mgr.14197) 458 : cluster [DBG] pgmap v405: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:08.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:08 smithi204 bash[20295]: cluster 2024-04-24T16:24:07.183448+0000 mgr.smithi178.tjvcci (mgr.14197) 458 : cluster [DBG] pgmap v405: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:08.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:08 smithi178 bash[18765]: cluster 2024-04-24T16:24:07.183448+0000 mgr.smithi178.tjvcci (mgr.14197) 458 : cluster [DBG] pgmap v405: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:08.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:08 smithi178 bash[18765]: cluster 2024-04-24T16:24:07.183448+0000 mgr.smithi178.tjvcci (mgr.14197) 458 : cluster [DBG] pgmap v405: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:10.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:10 smithi178 bash[18765]: cluster 2024-04-24T16:24:09.184425+0000 mgr.smithi178.tjvcci (mgr.14197) 459 : cluster [DBG] pgmap v406: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:10.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:10 smithi178 bash[18765]: cluster 2024-04-24T16:24:09.184425+0000 mgr.smithi178.tjvcci (mgr.14197) 459 : cluster [DBG] pgmap v406: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:10.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:10 smithi204 bash[20295]: cluster 2024-04-24T16:24:09.184425+0000 mgr.smithi178.tjvcci (mgr.14197) 459 : cluster [DBG] pgmap v406: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:10.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:10 smithi204 bash[20295]: cluster 2024-04-24T16:24:09.184425+0000 mgr.smithi178.tjvcci (mgr.14197) 459 : cluster [DBG] pgmap v406: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:10.933 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:24:12.187 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:24:12.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:12 smithi178 bash[18765]: cluster 2024-04-24T16:24:11.185408+0000 mgr.smithi178.tjvcci (mgr.14197) 460 : cluster [DBG] pgmap v407: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:12.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:12 smithi178 bash[18765]: cluster 2024-04-24T16:24:11.185408+0000 mgr.smithi178.tjvcci (mgr.14197) 460 : cluster [DBG] pgmap v407: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:12.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:12 smithi178 bash[18765]: audit 2024-04-24T16:24:12.194958+0000 mon.smithi178 (mon.0) 558 : audit [DBG] from='client.? 172.21.15.178:0/1794209023' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:12.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:12 smithi178 bash[18765]: audit 2024-04-24T16:24:12.194958+0000 mon.smithi178 (mon.0) 558 : audit [DBG] from='client.? 172.21.15.178:0/1794209023' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:12.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:12 smithi204 bash[20295]: cluster 2024-04-24T16:24:11.185408+0000 mgr.smithi178.tjvcci (mgr.14197) 460 : cluster [DBG] pgmap v407: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:12.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:12 smithi204 bash[20295]: cluster 2024-04-24T16:24:11.185408+0000 mgr.smithi178.tjvcci (mgr.14197) 460 : cluster [DBG] pgmap v407: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:12.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:12 smithi204 bash[20295]: audit 2024-04-24T16:24:12.194958+0000 mon.smithi178 (mon.0) 558 : audit [DBG] from='client.? 172.21.15.178:0/1794209023' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:12.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:12 smithi204 bash[20295]: audit 2024-04-24T16:24:12.194958+0000 mon.smithi178 (mon.0) 558 : audit [DBG] from='client.? 172.21.15.178:0/1794209023' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:12.824 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:24:13.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:13 smithi178 bash[18765]: audit 2024-04-24T16:24:12.399360+0000 mon.smithi178 (mon.0) 559 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:13.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:13 smithi178 bash[18765]: audit 2024-04-24T16:24:12.399360+0000 mon.smithi178 (mon.0) 559 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:13.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:13 smithi204 bash[20295]: audit 2024-04-24T16:24:12.399360+0000 mon.smithi178 (mon.0) 559 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:13.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:13 smithi204 bash[20295]: audit 2024-04-24T16:24:12.399360+0000 mon.smithi178 (mon.0) 559 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:13.825 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:24:14.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:14 smithi178 bash[18765]: cluster 2024-04-24T16:24:13.186446+0000 mgr.smithi178.tjvcci (mgr.14197) 461 : cluster [DBG] pgmap v408: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:14.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:14 smithi178 bash[18765]: cluster 2024-04-24T16:24:13.186446+0000 mgr.smithi178.tjvcci (mgr.14197) 461 : cluster [DBG] pgmap v408: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:14.628 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:14 smithi204 bash[20295]: cluster 2024-04-24T16:24:13.186446+0000 mgr.smithi178.tjvcci (mgr.14197) 461 : cluster [DBG] pgmap v408: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:14.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:14 smithi204 bash[20295]: cluster 2024-04-24T16:24:13.186446+0000 mgr.smithi178.tjvcci (mgr.14197) 461 : cluster [DBG] pgmap v408: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:16.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:16 smithi178 bash[18765]: cluster 2024-04-24T16:24:15.187461+0000 mgr.smithi178.tjvcci (mgr.14197) 462 : cluster [DBG] pgmap v409: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:16.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:16 smithi178 bash[18765]: cluster 2024-04-24T16:24:15.187461+0000 mgr.smithi178.tjvcci (mgr.14197) 462 : cluster [DBG] pgmap v409: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:16.628 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:16 smithi204 bash[20295]: cluster 2024-04-24T16:24:15.187461+0000 mgr.smithi178.tjvcci (mgr.14197) 462 : cluster [DBG] pgmap v409: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:16.628 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:16 smithi204 bash[20295]: cluster 2024-04-24T16:24:15.187461+0000 mgr.smithi178.tjvcci (mgr.14197) 462 : cluster [DBG] pgmap v409: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:18.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:18 smithi178 bash[18765]: cluster 2024-04-24T16:24:17.188464+0000 mgr.smithi178.tjvcci (mgr.14197) 463 : cluster [DBG] pgmap v410: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:18.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:18 smithi178 bash[18765]: cluster 2024-04-24T16:24:17.188464+0000 mgr.smithi178.tjvcci (mgr.14197) 463 : cluster [DBG] pgmap v410: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:18.589 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:24:18.628 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:18 smithi204 bash[20295]: cluster 2024-04-24T16:24:17.188464+0000 mgr.smithi178.tjvcci (mgr.14197) 463 : cluster [DBG] pgmap v410: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:18.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:18 smithi204 bash[20295]: cluster 2024-04-24T16:24:17.188464+0000 mgr.smithi178.tjvcci (mgr.14197) 463 : cluster [DBG] pgmap v410: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:19.765 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:24:20.389 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:24:20.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:20 smithi178 bash[18765]: cluster 2024-04-24T16:24:19.189461+0000 mgr.smithi178.tjvcci (mgr.14197) 464 : cluster [DBG] pgmap v411: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:20.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:20 smithi178 bash[18765]: cluster 2024-04-24T16:24:19.189461+0000 mgr.smithi178.tjvcci (mgr.14197) 464 : cluster [DBG] pgmap v411: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:20.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:20 smithi178 bash[18765]: audit 2024-04-24T16:24:19.773180+0000 mon.smithi178 (mon.0) 560 : audit [DBG] from='client.? 172.21.15.178:0/3757788552' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:20.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:20 smithi178 bash[18765]: audit 2024-04-24T16:24:19.773180+0000 mon.smithi178 (mon.0) 560 : audit [DBG] from='client.? 172.21.15.178:0/3757788552' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:20.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:20 smithi204 bash[20295]: cluster 2024-04-24T16:24:19.189461+0000 mgr.smithi178.tjvcci (mgr.14197) 464 : cluster [DBG] pgmap v411: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:20.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:20 smithi204 bash[20295]: cluster 2024-04-24T16:24:19.189461+0000 mgr.smithi178.tjvcci (mgr.14197) 464 : cluster [DBG] pgmap v411: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:20.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:20 smithi204 bash[20295]: audit 2024-04-24T16:24:19.773180+0000 mon.smithi178 (mon.0) 560 : audit [DBG] from='client.? 172.21.15.178:0/3757788552' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:20.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:20 smithi204 bash[20295]: audit 2024-04-24T16:24:19.773180+0000 mon.smithi178 (mon.0) 560 : audit [DBG] from='client.? 172.21.15.178:0/3757788552' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:21.391 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:24:22.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:22 smithi178 bash[18765]: cluster 2024-04-24T16:24:21.190413+0000 mgr.smithi178.tjvcci (mgr.14197) 465 : cluster [DBG] pgmap v412: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:22.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:22 smithi178 bash[18765]: cluster 2024-04-24T16:24:21.190413+0000 mgr.smithi178.tjvcci (mgr.14197) 465 : cluster [DBG] pgmap v412: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:22.628 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:22 smithi204 bash[20295]: cluster 2024-04-24T16:24:21.190413+0000 mgr.smithi178.tjvcci (mgr.14197) 465 : cluster [DBG] pgmap v412: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:22.628 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:22 smithi204 bash[20295]: cluster 2024-04-24T16:24:21.190413+0000 mgr.smithi178.tjvcci (mgr.14197) 465 : cluster [DBG] pgmap v412: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:24.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:24 smithi204 bash[20295]: cluster 2024-04-24T16:24:23.191404+0000 mgr.smithi178.tjvcci (mgr.14197) 466 : cluster [DBG] pgmap v413: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:24.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:24 smithi204 bash[20295]: cluster 2024-04-24T16:24:23.191404+0000 mgr.smithi178.tjvcci (mgr.14197) 466 : cluster [DBG] pgmap v413: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:25.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:24 smithi178 bash[18765]: cluster 2024-04-24T16:24:23.191404+0000 mgr.smithi178.tjvcci (mgr.14197) 466 : cluster [DBG] pgmap v413: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:25.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:24 smithi178 bash[18765]: cluster 2024-04-24T16:24:23.191404+0000 mgr.smithi178.tjvcci (mgr.14197) 466 : cluster [DBG] pgmap v413: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:26.169 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:24:26.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:26 smithi204 bash[20295]: cluster 2024-04-24T16:24:25.192331+0000 mgr.smithi178.tjvcci (mgr.14197) 467 : cluster [DBG] pgmap v414: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:26.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:26 smithi204 bash[20295]: cluster 2024-04-24T16:24:25.192331+0000 mgr.smithi178.tjvcci (mgr.14197) 467 : cluster [DBG] pgmap v414: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:26.965 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:26 smithi178 bash[18765]: cluster 2024-04-24T16:24:25.192331+0000 mgr.smithi178.tjvcci (mgr.14197) 467 : cluster [DBG] pgmap v414: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:26.965 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:26 smithi178 bash[18765]: cluster 2024-04-24T16:24:25.192331+0000 mgr.smithi178.tjvcci (mgr.14197) 467 : cluster [DBG] pgmap v414: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:27.345 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:24:27.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:27 smithi204 bash[20295]: audit 2024-04-24T16:24:27.353114+0000 mon.smithi178 (mon.0) 561 : audit [DBG] from='client.? 172.21.15.178:0/3955260526' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:27.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:27 smithi204 bash[20295]: audit 2024-04-24T16:24:27.353114+0000 mon.smithi178 (mon.0) 561 : audit [DBG] from='client.? 172.21.15.178:0/3955260526' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:27.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:27 smithi204 bash[20295]: audit 2024-04-24T16:24:27.399071+0000 mon.smithi178 (mon.0) 562 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:27.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:27 smithi204 bash[20295]: audit 2024-04-24T16:24:27.399071+0000 mon.smithi178 (mon.0) 562 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:28.000 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:27 smithi178 bash[18765]: audit 2024-04-24T16:24:27.353114+0000 mon.smithi178 (mon.0) 561 : audit [DBG] from='client.? 172.21.15.178:0/3955260526' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:28.000 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:27 smithi178 bash[18765]: audit 2024-04-24T16:24:27.353114+0000 mon.smithi178 (mon.0) 561 : audit [DBG] from='client.? 172.21.15.178:0/3955260526' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:28.000 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:27 smithi178 bash[18765]: audit 2024-04-24T16:24:27.399071+0000 mon.smithi178 (mon.0) 562 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:28.000 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:27 smithi178 bash[18765]: audit 2024-04-24T16:24:27.399071+0000 mon.smithi178 (mon.0) 562 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:28.001 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:24:28.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:28 smithi204 bash[20295]: cluster 2024-04-24T16:24:27.193315+0000 mgr.smithi178.tjvcci (mgr.14197) 468 : cluster [DBG] pgmap v415: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:28.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:28 smithi204 bash[20295]: cluster 2024-04-24T16:24:27.193315+0000 mgr.smithi178.tjvcci (mgr.14197) 468 : cluster [DBG] pgmap v415: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:29.002 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:24:29.013 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:28 smithi178 bash[18765]: cluster 2024-04-24T16:24:27.193315+0000 mgr.smithi178.tjvcci (mgr.14197) 468 : cluster [DBG] pgmap v415: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:29.013 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:28 smithi178 bash[18765]: cluster 2024-04-24T16:24:27.193315+0000 mgr.smithi178.tjvcci (mgr.14197) 468 : cluster [DBG] pgmap v415: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:30.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:30 smithi178 bash[18765]: cluster 2024-04-24T16:24:29.193850+0000 mgr.smithi178.tjvcci (mgr.14197) 469 : cluster [DBG] pgmap v416: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:30.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:30 smithi178 bash[18765]: cluster 2024-04-24T16:24:29.193850+0000 mgr.smithi178.tjvcci (mgr.14197) 469 : cluster [DBG] pgmap v416: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:31.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:30 smithi204 bash[20295]: cluster 2024-04-24T16:24:29.193850+0000 mgr.smithi178.tjvcci (mgr.14197) 469 : cluster [DBG] pgmap v416: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:31.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:30 smithi204 bash[20295]: cluster 2024-04-24T16:24:29.193850+0000 mgr.smithi178.tjvcci (mgr.14197) 469 : cluster [DBG] pgmap v416: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:32.959 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:32 smithi204 bash[20295]: cluster 2024-04-24T16:24:31.194804+0000 mgr.smithi178.tjvcci (mgr.14197) 470 : cluster [DBG] pgmap v417: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:32.959 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:32 smithi204 bash[20295]: cluster 2024-04-24T16:24:31.194804+0000 mgr.smithi178.tjvcci (mgr.14197) 470 : cluster [DBG] pgmap v417: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:33.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:32 smithi178 bash[18765]: cluster 2024-04-24T16:24:31.194804+0000 mgr.smithi178.tjvcci (mgr.14197) 470 : cluster [DBG] pgmap v417: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:33.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:32 smithi178 bash[18765]: cluster 2024-04-24T16:24:31.194804+0000 mgr.smithi178.tjvcci (mgr.14197) 470 : cluster [DBG] pgmap v417: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:33.772 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:24:34.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:34 smithi178 bash[18765]: cluster 2024-04-24T16:24:33.195796+0000 mgr.smithi178.tjvcci (mgr.14197) 471 : cluster [DBG] pgmap v418: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:34.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:34 smithi178 bash[18765]: cluster 2024-04-24T16:24:33.195796+0000 mgr.smithi178.tjvcci (mgr.14197) 471 : cluster [DBG] pgmap v418: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:34.868 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:24:35.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:34 smithi204 bash[20295]: cluster 2024-04-24T16:24:33.195796+0000 mgr.smithi178.tjvcci (mgr.14197) 471 : cluster [DBG] pgmap v418: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:35.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:34 smithi204 bash[20295]: cluster 2024-04-24T16:24:33.195796+0000 mgr.smithi178.tjvcci (mgr.14197) 471 : cluster [DBG] pgmap v418: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:35.483 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:24:35.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:35 smithi178 bash[18765]: audit 2024-04-24T16:24:34.876184+0000 mon.smithi178 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.178:0/1815651196' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:35.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:35 smithi178 bash[18765]: audit 2024-04-24T16:24:34.876184+0000 mon.smithi178 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.178:0/1815651196' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:36.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:35 smithi204 bash[20295]: audit 2024-04-24T16:24:34.876184+0000 mon.smithi178 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.178:0/1815651196' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:36.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:35 smithi204 bash[20295]: audit 2024-04-24T16:24:34.876184+0000 mon.smithi178 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.178:0/1815651196' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:36.484 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:24:36.829 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:36 smithi178 bash[18765]: cluster 2024-04-24T16:24:35.196772+0000 mgr.smithi178.tjvcci (mgr.14197) 472 : cluster [DBG] pgmap v419: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:36.829 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:36 smithi178 bash[18765]: cluster 2024-04-24T16:24:35.196772+0000 mgr.smithi178.tjvcci (mgr.14197) 472 : cluster [DBG] pgmap v419: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:37.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:36 smithi204 bash[20295]: cluster 2024-04-24T16:24:35.196772+0000 mgr.smithi178.tjvcci (mgr.14197) 472 : cluster [DBG] pgmap v419: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:37.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:36 smithi204 bash[20295]: cluster 2024-04-24T16:24:35.196772+0000 mgr.smithi178.tjvcci (mgr.14197) 472 : cluster [DBG] pgmap v419: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:39.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:38 smithi178 bash[18765]: cluster 2024-04-24T16:24:37.197760+0000 mgr.smithi178.tjvcci (mgr.14197) 473 : cluster [DBG] pgmap v420: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:39.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:38 smithi178 bash[18765]: cluster 2024-04-24T16:24:37.197760+0000 mgr.smithi178.tjvcci (mgr.14197) 473 : cluster [DBG] pgmap v420: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:39.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:38 smithi204 bash[20295]: cluster 2024-04-24T16:24:37.197760+0000 mgr.smithi178.tjvcci (mgr.14197) 473 : cluster [DBG] pgmap v420: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:39.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:38 smithi204 bash[20295]: cluster 2024-04-24T16:24:37.197760+0000 mgr.smithi178.tjvcci (mgr.14197) 473 : cluster [DBG] pgmap v420: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:40.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:40 smithi178 bash[18765]: cluster 2024-04-24T16:24:39.198753+0000 mgr.smithi178.tjvcci (mgr.14197) 474 : cluster [DBG] pgmap v421: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:40.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:40 smithi178 bash[18765]: cluster 2024-04-24T16:24:39.198753+0000 mgr.smithi178.tjvcci (mgr.14197) 474 : cluster [DBG] pgmap v421: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:41.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:40 smithi204 bash[20295]: cluster 2024-04-24T16:24:39.198753+0000 mgr.smithi178.tjvcci (mgr.14197) 474 : cluster [DBG] pgmap v421: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:41.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:40 smithi204 bash[20295]: cluster 2024-04-24T16:24:39.198753+0000 mgr.smithi178.tjvcci (mgr.14197) 474 : cluster [DBG] pgmap v421: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:41.251 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:24:42.450 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:24:42.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:42 smithi178 bash[18765]: cluster 2024-04-24T16:24:41.199747+0000 mgr.smithi178.tjvcci (mgr.14197) 475 : cluster [DBG] pgmap v422: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:42.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:42 smithi178 bash[18765]: cluster 2024-04-24T16:24:41.199747+0000 mgr.smithi178.tjvcci (mgr.14197) 475 : cluster [DBG] pgmap v422: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:42.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:42 smithi178 bash[18765]: audit 2024-04-24T16:24:42.399898+0000 mon.smithi178 (mon.0) 564 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:42.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:42 smithi178 bash[18765]: audit 2024-04-24T16:24:42.399898+0000 mon.smithi178 (mon.0) 564 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:42.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:42 smithi178 bash[18765]: audit 2024-04-24T16:24:42.457930+0000 mon.smithi178 (mon.0) 565 : audit [DBG] from='client.? 172.21.15.178:0/2648697897' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:42.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:42 smithi178 bash[18765]: audit 2024-04-24T16:24:42.457930+0000 mon.smithi178 (mon.0) 565 : audit [DBG] from='client.? 172.21.15.178:0/2648697897' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:42.960 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:42 smithi204 bash[20295]: cluster 2024-04-24T16:24:41.199747+0000 mgr.smithi178.tjvcci (mgr.14197) 475 : cluster [DBG] pgmap v422: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:42.960 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:42 smithi204 bash[20295]: cluster 2024-04-24T16:24:41.199747+0000 mgr.smithi178.tjvcci (mgr.14197) 475 : cluster [DBG] pgmap v422: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:42.960 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:42 smithi204 bash[20295]: audit 2024-04-24T16:24:42.399898+0000 mon.smithi178 (mon.0) 564 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:42.960 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:42 smithi204 bash[20295]: audit 2024-04-24T16:24:42.399898+0000 mon.smithi178 (mon.0) 564 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:42.960 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:42 smithi204 bash[20295]: audit 2024-04-24T16:24:42.457930+0000 mon.smithi178 (mon.0) 565 : audit [DBG] from='client.? 172.21.15.178:0/2648697897' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:42.960 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:42 smithi204 bash[20295]: audit 2024-04-24T16:24:42.457930+0000 mon.smithi178 (mon.0) 565 : audit [DBG] from='client.? 172.21.15.178:0/2648697897' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:43.137 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:24:44.138 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:24:45.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:44 smithi178 bash[18765]: cluster 2024-04-24T16:24:43.200727+0000 mgr.smithi178.tjvcci (mgr.14197) 476 : cluster [DBG] pgmap v423: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:45.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:44 smithi178 bash[18765]: cluster 2024-04-24T16:24:43.200727+0000 mgr.smithi178.tjvcci (mgr.14197) 476 : cluster [DBG] pgmap v423: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:45.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:44 smithi204 bash[20295]: cluster 2024-04-24T16:24:43.200727+0000 mgr.smithi178.tjvcci (mgr.14197) 476 : cluster [DBG] pgmap v423: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:45.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:44 smithi204 bash[20295]: cluster 2024-04-24T16:24:43.200727+0000 mgr.smithi178.tjvcci (mgr.14197) 476 : cluster [DBG] pgmap v423: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:47.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:46 smithi178 bash[18765]: cluster 2024-04-24T16:24:45.201708+0000 mgr.smithi178.tjvcci (mgr.14197) 477 : cluster [DBG] pgmap v424: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:47.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:46 smithi178 bash[18765]: cluster 2024-04-24T16:24:45.201708+0000 mgr.smithi178.tjvcci (mgr.14197) 477 : cluster [DBG] pgmap v424: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:47.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:46 smithi204 bash[20295]: cluster 2024-04-24T16:24:45.201708+0000 mgr.smithi178.tjvcci (mgr.14197) 477 : cluster [DBG] pgmap v424: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:47.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:46 smithi204 bash[20295]: cluster 2024-04-24T16:24:45.201708+0000 mgr.smithi178.tjvcci (mgr.14197) 477 : cluster [DBG] pgmap v424: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:48.900 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:24:49.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:48 smithi178 bash[18765]: cluster 2024-04-24T16:24:47.202710+0000 mgr.smithi178.tjvcci (mgr.14197) 478 : cluster [DBG] pgmap v425: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:49.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:48 smithi178 bash[18765]: cluster 2024-04-24T16:24:47.202710+0000 mgr.smithi178.tjvcci (mgr.14197) 478 : cluster [DBG] pgmap v425: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:49.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:48 smithi204 bash[20295]: cluster 2024-04-24T16:24:47.202710+0000 mgr.smithi178.tjvcci (mgr.14197) 478 : cluster [DBG] pgmap v425: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:49.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:48 smithi204 bash[20295]: cluster 2024-04-24T16:24:47.202710+0000 mgr.smithi178.tjvcci (mgr.14197) 478 : cluster [DBG] pgmap v425: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:50.022 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:24:50.701 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:24:50.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:50 smithi178 bash[18765]: cluster 2024-04-24T16:24:49.203689+0000 mgr.smithi178.tjvcci (mgr.14197) 479 : cluster [DBG] pgmap v426: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:50.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:50 smithi178 bash[18765]: cluster 2024-04-24T16:24:49.203689+0000 mgr.smithi178.tjvcci (mgr.14197) 479 : cluster [DBG] pgmap v426: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:50.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:50 smithi178 bash[18765]: audit 2024-04-24T16:24:50.030092+0000 mon.smithi178 (mon.0) 566 : audit [DBG] from='client.? 172.21.15.178:0/50579621' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:50.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:50 smithi178 bash[18765]: audit 2024-04-24T16:24:50.030092+0000 mon.smithi178 (mon.0) 566 : audit [DBG] from='client.? 172.21.15.178:0/50579621' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:51.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:50 smithi204 bash[20295]: cluster 2024-04-24T16:24:49.203689+0000 mgr.smithi178.tjvcci (mgr.14197) 479 : cluster [DBG] pgmap v426: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:51.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:50 smithi204 bash[20295]: cluster 2024-04-24T16:24:49.203689+0000 mgr.smithi178.tjvcci (mgr.14197) 479 : cluster [DBG] pgmap v426: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:51.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:50 smithi204 bash[20295]: audit 2024-04-24T16:24:50.030092+0000 mon.smithi178 (mon.0) 566 : audit [DBG] from='client.? 172.21.15.178:0/50579621' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:51.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:50 smithi204 bash[20295]: audit 2024-04-24T16:24:50.030092+0000 mon.smithi178 (mon.0) 566 : audit [DBG] from='client.? 172.21.15.178:0/50579621' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:51.703 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:24:52.960 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:52 smithi204 bash[20295]: cluster 2024-04-24T16:24:51.204618+0000 mgr.smithi178.tjvcci (mgr.14197) 480 : cluster [DBG] pgmap v427: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:52.960 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:52 smithi204 bash[20295]: cluster 2024-04-24T16:24:51.204618+0000 mgr.smithi178.tjvcci (mgr.14197) 480 : cluster [DBG] pgmap v427: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:53.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:52 smithi178 bash[18765]: cluster 2024-04-24T16:24:51.204618+0000 mgr.smithi178.tjvcci (mgr.14197) 480 : cluster [DBG] pgmap v427: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:53.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:52 smithi178 bash[18765]: cluster 2024-04-24T16:24:51.204618+0000 mgr.smithi178.tjvcci (mgr.14197) 480 : cluster [DBG] pgmap v427: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:55.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:54 smithi178 bash[18765]: cluster 2024-04-24T16:24:53.205593+0000 mgr.smithi178.tjvcci (mgr.14197) 481 : cluster [DBG] pgmap v428: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:55.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:54 smithi178 bash[18765]: cluster 2024-04-24T16:24:53.205593+0000 mgr.smithi178.tjvcci (mgr.14197) 481 : cluster [DBG] pgmap v428: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:55.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:54 smithi204 bash[20295]: cluster 2024-04-24T16:24:53.205593+0000 mgr.smithi178.tjvcci (mgr.14197) 481 : cluster [DBG] pgmap v428: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:55.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:54 smithi204 bash[20295]: cluster 2024-04-24T16:24:53.205593+0000 mgr.smithi178.tjvcci (mgr.14197) 481 : cluster [DBG] pgmap v428: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:56.471 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:24:56.830 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:56 smithi178 bash[18765]: cluster 2024-04-24T16:24:55.206587+0000 mgr.smithi178.tjvcci (mgr.14197) 482 : cluster [DBG] pgmap v429: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:56.830 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:56 smithi178 bash[18765]: cluster 2024-04-24T16:24:55.206587+0000 mgr.smithi178.tjvcci (mgr.14197) 482 : cluster [DBG] pgmap v429: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:57.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:56 smithi204 bash[20295]: cluster 2024-04-24T16:24:55.206587+0000 mgr.smithi178.tjvcci (mgr.14197) 482 : cluster [DBG] pgmap v429: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:57.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:56 smithi204 bash[20295]: cluster 2024-04-24T16:24:55.206587+0000 mgr.smithi178.tjvcci (mgr.14197) 482 : cluster [DBG] pgmap v429: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:57.747 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:24:57.961 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:57 smithi204 bash[20295]: audit 2024-04-24T16:24:57.399629+0000 mon.smithi178 (mon.0) 567 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:57.961 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:57 smithi204 bash[20295]: audit 2024-04-24T16:24:57.399629+0000 mon.smithi178 (mon.0) 567 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:58.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:57 smithi178 bash[18765]: audit 2024-04-24T16:24:57.399629+0000 mon.smithi178 (mon.0) 567 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:58.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:57 smithi178 bash[18765]: audit 2024-04-24T16:24:57.399629+0000 mon.smithi178 (mon.0) 567 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:24:58.399 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:24:59.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:58 smithi178 bash[18765]: cluster 2024-04-24T16:24:57.207610+0000 mgr.smithi178.tjvcci (mgr.14197) 483 : cluster [DBG] pgmap v430: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:59.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:58 smithi178 bash[18765]: cluster 2024-04-24T16:24:57.207610+0000 mgr.smithi178.tjvcci (mgr.14197) 483 : cluster [DBG] pgmap v430: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:59.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:58 smithi178 bash[18765]: audit 2024-04-24T16:24:57.755647+0000 mon.smithi178 (mon.0) 568 : audit [DBG] from='client.? 172.21.15.178:0/1625189263' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:59.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:24:58 smithi178 bash[18765]: audit 2024-04-24T16:24:57.755647+0000 mon.smithi178 (mon.0) 568 : audit [DBG] from='client.? 172.21.15.178:0/1625189263' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:59.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:58 smithi204 bash[20295]: cluster 2024-04-24T16:24:57.207610+0000 mgr.smithi178.tjvcci (mgr.14197) 483 : cluster [DBG] pgmap v430: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:59.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:58 smithi204 bash[20295]: cluster 2024-04-24T16:24:57.207610+0000 mgr.smithi178.tjvcci (mgr.14197) 483 : cluster [DBG] pgmap v430: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:24:59.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:58 smithi204 bash[20295]: audit 2024-04-24T16:24:57.755647+0000 mon.smithi178 (mon.0) 568 : audit [DBG] from='client.? 172.21.15.178:0/1625189263' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:59.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:24:58 smithi204 bash[20295]: audit 2024-04-24T16:24:57.755647+0000 mon.smithi178 (mon.0) 568 : audit [DBG] from='client.? 172.21.15.178:0/1625189263' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:24:59.401 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:25:00.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:00 smithi178 bash[18765]: cluster 2024-04-24T16:24:59.208634+0000 mgr.smithi178.tjvcci (mgr.14197) 484 : cluster [DBG] pgmap v431: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:00.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:00 smithi178 bash[18765]: cluster 2024-04-24T16:24:59.208634+0000 mgr.smithi178.tjvcci (mgr.14197) 484 : cluster [DBG] pgmap v431: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:01.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:00 smithi204 bash[20295]: cluster 2024-04-24T16:24:59.208634+0000 mgr.smithi178.tjvcci (mgr.14197) 484 : cluster [DBG] pgmap v431: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:01.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:00 smithi204 bash[20295]: cluster 2024-04-24T16:24:59.208634+0000 mgr.smithi178.tjvcci (mgr.14197) 484 : cluster [DBG] pgmap v431: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:02.961 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:02 smithi204 bash[20295]: cluster 2024-04-24T16:25:01.209631+0000 mgr.smithi178.tjvcci (mgr.14197) 485 : cluster [DBG] pgmap v432: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:02.961 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:02 smithi204 bash[20295]: cluster 2024-04-24T16:25:01.209631+0000 mgr.smithi178.tjvcci (mgr.14197) 485 : cluster [DBG] pgmap v432: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:03.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:02 smithi178 bash[18765]: cluster 2024-04-24T16:25:01.209631+0000 mgr.smithi178.tjvcci (mgr.14197) 485 : cluster [DBG] pgmap v432: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:03.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:02 smithi178 bash[18765]: cluster 2024-04-24T16:25:01.209631+0000 mgr.smithi178.tjvcci (mgr.14197) 485 : cluster [DBG] pgmap v432: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:04.162 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:25:05.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:04 smithi178 bash[18765]: cluster 2024-04-24T16:25:03.210620+0000 mgr.smithi178.tjvcci (mgr.14197) 486 : cluster [DBG] pgmap v433: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:05.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:04 smithi178 bash[18765]: cluster 2024-04-24T16:25:03.210620+0000 mgr.smithi178.tjvcci (mgr.14197) 486 : cluster [DBG] pgmap v433: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:05.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:04 smithi204 bash[20295]: cluster 2024-04-24T16:25:03.210620+0000 mgr.smithi178.tjvcci (mgr.14197) 486 : cluster [DBG] pgmap v433: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:05.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:04 smithi204 bash[20295]: cluster 2024-04-24T16:25:03.210620+0000 mgr.smithi178.tjvcci (mgr.14197) 486 : cluster [DBG] pgmap v433: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:05.683 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:25:05.850 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:05 smithi178 bash[18765]: audit 2024-04-24T16:25:05.273569+0000 mon.smithi178 (mon.0) 569 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:25:05.850 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:05 smithi178 bash[18765]: audit 2024-04-24T16:25:05.273569+0000 mon.smithi178 (mon.0) 569 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:25:05.850 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:05 smithi178 bash[18765]: audit 2024-04-24T16:25:05.691165+0000 mon.smithi178 (mon.0) 570 : audit [DBG] from='client.? 172.21.15.178:0/1405101368' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:05.850 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:05 smithi178 bash[18765]: audit 2024-04-24T16:25:05.691165+0000 mon.smithi178 (mon.0) 570 : audit [DBG] from='client.? 172.21.15.178:0/1405101368' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:06.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:05 smithi204 bash[20295]: audit 2024-04-24T16:25:05.273569+0000 mon.smithi178 (mon.0) 569 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:25:06.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:05 smithi204 bash[20295]: audit 2024-04-24T16:25:05.273569+0000 mon.smithi178 (mon.0) 569 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:25:06.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:05 smithi204 bash[20295]: audit 2024-04-24T16:25:05.691165+0000 mon.smithi178 (mon.0) 570 : audit [DBG] from='client.? 172.21.15.178:0/1405101368' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:06.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:05 smithi204 bash[20295]: audit 2024-04-24T16:25:05.691165+0000 mon.smithi178 (mon.0) 570 : audit [DBG] from='client.? 172.21.15.178:0/1405101368' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:06.285 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:25:07.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:06 smithi178 bash[18765]: cluster 2024-04-24T16:25:05.211609+0000 mgr.smithi178.tjvcci (mgr.14197) 487 : cluster [DBG] pgmap v434: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:07.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:06 smithi178 bash[18765]: cluster 2024-04-24T16:25:05.211609+0000 mgr.smithi178.tjvcci (mgr.14197) 487 : cluster [DBG] pgmap v434: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:07.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:06 smithi204 bash[20295]: cluster 2024-04-24T16:25:05.211609+0000 mgr.smithi178.tjvcci (mgr.14197) 487 : cluster [DBG] pgmap v434: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:07.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:06 smithi204 bash[20295]: cluster 2024-04-24T16:25:05.211609+0000 mgr.smithi178.tjvcci (mgr.14197) 487 : cluster [DBG] pgmap v434: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:07.286 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:25:09.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:08 smithi178 bash[18765]: cluster 2024-04-24T16:25:07.212662+0000 mgr.smithi178.tjvcci (mgr.14197) 488 : cluster [DBG] pgmap v435: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:09.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:08 smithi178 bash[18765]: cluster 2024-04-24T16:25:07.212662+0000 mgr.smithi178.tjvcci (mgr.14197) 488 : cluster [DBG] pgmap v435: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:09.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:08 smithi204 bash[20295]: cluster 2024-04-24T16:25:07.212662+0000 mgr.smithi178.tjvcci (mgr.14197) 488 : cluster [DBG] pgmap v435: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:09.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:08 smithi204 bash[20295]: cluster 2024-04-24T16:25:07.212662+0000 mgr.smithi178.tjvcci (mgr.14197) 488 : cluster [DBG] pgmap v435: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:11.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:10 smithi178 bash[18765]: cluster 2024-04-24T16:25:09.213679+0000 mgr.smithi178.tjvcci (mgr.14197) 489 : cluster [DBG] pgmap v436: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:11.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:10 smithi178 bash[18765]: cluster 2024-04-24T16:25:09.213679+0000 mgr.smithi178.tjvcci (mgr.14197) 489 : cluster [DBG] pgmap v436: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:11.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:10 smithi204 bash[20295]: cluster 2024-04-24T16:25:09.213679+0000 mgr.smithi178.tjvcci (mgr.14197) 489 : cluster [DBG] pgmap v436: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:11.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:10 smithi204 bash[20295]: cluster 2024-04-24T16:25:09.213679+0000 mgr.smithi178.tjvcci (mgr.14197) 489 : cluster [DBG] pgmap v436: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:11.285 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:25:12.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:12 smithi178 bash[18765]: audit 2024-04-24T16:25:11.173193+0000 mon.smithi178 (mon.0) 571 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:25:12.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:12 smithi178 bash[18765]: audit 2024-04-24T16:25:11.173193+0000 mon.smithi178 (mon.0) 571 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:25:12.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:12 smithi178 bash[18765]: cluster 2024-04-24T16:25:11.214188+0000 mgr.smithi178.tjvcci (mgr.14197) 490 : cluster [DBG] pgmap v437: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:12.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:12 smithi178 bash[18765]: cluster 2024-04-24T16:25:11.214188+0000 mgr.smithi178.tjvcci (mgr.14197) 490 : cluster [DBG] pgmap v437: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:12.360 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:25:12.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:12 smithi204 bash[20295]: audit 2024-04-24T16:25:11.173193+0000 mon.smithi178 (mon.0) 571 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:25:12.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:12 smithi204 bash[20295]: audit 2024-04-24T16:25:11.173193+0000 mon.smithi178 (mon.0) 571 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:25:12.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:12 smithi204 bash[20295]: cluster 2024-04-24T16:25:11.214188+0000 mgr.smithi178.tjvcci (mgr.14197) 490 : cluster [DBG] pgmap v437: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:12.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:12 smithi204 bash[20295]: cluster 2024-04-24T16:25:11.214188+0000 mgr.smithi178.tjvcci (mgr.14197) 490 : cluster [DBG] pgmap v437: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:13.017 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:25:13.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:13 smithi178 bash[18765]: audit 2024-04-24T16:25:12.368675+0000 mon.smithi178 (mon.0) 572 : audit [DBG] from='client.? 172.21.15.178:0/551961535' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:13.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:13 smithi178 bash[18765]: audit 2024-04-24T16:25:12.368675+0000 mon.smithi178 (mon.0) 572 : audit [DBG] from='client.? 172.21.15.178:0/551961535' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:13.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:13 smithi178 bash[18765]: audit 2024-04-24T16:25:12.399762+0000 mon.smithi178 (mon.0) 573 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:13.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:13 smithi178 bash[18765]: audit 2024-04-24T16:25:12.399762+0000 mon.smithi178 (mon.0) 573 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:13.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:13 smithi204 bash[20295]: audit 2024-04-24T16:25:12.368675+0000 mon.smithi178 (mon.0) 572 : audit [DBG] from='client.? 172.21.15.178:0/551961535' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:13.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:13 smithi204 bash[20295]: audit 2024-04-24T16:25:12.368675+0000 mon.smithi178 (mon.0) 572 : audit [DBG] from='client.? 172.21.15.178:0/551961535' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:13.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:13 smithi204 bash[20295]: audit 2024-04-24T16:25:12.399762+0000 mon.smithi178 (mon.0) 573 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:13.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:13 smithi204 bash[20295]: audit 2024-04-24T16:25:12.399762+0000 mon.smithi178 (mon.0) 573 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:14.018 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:25:14.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:14 smithi178 bash[18765]: cluster 2024-04-24T16:25:13.215096+0000 mgr.smithi178.tjvcci (mgr.14197) 491 : cluster [DBG] pgmap v438: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:14.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:14 smithi178 bash[18765]: cluster 2024-04-24T16:25:13.215096+0000 mgr.smithi178.tjvcci (mgr.14197) 491 : cluster [DBG] pgmap v438: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:14.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:14 smithi204 bash[20295]: cluster 2024-04-24T16:25:13.215096+0000 mgr.smithi178.tjvcci (mgr.14197) 491 : cluster [DBG] pgmap v438: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:14.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:14 smithi204 bash[20295]: cluster 2024-04-24T16:25:13.215096+0000 mgr.smithi178.tjvcci (mgr.14197) 491 : cluster [DBG] pgmap v438: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:16.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:16 smithi178 bash[18765]: cluster 2024-04-24T16:25:15.216084+0000 mgr.smithi178.tjvcci (mgr.14197) 492 : cluster [DBG] pgmap v439: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:16.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:16 smithi178 bash[18765]: cluster 2024-04-24T16:25:15.216084+0000 mgr.smithi178.tjvcci (mgr.14197) 492 : cluster [DBG] pgmap v439: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:16.628 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:16 smithi204 bash[20295]: cluster 2024-04-24T16:25:15.216084+0000 mgr.smithi178.tjvcci (mgr.14197) 492 : cluster [DBG] pgmap v439: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:16.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:16 smithi204 bash[20295]: cluster 2024-04-24T16:25:15.216084+0000 mgr.smithi178.tjvcci (mgr.14197) 492 : cluster [DBG] pgmap v439: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:18.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:18 smithi178 bash[18765]: cluster 2024-04-24T16:25:17.217151+0000 mgr.smithi178.tjvcci (mgr.14197) 493 : cluster [DBG] pgmap v440: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:18.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:18 smithi178 bash[18765]: cluster 2024-04-24T16:25:17.217151+0000 mgr.smithi178.tjvcci (mgr.14197) 493 : cluster [DBG] pgmap v440: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:18.628 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:18 smithi204 bash[20295]: cluster 2024-04-24T16:25:17.217151+0000 mgr.smithi178.tjvcci (mgr.14197) 493 : cluster [DBG] pgmap v440: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:18.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:18 smithi204 bash[20295]: cluster 2024-04-24T16:25:17.217151+0000 mgr.smithi178.tjvcci (mgr.14197) 493 : cluster [DBG] pgmap v440: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:18.729 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:25:19.530 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:19 smithi178 bash[18765]: audit 2024-04-24T16:25:18.524705+0000 mon.smithi178 (mon.0) 574 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:25:19.530 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:19 smithi178 bash[18765]: audit 2024-04-24T16:25:18.524705+0000 mon.smithi178 (mon.0) 574 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:25:19.530 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:19 smithi178 bash[18765]: audit 2024-04-24T16:25:18.526574+0000 mon.smithi178 (mon.0) 575 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:25:19.530 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:19 smithi178 bash[18765]: audit 2024-04-24T16:25:18.526574+0000 mon.smithi178 (mon.0) 575 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:25:19.530 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:19 smithi178 bash[18765]: cluster 2024-04-24T16:25:18.529617+0000 mgr.smithi178.tjvcci (mgr.14197) 494 : cluster [DBG] pgmap v441: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:19.530 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:19 smithi178 bash[18765]: cluster 2024-04-24T16:25:18.529617+0000 mgr.smithi178.tjvcci (mgr.14197) 494 : cluster [DBG] pgmap v441: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:19.530 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:19 smithi178 bash[18765]: cluster 2024-04-24T16:25:18.530800+0000 mgr.smithi178.tjvcci (mgr.14197) 495 : cluster [DBG] pgmap v442: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:19.530 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:19 smithi178 bash[18765]: cluster 2024-04-24T16:25:18.530800+0000 mgr.smithi178.tjvcci (mgr.14197) 495 : cluster [DBG] pgmap v442: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:19.530 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:19 smithi178 bash[18765]: audit 2024-04-24T16:25:18.538265+0000 mon.smithi178 (mon.0) 576 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:25:19.530 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:19 smithi178 bash[18765]: audit 2024-04-24T16:25:18.538265+0000 mon.smithi178 (mon.0) 576 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:25:19.530 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:19 smithi178 bash[18765]: audit 2024-04-24T16:25:18.546344+0000 mon.smithi178 (mon.0) 577 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:25:19.531 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:19 smithi178 bash[18765]: audit 2024-04-24T16:25:18.546344+0000 mon.smithi178 (mon.0) 577 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:25:19.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:19 smithi204 bash[20295]: audit 2024-04-24T16:25:18.524705+0000 mon.smithi178 (mon.0) 574 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:25:19.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:19 smithi204 bash[20295]: audit 2024-04-24T16:25:18.524705+0000 mon.smithi178 (mon.0) 574 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:25:19.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:19 smithi204 bash[20295]: audit 2024-04-24T16:25:18.526574+0000 mon.smithi178 (mon.0) 575 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:25:19.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:19 smithi204 bash[20295]: audit 2024-04-24T16:25:18.526574+0000 mon.smithi178 (mon.0) 575 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:25:19.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:19 smithi204 bash[20295]: cluster 2024-04-24T16:25:18.529617+0000 mgr.smithi178.tjvcci (mgr.14197) 494 : cluster [DBG] pgmap v441: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:19.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:19 smithi204 bash[20295]: cluster 2024-04-24T16:25:18.529617+0000 mgr.smithi178.tjvcci (mgr.14197) 494 : cluster [DBG] pgmap v441: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:19.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:19 smithi204 bash[20295]: cluster 2024-04-24T16:25:18.530800+0000 mgr.smithi178.tjvcci (mgr.14197) 495 : cluster [DBG] pgmap v442: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:19.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:19 smithi204 bash[20295]: cluster 2024-04-24T16:25:18.530800+0000 mgr.smithi178.tjvcci (mgr.14197) 495 : cluster [DBG] pgmap v442: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:19.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:19 smithi204 bash[20295]: audit 2024-04-24T16:25:18.538265+0000 mon.smithi178 (mon.0) 576 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:25:19.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:19 smithi204 bash[20295]: audit 2024-04-24T16:25:18.538265+0000 mon.smithi178 (mon.0) 576 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:25:19.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:19 smithi204 bash[20295]: audit 2024-04-24T16:25:18.546344+0000 mon.smithi178 (mon.0) 577 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:25:19.630 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:19 smithi204 bash[20295]: audit 2024-04-24T16:25:18.546344+0000 mon.smithi178 (mon.0) 577 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:25:19.890 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:25:20.483 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:25:20.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:20 smithi178 bash[18765]: audit 2024-04-24T16:25:19.898438+0000 mon.smithi178 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.178:0/2955401543' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:20.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:20 smithi178 bash[18765]: audit 2024-04-24T16:25:19.898438+0000 mon.smithi178 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.178:0/2955401543' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:20.628 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:20 smithi204 bash[20295]: audit 2024-04-24T16:25:19.898438+0000 mon.smithi178 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.178:0/2955401543' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:20.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:20 smithi204 bash[20295]: audit 2024-04-24T16:25:19.898438+0000 mon.smithi178 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.178:0/2955401543' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:21.485 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:25:21.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:21 smithi178 bash[18765]: cluster 2024-04-24T16:25:20.531749+0000 mgr.smithi178.tjvcci (mgr.14197) 496 : cluster [DBG] pgmap v443: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:21.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:21 smithi178 bash[18765]: cluster 2024-04-24T16:25:20.531749+0000 mgr.smithi178.tjvcci (mgr.14197) 496 : cluster [DBG] pgmap v443: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:21.628 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:21 smithi204 bash[20295]: cluster 2024-04-24T16:25:20.531749+0000 mgr.smithi178.tjvcci (mgr.14197) 496 : cluster [DBG] pgmap v443: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:21.628 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:21 smithi204 bash[20295]: cluster 2024-04-24T16:25:20.531749+0000 mgr.smithi178.tjvcci (mgr.14197) 496 : cluster [DBG] pgmap v443: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:23.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:23 smithi178 bash[18765]: cluster 2024-04-24T16:25:22.532792+0000 mgr.smithi178.tjvcci (mgr.14197) 497 : cluster [DBG] pgmap v444: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:23.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:23 smithi178 bash[18765]: cluster 2024-04-24T16:25:22.532792+0000 mgr.smithi178.tjvcci (mgr.14197) 497 : cluster [DBG] pgmap v444: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:23.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:23 smithi204 bash[20295]: cluster 2024-04-24T16:25:22.532792+0000 mgr.smithi178.tjvcci (mgr.14197) 497 : cluster [DBG] pgmap v444: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:23.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:23 smithi204 bash[20295]: cluster 2024-04-24T16:25:22.532792+0000 mgr.smithi178.tjvcci (mgr.14197) 497 : cluster [DBG] pgmap v444: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:25.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:25 smithi204 bash[20295]: cluster 2024-04-24T16:25:24.533765+0000 mgr.smithi178.tjvcci (mgr.14197) 498 : cluster [DBG] pgmap v445: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:25.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:25 smithi204 bash[20295]: cluster 2024-04-24T16:25:24.533765+0000 mgr.smithi178.tjvcci (mgr.14197) 498 : cluster [DBG] pgmap v445: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:26.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:25 smithi178 bash[18765]: cluster 2024-04-24T16:25:24.533765+0000 mgr.smithi178.tjvcci (mgr.14197) 498 : cluster [DBG] pgmap v445: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:26.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:25 smithi178 bash[18765]: cluster 2024-04-24T16:25:24.533765+0000 mgr.smithi178.tjvcci (mgr.14197) 498 : cluster [DBG] pgmap v445: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:26.251 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:25:27.488 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:25:27.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:27 smithi178 bash[18765]: cluster 2024-04-24T16:25:26.534709+0000 mgr.smithi178.tjvcci (mgr.14197) 499 : cluster [DBG] pgmap v446: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:27.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:27 smithi178 bash[18765]: cluster 2024-04-24T16:25:26.534709+0000 mgr.smithi178.tjvcci (mgr.14197) 499 : cluster [DBG] pgmap v446: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:27.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:27 smithi178 bash[18765]: audit 2024-04-24T16:25:27.400916+0000 mon.smithi178 (mon.0) 579 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:27.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:27 smithi178 bash[18765]: audit 2024-04-24T16:25:27.400916+0000 mon.smithi178 (mon.0) 579 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:27.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:27 smithi178 bash[18765]: audit 2024-04-24T16:25:27.496244+0000 mon.smithi178 (mon.0) 580 : audit [DBG] from='client.? 172.21.15.178:0/1359870947' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:27.833 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:27 smithi178 bash[18765]: audit 2024-04-24T16:25:27.496244+0000 mon.smithi178 (mon.0) 580 : audit [DBG] from='client.? 172.21.15.178:0/1359870947' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:27.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:27 smithi204 bash[20295]: cluster 2024-04-24T16:25:26.534709+0000 mgr.smithi178.tjvcci (mgr.14197) 499 : cluster [DBG] pgmap v446: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:27.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:27 smithi204 bash[20295]: cluster 2024-04-24T16:25:26.534709+0000 mgr.smithi178.tjvcci (mgr.14197) 499 : cluster [DBG] pgmap v446: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:27.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:27 smithi204 bash[20295]: audit 2024-04-24T16:25:27.400916+0000 mon.smithi178 (mon.0) 579 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:27.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:27 smithi204 bash[20295]: audit 2024-04-24T16:25:27.400916+0000 mon.smithi178 (mon.0) 579 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:27.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:27 smithi204 bash[20295]: audit 2024-04-24T16:25:27.496244+0000 mon.smithi178 (mon.0) 580 : audit [DBG] from='client.? 172.21.15.178:0/1359870947' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:27.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:27 smithi204 bash[20295]: audit 2024-04-24T16:25:27.496244+0000 mon.smithi178 (mon.0) 580 : audit [DBG] from='client.? 172.21.15.178:0/1359870947' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:28.132 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:25:29.134 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:25:29.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:29 smithi204 bash[20295]: cluster 2024-04-24T16:25:28.535651+0000 mgr.smithi178.tjvcci (mgr.14197) 500 : cluster [DBG] pgmap v447: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:29.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:29 smithi204 bash[20295]: cluster 2024-04-24T16:25:28.535651+0000 mgr.smithi178.tjvcci (mgr.14197) 500 : cluster [DBG] pgmap v447: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:30.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:29 smithi178 bash[18765]: cluster 2024-04-24T16:25:28.535651+0000 mgr.smithi178.tjvcci (mgr.14197) 500 : cluster [DBG] pgmap v447: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:30.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:29 smithi178 bash[18765]: cluster 2024-04-24T16:25:28.535651+0000 mgr.smithi178.tjvcci (mgr.14197) 500 : cluster [DBG] pgmap v447: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:31.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:31 smithi204 bash[20295]: cluster 2024-04-24T16:25:30.536593+0000 mgr.smithi178.tjvcci (mgr.14197) 501 : cluster [DBG] pgmap v448: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:31.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:31 smithi204 bash[20295]: cluster 2024-04-24T16:25:30.536593+0000 mgr.smithi178.tjvcci (mgr.14197) 501 : cluster [DBG] pgmap v448: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:32.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:31 smithi178 bash[18765]: cluster 2024-04-24T16:25:30.536593+0000 mgr.smithi178.tjvcci (mgr.14197) 501 : cluster [DBG] pgmap v448: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:32.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:31 smithi178 bash[18765]: cluster 2024-04-24T16:25:30.536593+0000 mgr.smithi178.tjvcci (mgr.14197) 501 : cluster [DBG] pgmap v448: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:33.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:33 smithi204 bash[20295]: cluster 2024-04-24T16:25:32.537564+0000 mgr.smithi178.tjvcci (mgr.14197) 502 : cluster [DBG] pgmap v449: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:33.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:33 smithi204 bash[20295]: cluster 2024-04-24T16:25:32.537564+0000 mgr.smithi178.tjvcci (mgr.14197) 502 : cluster [DBG] pgmap v449: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:33.897 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:25:33.921 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:33 smithi178 bash[18765]: cluster 2024-04-24T16:25:32.537564+0000 mgr.smithi178.tjvcci (mgr.14197) 502 : cluster [DBG] pgmap v449: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:33.921 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:33 smithi178 bash[18765]: cluster 2024-04-24T16:25:32.537564+0000 mgr.smithi178.tjvcci (mgr.14197) 502 : cluster [DBG] pgmap v449: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:35.148 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:25:35.794 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:25:35.878 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:35 smithi204 bash[20295]: cluster 2024-04-24T16:25:34.538280+0000 mgr.smithi178.tjvcci (mgr.14197) 503 : cluster [DBG] pgmap v450: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:35.878 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:35 smithi204 bash[20295]: cluster 2024-04-24T16:25:34.538280+0000 mgr.smithi178.tjvcci (mgr.14197) 503 : cluster [DBG] pgmap v450: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:35.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:35 smithi204 bash[20295]: audit 2024-04-24T16:25:35.156502+0000 mon.smithi178 (mon.0) 581 : audit [DBG] from='client.? 172.21.15.178:0/4112252006' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:35.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:35 smithi204 bash[20295]: audit 2024-04-24T16:25:35.156502+0000 mon.smithi178 (mon.0) 581 : audit [DBG] from='client.? 172.21.15.178:0/4112252006' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:36.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:35 smithi178 bash[18765]: cluster 2024-04-24T16:25:34.538280+0000 mgr.smithi178.tjvcci (mgr.14197) 503 : cluster [DBG] pgmap v450: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:36.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:35 smithi178 bash[18765]: cluster 2024-04-24T16:25:34.538280+0000 mgr.smithi178.tjvcci (mgr.14197) 503 : cluster [DBG] pgmap v450: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:36.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:35 smithi178 bash[18765]: audit 2024-04-24T16:25:35.156502+0000 mon.smithi178 (mon.0) 581 : audit [DBG] from='client.? 172.21.15.178:0/4112252006' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:36.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:35 smithi178 bash[18765]: audit 2024-04-24T16:25:35.156502+0000 mon.smithi178 (mon.0) 581 : audit [DBG] from='client.? 172.21.15.178:0/4112252006' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:36.795 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:25:37.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:37 smithi204 bash[20295]: cluster 2024-04-24T16:25:36.539238+0000 mgr.smithi178.tjvcci (mgr.14197) 504 : cluster [DBG] pgmap v451: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:37.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:37 smithi204 bash[20295]: cluster 2024-04-24T16:25:36.539238+0000 mgr.smithi178.tjvcci (mgr.14197) 504 : cluster [DBG] pgmap v451: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:38.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:37 smithi178 bash[18765]: cluster 2024-04-24T16:25:36.539238+0000 mgr.smithi178.tjvcci (mgr.14197) 504 : cluster [DBG] pgmap v451: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:38.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:37 smithi178 bash[18765]: cluster 2024-04-24T16:25:36.539238+0000 mgr.smithi178.tjvcci (mgr.14197) 504 : cluster [DBG] pgmap v451: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:39.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:39 smithi204 bash[20295]: cluster 2024-04-24T16:25:38.540216+0000 mgr.smithi178.tjvcci (mgr.14197) 505 : cluster [DBG] pgmap v452: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:39.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:39 smithi204 bash[20295]: cluster 2024-04-24T16:25:38.540216+0000 mgr.smithi178.tjvcci (mgr.14197) 505 : cluster [DBG] pgmap v452: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:40.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:39 smithi178 bash[18765]: cluster 2024-04-24T16:25:38.540216+0000 mgr.smithi178.tjvcci (mgr.14197) 505 : cluster [DBG] pgmap v452: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:40.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:39 smithi178 bash[18765]: cluster 2024-04-24T16:25:38.540216+0000 mgr.smithi178.tjvcci (mgr.14197) 505 : cluster [DBG] pgmap v452: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:41.552 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:25:41.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:41 smithi178 bash[18765]: cluster 2024-04-24T16:25:40.541193+0000 mgr.smithi178.tjvcci (mgr.14197) 506 : cluster [DBG] pgmap v453: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:41.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:41 smithi178 bash[18765]: cluster 2024-04-24T16:25:40.541193+0000 mgr.smithi178.tjvcci (mgr.14197) 506 : cluster [DBG] pgmap v453: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:41.878 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:41 smithi204 bash[20295]: cluster 2024-04-24T16:25:40.541193+0000 mgr.smithi178.tjvcci (mgr.14197) 506 : cluster [DBG] pgmap v453: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:41.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:41 smithi204 bash[20295]: cluster 2024-04-24T16:25:40.541193+0000 mgr.smithi178.tjvcci (mgr.14197) 506 : cluster [DBG] pgmap v453: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:42.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:42 smithi178 bash[18765]: audit 2024-04-24T16:25:42.401465+0000 mon.smithi178 (mon.0) 582 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:42.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:42 smithi178 bash[18765]: audit 2024-04-24T16:25:42.401465+0000 mon.smithi178 (mon.0) 582 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:42.855 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:25:42.878 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:42 smithi204 bash[20295]: audit 2024-04-24T16:25:42.401465+0000 mon.smithi178 (mon.0) 582 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:42.878 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:42 smithi204 bash[20295]: audit 2024-04-24T16:25:42.401465+0000 mon.smithi178 (mon.0) 582 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:43.440 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:25:43.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:43 smithi178 bash[18765]: cluster 2024-04-24T16:25:42.541691+0000 mgr.smithi178.tjvcci (mgr.14197) 507 : cluster [DBG] pgmap v454: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:43.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:43 smithi178 bash[18765]: cluster 2024-04-24T16:25:42.541691+0000 mgr.smithi178.tjvcci (mgr.14197) 507 : cluster [DBG] pgmap v454: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:43.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:43 smithi178 bash[18765]: audit 2024-04-24T16:25:42.863585+0000 mon.smithi178 (mon.0) 583 : audit [DBG] from='client.? 172.21.15.178:0/4285244488' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:43.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:43 smithi178 bash[18765]: audit 2024-04-24T16:25:42.863585+0000 mon.smithi178 (mon.0) 583 : audit [DBG] from='client.? 172.21.15.178:0/4285244488' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:43.878 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:43 smithi204 bash[20295]: cluster 2024-04-24T16:25:42.541691+0000 mgr.smithi178.tjvcci (mgr.14197) 507 : cluster [DBG] pgmap v454: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:43.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:43 smithi204 bash[20295]: cluster 2024-04-24T16:25:42.541691+0000 mgr.smithi178.tjvcci (mgr.14197) 507 : cluster [DBG] pgmap v454: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:43.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:43 smithi204 bash[20295]: audit 2024-04-24T16:25:42.863585+0000 mon.smithi178 (mon.0) 583 : audit [DBG] from='client.? 172.21.15.178:0/4285244488' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:43.879 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:43 smithi204 bash[20295]: audit 2024-04-24T16:25:42.863585+0000 mon.smithi178 (mon.0) 583 : audit [DBG] from='client.? 172.21.15.178:0/4285244488' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:44.441 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:25:46.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:45 smithi178 bash[18765]: cluster 2024-04-24T16:25:44.542579+0000 mgr.smithi178.tjvcci (mgr.14197) 508 : cluster [DBG] pgmap v455: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:46.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:45 smithi178 bash[18765]: cluster 2024-04-24T16:25:44.542579+0000 mgr.smithi178.tjvcci (mgr.14197) 508 : cluster [DBG] pgmap v455: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:46.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:45 smithi204 bash[20295]: cluster 2024-04-24T16:25:44.542579+0000 mgr.smithi178.tjvcci (mgr.14197) 508 : cluster [DBG] pgmap v455: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:46.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:45 smithi204 bash[20295]: cluster 2024-04-24T16:25:44.542579+0000 mgr.smithi178.tjvcci (mgr.14197) 508 : cluster [DBG] pgmap v455: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:47.964 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:47 smithi204 bash[20295]: cluster 2024-04-24T16:25:46.543515+0000 mgr.smithi178.tjvcci (mgr.14197) 509 : cluster [DBG] pgmap v456: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:47.964 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:47 smithi204 bash[20295]: cluster 2024-04-24T16:25:46.543515+0000 mgr.smithi178.tjvcci (mgr.14197) 509 : cluster [DBG] pgmap v456: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:48.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:47 smithi178 bash[18765]: cluster 2024-04-24T16:25:46.543515+0000 mgr.smithi178.tjvcci (mgr.14197) 509 : cluster [DBG] pgmap v456: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:48.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:47 smithi178 bash[18765]: cluster 2024-04-24T16:25:46.543515+0000 mgr.smithi178.tjvcci (mgr.14197) 509 : cluster [DBG] pgmap v456: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:49.216 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:25:50.016 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:49 smithi178 bash[18765]: cluster 2024-04-24T16:25:48.544513+0000 mgr.smithi178.tjvcci (mgr.14197) 510 : cluster [DBG] pgmap v457: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:50.016 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:49 smithi178 bash[18765]: cluster 2024-04-24T16:25:48.544513+0000 mgr.smithi178.tjvcci (mgr.14197) 510 : cluster [DBG] pgmap v457: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:50.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:49 smithi204 bash[20295]: cluster 2024-04-24T16:25:48.544513+0000 mgr.smithi178.tjvcci (mgr.14197) 510 : cluster [DBG] pgmap v457: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:50.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:49 smithi204 bash[20295]: cluster 2024-04-24T16:25:48.544513+0000 mgr.smithi178.tjvcci (mgr.14197) 510 : cluster [DBG] pgmap v457: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:50.409 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:25:50.739 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:50 smithi178 bash[18765]: audit 2024-04-24T16:25:50.417743+0000 mon.smithi178 (mon.0) 584 : audit [DBG] from='client.? 172.21.15.178:0/2793631667' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:50.739 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:50 smithi178 bash[18765]: audit 2024-04-24T16:25:50.417743+0000 mon.smithi178 (mon.0) 584 : audit [DBG] from='client.? 172.21.15.178:0/2793631667' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:50.995 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:25:51.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:50 smithi204 bash[20295]: audit 2024-04-24T16:25:50.417743+0000 mon.smithi178 (mon.0) 584 : audit [DBG] from='client.? 172.21.15.178:0/2793631667' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:51.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:50 smithi204 bash[20295]: audit 2024-04-24T16:25:50.417743+0000 mon.smithi178 (mon.0) 584 : audit [DBG] from='client.? 172.21.15.178:0/2793631667' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:51.997 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:25:52.007 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:51 smithi178 bash[18765]: cluster 2024-04-24T16:25:50.545501+0000 mgr.smithi178.tjvcci (mgr.14197) 511 : cluster [DBG] pgmap v458: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:52.008 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:51 smithi178 bash[18765]: cluster 2024-04-24T16:25:50.545501+0000 mgr.smithi178.tjvcci (mgr.14197) 511 : cluster [DBG] pgmap v458: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:52.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:51 smithi204 bash[20295]: cluster 2024-04-24T16:25:50.545501+0000 mgr.smithi178.tjvcci (mgr.14197) 511 : cluster [DBG] pgmap v458: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:52.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:51 smithi204 bash[20295]: cluster 2024-04-24T16:25:50.545501+0000 mgr.smithi178.tjvcci (mgr.14197) 511 : cluster [DBG] pgmap v458: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:54.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:53 smithi178 bash[18765]: cluster 2024-04-24T16:25:52.546509+0000 mgr.smithi178.tjvcci (mgr.14197) 512 : cluster [DBG] pgmap v459: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:54.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:53 smithi178 bash[18765]: cluster 2024-04-24T16:25:52.546509+0000 mgr.smithi178.tjvcci (mgr.14197) 512 : cluster [DBG] pgmap v459: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:54.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:53 smithi204 bash[20295]: cluster 2024-04-24T16:25:52.546509+0000 mgr.smithi178.tjvcci (mgr.14197) 512 : cluster [DBG] pgmap v459: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:54.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:53 smithi204 bash[20295]: cluster 2024-04-24T16:25:52.546509+0000 mgr.smithi178.tjvcci (mgr.14197) 512 : cluster [DBG] pgmap v459: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:56.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:55 smithi178 bash[18765]: cluster 2024-04-24T16:25:54.547504+0000 mgr.smithi178.tjvcci (mgr.14197) 513 : cluster [DBG] pgmap v460: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:56.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:55 smithi178 bash[18765]: cluster 2024-04-24T16:25:54.547504+0000 mgr.smithi178.tjvcci (mgr.14197) 513 : cluster [DBG] pgmap v460: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:56.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:55 smithi204 bash[20295]: cluster 2024-04-24T16:25:54.547504+0000 mgr.smithi178.tjvcci (mgr.14197) 513 : cluster [DBG] pgmap v460: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:56.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:55 smithi204 bash[20295]: cluster 2024-04-24T16:25:54.547504+0000 mgr.smithi178.tjvcci (mgr.14197) 513 : cluster [DBG] pgmap v460: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:56.759 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:25:57.965 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:57 smithi204 bash[20295]: cluster 2024-04-24T16:25:56.548508+0000 mgr.smithi178.tjvcci (mgr.14197) 514 : cluster [DBG] pgmap v461: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:57.965 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:57 smithi204 bash[20295]: cluster 2024-04-24T16:25:56.548508+0000 mgr.smithi178.tjvcci (mgr.14197) 514 : cluster [DBG] pgmap v461: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:57.965 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:57 smithi204 bash[20295]: audit 2024-04-24T16:25:57.402346+0000 mon.smithi178 (mon.0) 585 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:57.965 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:57 smithi204 bash[20295]: audit 2024-04-24T16:25:57.402346+0000 mon.smithi178 (mon.0) 585 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:57.983 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:25:57.997 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:57 smithi178 bash[18765]: cluster 2024-04-24T16:25:56.548508+0000 mgr.smithi178.tjvcci (mgr.14197) 514 : cluster [DBG] pgmap v461: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:57.997 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:57 smithi178 bash[18765]: cluster 2024-04-24T16:25:56.548508+0000 mgr.smithi178.tjvcci (mgr.14197) 514 : cluster [DBG] pgmap v461: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:25:57.997 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:57 smithi178 bash[18765]: audit 2024-04-24T16:25:57.402346+0000 mon.smithi178 (mon.0) 585 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:57.997 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:57 smithi178 bash[18765]: audit 2024-04-24T16:25:57.402346+0000 mon.smithi178 (mon.0) 585 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:25:58.593 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:25:59.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:58 smithi178 bash[18765]: audit 2024-04-24T16:25:57.991159+0000 mon.smithi178 (mon.0) 586 : audit [DBG] from='client.? 172.21.15.178:0/4052143699' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:59.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:58 smithi178 bash[18765]: audit 2024-04-24T16:25:57.991159+0000 mon.smithi178 (mon.0) 586 : audit [DBG] from='client.? 172.21.15.178:0/4052143699' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:59.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:58 smithi204 bash[20295]: audit 2024-04-24T16:25:57.991159+0000 mon.smithi178 (mon.0) 586 : audit [DBG] from='client.? 172.21.15.178:0/4052143699' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:59.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:58 smithi204 bash[20295]: audit 2024-04-24T16:25:57.991159+0000 mon.smithi178 (mon.0) 586 : audit [DBG] from='client.? 172.21.15.178:0/4052143699' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:25:59.595 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:26:00.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:59 smithi178 bash[18765]: cluster 2024-04-24T16:25:58.549531+0000 mgr.smithi178.tjvcci (mgr.14197) 515 : cluster [DBG] pgmap v462: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:00.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:25:59 smithi178 bash[18765]: cluster 2024-04-24T16:25:58.549531+0000 mgr.smithi178.tjvcci (mgr.14197) 515 : cluster [DBG] pgmap v462: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:00.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:59 smithi204 bash[20295]: cluster 2024-04-24T16:25:58.549531+0000 mgr.smithi178.tjvcci (mgr.14197) 515 : cluster [DBG] pgmap v462: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:00.130 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:25:59 smithi204 bash[20295]: cluster 2024-04-24T16:25:58.549531+0000 mgr.smithi178.tjvcci (mgr.14197) 515 : cluster [DBG] pgmap v462: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:02.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:01 smithi178 bash[18765]: cluster 2024-04-24T16:26:00.550571+0000 mgr.smithi178.tjvcci (mgr.14197) 516 : cluster [DBG] pgmap v463: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:02.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:01 smithi178 bash[18765]: cluster 2024-04-24T16:26:00.550571+0000 mgr.smithi178.tjvcci (mgr.14197) 516 : cluster [DBG] pgmap v463: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:02.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:01 smithi204 bash[20295]: cluster 2024-04-24T16:26:00.550571+0000 mgr.smithi178.tjvcci (mgr.14197) 516 : cluster [DBG] pgmap v463: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:02.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:01 smithi204 bash[20295]: cluster 2024-04-24T16:26:00.550571+0000 mgr.smithi178.tjvcci (mgr.14197) 516 : cluster [DBG] pgmap v463: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:04.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:03 smithi178 bash[18765]: cluster 2024-04-24T16:26:02.551612+0000 mgr.smithi178.tjvcci (mgr.14197) 517 : cluster [DBG] pgmap v464: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:04.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:03 smithi178 bash[18765]: cluster 2024-04-24T16:26:02.551612+0000 mgr.smithi178.tjvcci (mgr.14197) 517 : cluster [DBG] pgmap v464: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:04.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:03 smithi204 bash[20295]: cluster 2024-04-24T16:26:02.551612+0000 mgr.smithi178.tjvcci (mgr.14197) 517 : cluster [DBG] pgmap v464: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:04.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:03 smithi204 bash[20295]: cluster 2024-04-24T16:26:02.551612+0000 mgr.smithi178.tjvcci (mgr.14197) 517 : cluster [DBG] pgmap v464: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:04.366 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:26:05.561 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:26:05.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:05 smithi178 bash[18765]: cluster 2024-04-24T16:26:04.552594+0000 mgr.smithi178.tjvcci (mgr.14197) 518 : cluster [DBG] pgmap v465: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:05.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:05 smithi178 bash[18765]: cluster 2024-04-24T16:26:04.552594+0000 mgr.smithi178.tjvcci (mgr.14197) 518 : cluster [DBG] pgmap v465: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:05.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:05 smithi178 bash[18765]: audit 2024-04-24T16:26:05.569236+0000 mon.smithi178 (mon.0) 587 : audit [DBG] from='client.? 172.21.15.178:0/2394539487' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:05.832 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:05 smithi178 bash[18765]: audit 2024-04-24T16:26:05.569236+0000 mon.smithi178 (mon.0) 587 : audit [DBG] from='client.? 172.21.15.178:0/2394539487' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:06.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:05 smithi204 bash[20295]: cluster 2024-04-24T16:26:04.552594+0000 mgr.smithi178.tjvcci (mgr.14197) 518 : cluster [DBG] pgmap v465: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:06.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:05 smithi204 bash[20295]: cluster 2024-04-24T16:26:04.552594+0000 mgr.smithi178.tjvcci (mgr.14197) 518 : cluster [DBG] pgmap v465: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:06.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:05 smithi204 bash[20295]: audit 2024-04-24T16:26:05.569236+0000 mon.smithi178 (mon.0) 587 : audit [DBG] from='client.? 172.21.15.178:0/2394539487' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:06.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:05 smithi204 bash[20295]: audit 2024-04-24T16:26:05.569236+0000 mon.smithi178 (mon.0) 587 : audit [DBG] from='client.? 172.21.15.178:0/2394539487' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:06.207 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:26:07.209 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:26:07.965 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:07 smithi204 bash[20295]: cluster 2024-04-24T16:26:06.553600+0000 mgr.smithi178.tjvcci (mgr.14197) 519 : cluster [DBG] pgmap v466: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:07.966 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:07 smithi204 bash[20295]: cluster 2024-04-24T16:26:06.553600+0000 mgr.smithi178.tjvcci (mgr.14197) 519 : cluster [DBG] pgmap v466: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:08.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:07 smithi178 bash[18765]: cluster 2024-04-24T16:26:06.553600+0000 mgr.smithi178.tjvcci (mgr.14197) 519 : cluster [DBG] pgmap v466: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:08.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:07 smithi178 bash[18765]: cluster 2024-04-24T16:26:06.553600+0000 mgr.smithi178.tjvcci (mgr.14197) 519 : cluster [DBG] pgmap v466: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:10.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:09 smithi178 bash[18765]: cluster 2024-04-24T16:26:08.554577+0000 mgr.smithi178.tjvcci (mgr.14197) 520 : cluster [DBG] pgmap v467: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:10.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:09 smithi178 bash[18765]: cluster 2024-04-24T16:26:08.554577+0000 mgr.smithi178.tjvcci (mgr.14197) 520 : cluster [DBG] pgmap v467: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:10.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:09 smithi204 bash[20295]: cluster 2024-04-24T16:26:08.554577+0000 mgr.smithi178.tjvcci (mgr.14197) 520 : cluster [DBG] pgmap v467: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:10.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:09 smithi204 bash[20295]: cluster 2024-04-24T16:26:08.554577+0000 mgr.smithi178.tjvcci (mgr.14197) 520 : cluster [DBG] pgmap v467: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:11.976 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:26:11.996 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:11 smithi178 bash[18765]: cluster 2024-04-24T16:26:10.555578+0000 mgr.smithi178.tjvcci (mgr.14197) 521 : cluster [DBG] pgmap v468: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:11.996 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:11 smithi178 bash[18765]: cluster 2024-04-24T16:26:10.555578+0000 mgr.smithi178.tjvcci (mgr.14197) 521 : cluster [DBG] pgmap v468: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:12.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:11 smithi204 bash[20295]: cluster 2024-04-24T16:26:10.555578+0000 mgr.smithi178.tjvcci (mgr.14197) 521 : cluster [DBG] pgmap v468: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:12.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:11 smithi204 bash[20295]: cluster 2024-04-24T16:26:10.555578+0000 mgr.smithi178.tjvcci (mgr.14197) 521 : cluster [DBG] pgmap v468: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:12.966 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:12 smithi204 bash[20295]: audit 2024-04-24T16:26:12.402806+0000 mon.smithi178 (mon.0) 588 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:12.966 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:12 smithi204 bash[20295]: audit 2024-04-24T16:26:12.402806+0000 mon.smithi178 (mon.0) 588 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:13.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:12 smithi178 bash[18765]: audit 2024-04-24T16:26:12.402806+0000 mon.smithi178 (mon.0) 588 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:13.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:12 smithi178 bash[18765]: audit 2024-04-24T16:26:12.402806+0000 mon.smithi178 (mon.0) 588 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:13.144 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:26:13.790 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:26:14.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:13 smithi178 bash[18765]: cluster 2024-04-24T16:26:12.556545+0000 mgr.smithi178.tjvcci (mgr.14197) 522 : cluster [DBG] pgmap v469: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:14.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:13 smithi178 bash[18765]: cluster 2024-04-24T16:26:12.556545+0000 mgr.smithi178.tjvcci (mgr.14197) 522 : cluster [DBG] pgmap v469: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:14.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:13 smithi178 bash[18765]: audit 2024-04-24T16:26:13.152705+0000 mon.smithi178 (mon.0) 589 : audit [DBG] from='client.? 172.21.15.178:0/74029379' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:14.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:13 smithi178 bash[18765]: audit 2024-04-24T16:26:13.152705+0000 mon.smithi178 (mon.0) 589 : audit [DBG] from='client.? 172.21.15.178:0/74029379' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:14.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:13 smithi204 bash[20295]: cluster 2024-04-24T16:26:12.556545+0000 mgr.smithi178.tjvcci (mgr.14197) 522 : cluster [DBG] pgmap v469: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:14.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:13 smithi204 bash[20295]: cluster 2024-04-24T16:26:12.556545+0000 mgr.smithi178.tjvcci (mgr.14197) 522 : cluster [DBG] pgmap v469: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:14.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:13 smithi204 bash[20295]: audit 2024-04-24T16:26:13.152705+0000 mon.smithi178 (mon.0) 589 : audit [DBG] from='client.? 172.21.15.178:0/74029379' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:14.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:13 smithi204 bash[20295]: audit 2024-04-24T16:26:13.152705+0000 mon.smithi178 (mon.0) 589 : audit [DBG] from='client.? 172.21.15.178:0/74029379' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:14.791 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:26:16.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:15 smithi178 bash[18765]: cluster 2024-04-24T16:26:14.557514+0000 mgr.smithi178.tjvcci (mgr.14197) 523 : cluster [DBG] pgmap v470: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:16.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:15 smithi178 bash[18765]: cluster 2024-04-24T16:26:14.557514+0000 mgr.smithi178.tjvcci (mgr.14197) 523 : cluster [DBG] pgmap v470: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:16.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:15 smithi204 bash[20295]: cluster 2024-04-24T16:26:14.557514+0000 mgr.smithi178.tjvcci (mgr.14197) 523 : cluster [DBG] pgmap v470: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:16.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:15 smithi204 bash[20295]: cluster 2024-04-24T16:26:14.557514+0000 mgr.smithi178.tjvcci (mgr.14197) 523 : cluster [DBG] pgmap v470: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:18.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:17 smithi178 bash[18765]: cluster 2024-04-24T16:26:16.558514+0000 mgr.smithi178.tjvcci (mgr.14197) 524 : cluster [DBG] pgmap v471: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:18.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:17 smithi178 bash[18765]: cluster 2024-04-24T16:26:16.558514+0000 mgr.smithi178.tjvcci (mgr.14197) 524 : cluster [DBG] pgmap v471: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:18.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:17 smithi204 bash[20295]: cluster 2024-04-24T16:26:16.558514+0000 mgr.smithi178.tjvcci (mgr.14197) 524 : cluster [DBG] pgmap v471: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:18.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:17 smithi204 bash[20295]: cluster 2024-04-24T16:26:16.558514+0000 mgr.smithi178.tjvcci (mgr.14197) 524 : cluster [DBG] pgmap v471: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:19.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:18 smithi178 bash[18765]: audit 2024-04-24T16:26:18.644100+0000 mon.smithi178 (mon.0) 590 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:26:19.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:18 smithi178 bash[18765]: audit 2024-04-24T16:26:18.644100+0000 mon.smithi178 (mon.0) 590 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:26:19.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:18 smithi204 bash[20295]: audit 2024-04-24T16:26:18.644100+0000 mon.smithi178 (mon.0) 590 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:26:19.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:18 smithi204 bash[20295]: audit 2024-04-24T16:26:18.644100+0000 mon.smithi178 (mon.0) 590 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T16:26:19.553 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:26:19.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:19 smithi178 bash[18765]: cluster 2024-04-24T16:26:18.559505+0000 mgr.smithi178.tjvcci (mgr.14197) 525 : cluster [DBG] pgmap v472: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:19.831 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:19 smithi178 bash[18765]: cluster 2024-04-24T16:26:18.559505+0000 mgr.smithi178.tjvcci (mgr.14197) 525 : cluster [DBG] pgmap v472: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:20.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:19 smithi204 bash[20295]: cluster 2024-04-24T16:26:18.559505+0000 mgr.smithi178.tjvcci (mgr.14197) 525 : cluster [DBG] pgmap v472: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:20.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:19 smithi204 bash[20295]: cluster 2024-04-24T16:26:18.559505+0000 mgr.smithi178.tjvcci (mgr.14197) 525 : cluster [DBG] pgmap v472: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:20.623 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:26:21.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:20 smithi178 bash[18765]: audit 2024-04-24T16:26:20.631536+0000 mon.smithi178 (mon.0) 591 : audit [DBG] from='client.? 172.21.15.178:0/1050301390' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:21.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:20 smithi178 bash[18765]: audit 2024-04-24T16:26:20.631536+0000 mon.smithi178 (mon.0) 591 : audit [DBG] from='client.? 172.21.15.178:0/1050301390' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:21.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:20 smithi204 bash[20295]: audit 2024-04-24T16:26:20.631536+0000 mon.smithi178 (mon.0) 591 : audit [DBG] from='client.? 172.21.15.178:0/1050301390' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:21.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:20 smithi204 bash[20295]: audit 2024-04-24T16:26:20.631536+0000 mon.smithi178 (mon.0) 591 : audit [DBG] from='client.? 172.21.15.178:0/1050301390' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:21.338 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:26:22.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:21 smithi178 bash[18765]: cluster 2024-04-24T16:26:20.560458+0000 mgr.smithi178.tjvcci (mgr.14197) 526 : cluster [DBG] pgmap v473: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:22.081 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:21 smithi178 bash[18765]: cluster 2024-04-24T16:26:20.560458+0000 mgr.smithi178.tjvcci (mgr.14197) 526 : cluster [DBG] pgmap v473: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:22.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:21 smithi204 bash[20295]: cluster 2024-04-24T16:26:20.560458+0000 mgr.smithi178.tjvcci (mgr.14197) 526 : cluster [DBG] pgmap v473: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:22.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:21 smithi204 bash[20295]: cluster 2024-04-24T16:26:20.560458+0000 mgr.smithi178.tjvcci (mgr.14197) 526 : cluster [DBG] pgmap v473: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:22.339 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:26:24.082 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:23 smithi178 bash[18765]: cluster 2024-04-24T16:26:22.561365+0000 mgr.smithi178.tjvcci (mgr.14197) 527 : cluster [DBG] pgmap v474: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:24.083 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:23 smithi178 bash[18765]: cluster 2024-04-24T16:26:22.561365+0000 mgr.smithi178.tjvcci (mgr.14197) 527 : cluster [DBG] pgmap v474: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:24.128 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:23 smithi204 bash[20295]: cluster 2024-04-24T16:26:22.561365+0000 mgr.smithi178.tjvcci (mgr.14197) 527 : cluster [DBG] pgmap v474: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:24.129 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:23 smithi204 bash[20295]: cluster 2024-04-24T16:26:22.561365+0000 mgr.smithi178.tjvcci (mgr.14197) 527 : cluster [DBG] pgmap v474: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:25.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:25 smithi178 bash[18765]: audit 2024-04-24T16:26:24.051825+0000 mon.smithi178 (mon.0) 592 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:26:25.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:25 smithi178 bash[18765]: audit 2024-04-24T16:26:24.051825+0000 mon.smithi178 (mon.0) 592 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:26:25.378 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:25 smithi204 bash[20295]: audit 2024-04-24T16:26:24.051825+0000 mon.smithi178 (mon.0) 592 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:26:25.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:25 smithi204 bash[20295]: audit 2024-04-24T16:26:24.051825+0000 mon.smithi178 (mon.0) 592 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:26:26.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:26 smithi178 bash[18765]: cluster 2024-04-24T16:26:24.562355+0000 mgr.smithi178.tjvcci (mgr.14197) 528 : cluster [DBG] pgmap v475: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:26.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:26 smithi178 bash[18765]: cluster 2024-04-24T16:26:24.562355+0000 mgr.smithi178.tjvcci (mgr.14197) 528 : cluster [DBG] pgmap v475: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:26.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:26 smithi204 bash[20295]: cluster 2024-04-24T16:26:24.562355+0000 mgr.smithi178.tjvcci (mgr.14197) 528 : cluster [DBG] pgmap v475: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:26.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:26 smithi204 bash[20295]: cluster 2024-04-24T16:26:24.562355+0000 mgr.smithi178.tjvcci (mgr.14197) 528 : cluster [DBG] pgmap v475: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:26.883 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:26:28.038 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:26:28.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:28 smithi178 bash[18765]: cluster 2024-04-24T16:26:26.563343+0000 mgr.smithi178.tjvcci (mgr.14197) 529 : cluster [DBG] pgmap v476: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:28.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:28 smithi178 bash[18765]: cluster 2024-04-24T16:26:26.563343+0000 mgr.smithi178.tjvcci (mgr.14197) 529 : cluster [DBG] pgmap v476: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:28.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:28 smithi178 bash[18765]: audit 2024-04-24T16:26:27.403413+0000 mon.smithi178 (mon.0) 593 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:28.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:28 smithi178 bash[18765]: audit 2024-04-24T16:26:27.403413+0000 mon.smithi178 (mon.0) 593 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:28.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:28 smithi178 bash[18765]: audit 2024-04-24T16:26:28.046320+0000 mon.smithi178 (mon.0) 594 : audit [DBG] from='client.? 172.21.15.178:0/2487453891' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:28.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:28 smithi178 bash[18765]: audit 2024-04-24T16:26:28.046320+0000 mon.smithi178 (mon.0) 594 : audit [DBG] from='client.? 172.21.15.178:0/2487453891' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:28 smithi204 bash[20295]: cluster 2024-04-24T16:26:26.563343+0000 mgr.smithi178.tjvcci (mgr.14197) 529 : cluster [DBG] pgmap v476: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:28 smithi204 bash[20295]: cluster 2024-04-24T16:26:26.563343+0000 mgr.smithi178.tjvcci (mgr.14197) 529 : cluster [DBG] pgmap v476: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:28 smithi204 bash[20295]: audit 2024-04-24T16:26:27.403413+0000 mon.smithi178 (mon.0) 593 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:28 smithi204 bash[20295]: audit 2024-04-24T16:26:27.403413+0000 mon.smithi178 (mon.0) 593 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:28 smithi204 bash[20295]: audit 2024-04-24T16:26:28.046320+0000 mon.smithi178 (mon.0) 594 : audit [DBG] from='client.? 172.21.15.178:0/2487453891' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:28.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:28 smithi204 bash[20295]: audit 2024-04-24T16:26:28.046320+0000 mon.smithi178 (mon.0) 594 : audit [DBG] from='client.? 172.21.15.178:0/2487453891' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:28.715 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:26:29.716 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:26:30.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:30 smithi178 bash[18765]: cluster 2024-04-24T16:26:28.564308+0000 mgr.smithi178.tjvcci (mgr.14197) 530 : cluster [DBG] pgmap v477: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:30.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:30 smithi178 bash[18765]: cluster 2024-04-24T16:26:28.564308+0000 mgr.smithi178.tjvcci (mgr.14197) 530 : cluster [DBG] pgmap v477: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:30.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:30 smithi204 bash[20295]: cluster 2024-04-24T16:26:28.564308+0000 mgr.smithi178.tjvcci (mgr.14197) 530 : cluster [DBG] pgmap v477: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:30.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:30 smithi204 bash[20295]: cluster 2024-04-24T16:26:28.564308+0000 mgr.smithi178.tjvcci (mgr.14197) 530 : cluster [DBG] pgmap v477: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:32 smithi178 bash[18765]: cluster 2024-04-24T16:26:30.565265+0000 mgr.smithi178.tjvcci (mgr.14197) 531 : cluster [DBG] pgmap v478: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:32 smithi178 bash[18765]: cluster 2024-04-24T16:26:30.565265+0000 mgr.smithi178.tjvcci (mgr.14197) 531 : cluster [DBG] pgmap v478: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:32 smithi178 bash[18765]: audit 2024-04-24T16:26:31.558056+0000 mon.smithi178 (mon.0) 595 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:26:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:32 smithi178 bash[18765]: audit 2024-04-24T16:26:31.558056+0000 mon.smithi178 (mon.0) 595 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:26:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:32 smithi178 bash[18765]: audit 2024-04-24T16:26:31.559995+0000 mon.smithi178 (mon.0) 596 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:26:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:32 smithi178 bash[18765]: audit 2024-04-24T16:26:31.559995+0000 mon.smithi178 (mon.0) 596 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:26:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:32 smithi178 bash[18765]: audit 2024-04-24T16:26:31.571548+0000 mon.smithi178 (mon.0) 597 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:26:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:32 smithi178 bash[18765]: audit 2024-04-24T16:26:31.571548+0000 mon.smithi178 (mon.0) 597 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:26:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:32 smithi178 bash[18765]: audit 2024-04-24T16:26:31.579320+0000 mon.smithi178 (mon.0) 598 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:26:32.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:32 smithi178 bash[18765]: audit 2024-04-24T16:26:31.579320+0000 mon.smithi178 (mon.0) 598 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:26:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:32 smithi204 bash[20295]: cluster 2024-04-24T16:26:30.565265+0000 mgr.smithi178.tjvcci (mgr.14197) 531 : cluster [DBG] pgmap v478: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:32 smithi204 bash[20295]: cluster 2024-04-24T16:26:30.565265+0000 mgr.smithi178.tjvcci (mgr.14197) 531 : cluster [DBG] pgmap v478: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:32 smithi204 bash[20295]: audit 2024-04-24T16:26:31.558056+0000 mon.smithi178 (mon.0) 595 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:26:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:32 smithi204 bash[20295]: audit 2024-04-24T16:26:31.558056+0000 mon.smithi178 (mon.0) 595 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T16:26:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:32 smithi204 bash[20295]: audit 2024-04-24T16:26:31.559995+0000 mon.smithi178 (mon.0) 596 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:26:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:32 smithi204 bash[20295]: audit 2024-04-24T16:26:31.559995+0000 mon.smithi178 (mon.0) 596 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T16:26:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:32 smithi204 bash[20295]: audit 2024-04-24T16:26:31.571548+0000 mon.smithi178 (mon.0) 597 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:26:32.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:32 smithi204 bash[20295]: audit 2024-04-24T16:26:31.571548+0000 mon.smithi178 (mon.0) 597 : audit [INF] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' 2024-04-24T16:26:32.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:32 smithi204 bash[20295]: audit 2024-04-24T16:26:31.579320+0000 mon.smithi178 (mon.0) 598 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:26:32.380 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:32 smithi204 bash[20295]: audit 2024-04-24T16:26:31.579320+0000 mon.smithi178 (mon.0) 598 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T16:26:33.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:33 smithi178 bash[18765]: cluster 2024-04-24T16:26:31.562924+0000 mgr.smithi178.tjvcci (mgr.14197) 532 : cluster [DBG] pgmap v479: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:33.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:33 smithi178 bash[18765]: cluster 2024-04-24T16:26:31.562924+0000 mgr.smithi178.tjvcci (mgr.14197) 532 : cluster [DBG] pgmap v479: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:33.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:33 smithi178 bash[18765]: cluster 2024-04-24T16:26:31.564120+0000 mgr.smithi178.tjvcci (mgr.14197) 533 : cluster [DBG] pgmap v480: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:33.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:33 smithi178 bash[18765]: cluster 2024-04-24T16:26:31.564120+0000 mgr.smithi178.tjvcci (mgr.14197) 533 : cluster [DBG] pgmap v480: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:33.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:33 smithi204 bash[20295]: cluster 2024-04-24T16:26:31.562924+0000 mgr.smithi178.tjvcci (mgr.14197) 532 : cluster [DBG] pgmap v479: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:33.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:33 smithi204 bash[20295]: cluster 2024-04-24T16:26:31.562924+0000 mgr.smithi178.tjvcci (mgr.14197) 532 : cluster [DBG] pgmap v479: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:33.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:33 smithi204 bash[20295]: cluster 2024-04-24T16:26:31.564120+0000 mgr.smithi178.tjvcci (mgr.14197) 533 : cluster [DBG] pgmap v480: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:33.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:33 smithi204 bash[20295]: cluster 2024-04-24T16:26:31.564120+0000 mgr.smithi178.tjvcci (mgr.14197) 533 : cluster [DBG] pgmap v480: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:34.482 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:26:35.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:35 smithi178 bash[18765]: cluster 2024-04-24T16:26:33.565117+0000 mgr.smithi178.tjvcci (mgr.14197) 534 : cluster [DBG] pgmap v481: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:35.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:35 smithi178 bash[18765]: cluster 2024-04-24T16:26:33.565117+0000 mgr.smithi178.tjvcci (mgr.14197) 534 : cluster [DBG] pgmap v481: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:35.378 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:35 smithi204 bash[20295]: cluster 2024-04-24T16:26:33.565117+0000 mgr.smithi178.tjvcci (mgr.14197) 534 : cluster [DBG] pgmap v481: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:35.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:35 smithi204 bash[20295]: cluster 2024-04-24T16:26:33.565117+0000 mgr.smithi178.tjvcci (mgr.14197) 534 : cluster [DBG] pgmap v481: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:35.720 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:26:36.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:36 smithi204 bash[20295]: audit 2024-04-24T16:26:35.727629+0000 mon.smithi178 (mon.0) 599 : audit [DBG] from='client.? 172.21.15.178:0/703703472' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:36.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:36 smithi204 bash[20295]: audit 2024-04-24T16:26:35.727629+0000 mon.smithi178 (mon.0) 599 : audit [DBG] from='client.? 172.21.15.178:0/703703472' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:36.404 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:36 smithi178 bash[18765]: audit 2024-04-24T16:26:35.727629+0000 mon.smithi178 (mon.0) 599 : audit [DBG] from='client.? 172.21.15.178:0/703703472' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:36.404 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:36 smithi178 bash[18765]: audit 2024-04-24T16:26:35.727629+0000 mon.smithi178 (mon.0) 599 : audit [DBG] from='client.? 172.21.15.178:0/703703472' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:36.405 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:26:37.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:37 smithi204 bash[20295]: cluster 2024-04-24T16:26:35.566087+0000 mgr.smithi178.tjvcci (mgr.14197) 535 : cluster [DBG] pgmap v482: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:37.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:37 smithi204 bash[20295]: cluster 2024-04-24T16:26:35.566087+0000 mgr.smithi178.tjvcci (mgr.14197) 535 : cluster [DBG] pgmap v482: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:37.407 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:26:37.418 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:37 smithi178 bash[18765]: cluster 2024-04-24T16:26:35.566087+0000 mgr.smithi178.tjvcci (mgr.14197) 535 : cluster [DBG] pgmap v482: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:37.418 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:37 smithi178 bash[18765]: cluster 2024-04-24T16:26:35.566087+0000 mgr.smithi178.tjvcci (mgr.14197) 535 : cluster [DBG] pgmap v482: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:39.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:39 smithi204 bash[20295]: cluster 2024-04-24T16:26:37.566991+0000 mgr.smithi178.tjvcci (mgr.14197) 536 : cluster [DBG] pgmap v483: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:39.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:39 smithi204 bash[20295]: cluster 2024-04-24T16:26:37.566991+0000 mgr.smithi178.tjvcci (mgr.14197) 536 : cluster [DBG] pgmap v483: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:39.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:39 smithi178 bash[18765]: cluster 2024-04-24T16:26:37.566991+0000 mgr.smithi178.tjvcci (mgr.14197) 536 : cluster [DBG] pgmap v483: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:39.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:39 smithi178 bash[18765]: cluster 2024-04-24T16:26:37.566991+0000 mgr.smithi178.tjvcci (mgr.14197) 536 : cluster [DBG] pgmap v483: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:41.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:41 smithi178 bash[18765]: cluster 2024-04-24T16:26:39.567978+0000 mgr.smithi178.tjvcci (mgr.14197) 537 : cluster [DBG] pgmap v484: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:41.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:41 smithi178 bash[18765]: cluster 2024-04-24T16:26:39.567978+0000 mgr.smithi178.tjvcci (mgr.14197) 537 : cluster [DBG] pgmap v484: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:41.378 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:41 smithi204 bash[20295]: cluster 2024-04-24T16:26:39.567978+0000 mgr.smithi178.tjvcci (mgr.14197) 537 : cluster [DBG] pgmap v484: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:41.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:41 smithi204 bash[20295]: cluster 2024-04-24T16:26:39.567978+0000 mgr.smithi178.tjvcci (mgr.14197) 537 : cluster [DBG] pgmap v484: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:42.175 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:26:43.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:43 smithi178 bash[18765]: cluster 2024-04-24T16:26:41.568928+0000 mgr.smithi178.tjvcci (mgr.14197) 538 : cluster [DBG] pgmap v485: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:43.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:43 smithi178 bash[18765]: cluster 2024-04-24T16:26:41.568928+0000 mgr.smithi178.tjvcci (mgr.14197) 538 : cluster [DBG] pgmap v485: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:43.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:43 smithi178 bash[18765]: audit 2024-04-24T16:26:42.403736+0000 mon.smithi178 (mon.0) 600 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:43.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:43 smithi178 bash[18765]: audit 2024-04-24T16:26:42.403736+0000 mon.smithi178 (mon.0) 600 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:43.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:43 smithi204 bash[20295]: cluster 2024-04-24T16:26:41.568928+0000 mgr.smithi178.tjvcci (mgr.14197) 538 : cluster [DBG] pgmap v485: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:43.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:43 smithi204 bash[20295]: cluster 2024-04-24T16:26:41.568928+0000 mgr.smithi178.tjvcci (mgr.14197) 538 : cluster [DBG] pgmap v485: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:43.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:43 smithi204 bash[20295]: audit 2024-04-24T16:26:42.403736+0000 mon.smithi178 (mon.0) 600 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:43.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:43 smithi204 bash[20295]: audit 2024-04-24T16:26:42.403736+0000 mon.smithi178 (mon.0) 600 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:43.412 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:26:44.073 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:26:44.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:44 smithi178 bash[18765]: audit 2024-04-24T16:26:43.420219+0000 mon.smithi178 (mon.0) 601 : audit [DBG] from='client.? 172.21.15.178:0/2252103754' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:44.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:44 smithi178 bash[18765]: audit 2024-04-24T16:26:43.420219+0000 mon.smithi178 (mon.0) 601 : audit [DBG] from='client.? 172.21.15.178:0/2252103754' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:44.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:44 smithi204 bash[20295]: audit 2024-04-24T16:26:43.420219+0000 mon.smithi178 (mon.0) 601 : audit [DBG] from='client.? 172.21.15.178:0/2252103754' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:44.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:44 smithi204 bash[20295]: audit 2024-04-24T16:26:43.420219+0000 mon.smithi178 (mon.0) 601 : audit [DBG] from='client.? 172.21.15.178:0/2252103754' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:45.075 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:26:45.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:45 smithi204 bash[20295]: cluster 2024-04-24T16:26:43.569903+0000 mgr.smithi178.tjvcci (mgr.14197) 539 : cluster [DBG] pgmap v486: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:45.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:45 smithi204 bash[20295]: cluster 2024-04-24T16:26:43.569903+0000 mgr.smithi178.tjvcci (mgr.14197) 539 : cluster [DBG] pgmap v486: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:45.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:45 smithi178 bash[18765]: cluster 2024-04-24T16:26:43.569903+0000 mgr.smithi178.tjvcci (mgr.14197) 539 : cluster [DBG] pgmap v486: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:45.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:45 smithi178 bash[18765]: cluster 2024-04-24T16:26:43.569903+0000 mgr.smithi178.tjvcci (mgr.14197) 539 : cluster [DBG] pgmap v486: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:47.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:47 smithi204 bash[20295]: cluster 2024-04-24T16:26:45.570824+0000 mgr.smithi178.tjvcci (mgr.14197) 540 : cluster [DBG] pgmap v487: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:47.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:47 smithi204 bash[20295]: cluster 2024-04-24T16:26:45.570824+0000 mgr.smithi178.tjvcci (mgr.14197) 540 : cluster [DBG] pgmap v487: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:47.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:47 smithi178 bash[18765]: cluster 2024-04-24T16:26:45.570824+0000 mgr.smithi178.tjvcci (mgr.14197) 540 : cluster [DBG] pgmap v487: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:47.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:47 smithi178 bash[18765]: cluster 2024-04-24T16:26:45.570824+0000 mgr.smithi178.tjvcci (mgr.14197) 540 : cluster [DBG] pgmap v487: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:49.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:49 smithi204 bash[20295]: cluster 2024-04-24T16:26:47.571786+0000 mgr.smithi178.tjvcci (mgr.14197) 541 : cluster [DBG] pgmap v488: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:49.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:49 smithi204 bash[20295]: cluster 2024-04-24T16:26:47.571786+0000 mgr.smithi178.tjvcci (mgr.14197) 541 : cluster [DBG] pgmap v488: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:49.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:49 smithi178 bash[18765]: cluster 2024-04-24T16:26:47.571786+0000 mgr.smithi178.tjvcci (mgr.14197) 541 : cluster [DBG] pgmap v488: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:49.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:49 smithi178 bash[18765]: cluster 2024-04-24T16:26:47.571786+0000 mgr.smithi178.tjvcci (mgr.14197) 541 : cluster [DBG] pgmap v488: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:49.840 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:26:51.034 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:26:51.256 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:51 smithi178 bash[18765]: cluster 2024-04-24T16:26:49.572848+0000 mgr.smithi178.tjvcci (mgr.14197) 542 : cluster [DBG] pgmap v489: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:51.257 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:51 smithi178 bash[18765]: cluster 2024-04-24T16:26:49.572848+0000 mgr.smithi178.tjvcci (mgr.14197) 542 : cluster [DBG] pgmap v489: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:51.257 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:51 smithi178 bash[18765]: audit 2024-04-24T16:26:51.042415+0000 mon.smithi178 (mon.0) 602 : audit [DBG] from='client.? 172.21.15.178:0/2628029500' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:51.257 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:51 smithi178 bash[18765]: audit 2024-04-24T16:26:51.042415+0000 mon.smithi178 (mon.0) 602 : audit [DBG] from='client.? 172.21.15.178:0/2628029500' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:51.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:51 smithi204 bash[20295]: cluster 2024-04-24T16:26:49.572848+0000 mgr.smithi178.tjvcci (mgr.14197) 542 : cluster [DBG] pgmap v489: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:51.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:51 smithi204 bash[20295]: cluster 2024-04-24T16:26:49.572848+0000 mgr.smithi178.tjvcci (mgr.14197) 542 : cluster [DBG] pgmap v489: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:51.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:51 smithi204 bash[20295]: audit 2024-04-24T16:26:51.042415+0000 mon.smithi178 (mon.0) 602 : audit [DBG] from='client.? 172.21.15.178:0/2628029500' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:51.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:51 smithi204 bash[20295]: audit 2024-04-24T16:26:51.042415+0000 mon.smithi178 (mon.0) 602 : audit [DBG] from='client.? 172.21.15.178:0/2628029500' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:51.749 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:26:52.752 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:26:53.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:53 smithi204 bash[20295]: cluster 2024-04-24T16:26:51.573865+0000 mgr.smithi178.tjvcci (mgr.14197) 543 : cluster [DBG] pgmap v490: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:53.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:53 smithi204 bash[20295]: cluster 2024-04-24T16:26:51.573865+0000 mgr.smithi178.tjvcci (mgr.14197) 543 : cluster [DBG] pgmap v490: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:53.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:53 smithi178 bash[18765]: cluster 2024-04-24T16:26:51.573865+0000 mgr.smithi178.tjvcci (mgr.14197) 543 : cluster [DBG] pgmap v490: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:53.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:53 smithi178 bash[18765]: cluster 2024-04-24T16:26:51.573865+0000 mgr.smithi178.tjvcci (mgr.14197) 543 : cluster [DBG] pgmap v490: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:55.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:55 smithi178 bash[18765]: cluster 2024-04-24T16:26:53.574781+0000 mgr.smithi178.tjvcci (mgr.14197) 544 : cluster [DBG] pgmap v491: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:55.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:55 smithi178 bash[18765]: cluster 2024-04-24T16:26:53.574781+0000 mgr.smithi178.tjvcci (mgr.14197) 544 : cluster [DBG] pgmap v491: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:55.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:55 smithi204 bash[20295]: cluster 2024-04-24T16:26:53.574781+0000 mgr.smithi178.tjvcci (mgr.14197) 544 : cluster [DBG] pgmap v491: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:55.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:55 smithi204 bash[20295]: cluster 2024-04-24T16:26:53.574781+0000 mgr.smithi178.tjvcci (mgr.14197) 544 : cluster [DBG] pgmap v491: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:57.512 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:26:57.536 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:57 smithi178 bash[18765]: cluster 2024-04-24T16:26:55.575483+0000 mgr.smithi178.tjvcci (mgr.14197) 545 : cluster [DBG] pgmap v492: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:57.536 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:57 smithi178 bash[18765]: cluster 2024-04-24T16:26:55.575483+0000 mgr.smithi178.tjvcci (mgr.14197) 545 : cluster [DBG] pgmap v492: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:57.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:57 smithi204 bash[20295]: cluster 2024-04-24T16:26:55.575483+0000 mgr.smithi178.tjvcci (mgr.14197) 545 : cluster [DBG] pgmap v492: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:57.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:57 smithi204 bash[20295]: cluster 2024-04-24T16:26:55.575483+0000 mgr.smithi178.tjvcci (mgr.14197) 545 : cluster [DBG] pgmap v492: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:58 smithi204 bash[20295]: audit 2024-04-24T16:26:57.404194+0000 mon.smithi178 (mon.0) 603 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:58.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:58 smithi204 bash[20295]: audit 2024-04-24T16:26:57.404194+0000 mon.smithi178 (mon.0) 603 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:58.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:58 smithi178 bash[18765]: audit 2024-04-24T16:26:57.404194+0000 mon.smithi178 (mon.0) 603 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:58.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:58 smithi178 bash[18765]: audit 2024-04-24T16:26:57.404194+0000 mon.smithi178 (mon.0) 603 : audit [DBG] from='mgr.14197 172.21.15.178:0/862425794' entity='mgr.smithi178.tjvcci' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T16:26:58.704 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:26:59.349 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:26:59.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:59 smithi178 bash[18765]: cluster 2024-04-24T16:26:57.576062+0000 mgr.smithi178.tjvcci (mgr.14197) 546 : cluster [DBG] pgmap v493: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:59.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:59 smithi178 bash[18765]: cluster 2024-04-24T16:26:57.576062+0000 mgr.smithi178.tjvcci (mgr.14197) 546 : cluster [DBG] pgmap v493: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:59.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:59 smithi178 bash[18765]: audit 2024-04-24T16:26:58.711851+0000 mon.smithi178 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.178:0/2561226247' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:59.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:26:59 smithi178 bash[18765]: audit 2024-04-24T16:26:58.711851+0000 mon.smithi178 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.178:0/2561226247' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:59.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:59 smithi204 bash[20295]: cluster 2024-04-24T16:26:57.576062+0000 mgr.smithi178.tjvcci (mgr.14197) 546 : cluster [DBG] pgmap v493: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:59.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:59 smithi204 bash[20295]: cluster 2024-04-24T16:26:57.576062+0000 mgr.smithi178.tjvcci (mgr.14197) 546 : cluster [DBG] pgmap v493: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:26:59.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:59 smithi204 bash[20295]: audit 2024-04-24T16:26:58.711851+0000 mon.smithi178 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.178:0/2561226247' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:26:59.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:26:59 smithi204 bash[20295]: audit 2024-04-24T16:26:58.711851+0000 mon.smithi178 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.178:0/2561226247' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:27:00.350 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid ad55ec96-0254-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T16:27:01.331 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:01 smithi178 bash[18765]: cluster 2024-04-24T16:26:59.576996+0000 mgr.smithi178.tjvcci (mgr.14197) 547 : cluster [DBG] pgmap v494: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:01.332 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:01 smithi178 bash[18765]: cluster 2024-04-24T16:26:59.576996+0000 mgr.smithi178.tjvcci (mgr.14197) 547 : cluster [DBG] pgmap v494: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:01.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:01 smithi204 bash[20295]: cluster 2024-04-24T16:26:59.576996+0000 mgr.smithi178.tjvcci (mgr.14197) 547 : cluster [DBG] pgmap v494: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:01.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:01 smithi204 bash[20295]: cluster 2024-04-24T16:26:59.576996+0000 mgr.smithi178.tjvcci (mgr.14197) 547 : cluster [DBG] pgmap v494: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:03.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:03 smithi204 bash[20295]: cluster 2024-04-24T16:27:01.577928+0000 mgr.smithi178.tjvcci (mgr.14197) 548 : cluster [DBG] pgmap v495: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:03.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:03 smithi204 bash[20295]: cluster 2024-04-24T16:27:01.577928+0000 mgr.smithi178.tjvcci (mgr.14197) 548 : cluster [DBG] pgmap v495: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:03.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:03 smithi178 bash[18765]: cluster 2024-04-24T16:27:01.577928+0000 mgr.smithi178.tjvcci (mgr.14197) 548 : cluster [DBG] pgmap v495: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:03.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:03 smithi178 bash[18765]: cluster 2024-04-24T16:27:01.577928+0000 mgr.smithi178.tjvcci (mgr.14197) 548 : cluster [DBG] pgmap v495: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:05.116 INFO:teuthology.orchestra.run.smithi178.stderr:Inferring config /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/mon.smithi178/config 2024-04-24T16:27:05.581 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:05 smithi178 bash[18765]: cluster 2024-04-24T16:27:03.578867+0000 mgr.smithi178.tjvcci (mgr.14197) 549 : cluster [DBG] pgmap v496: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:05.582 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:05 smithi178 bash[18765]: cluster 2024-04-24T16:27:03.578867+0000 mgr.smithi178.tjvcci (mgr.14197) 549 : cluster [DBG] pgmap v496: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:05.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:05 smithi204 bash[20295]: cluster 2024-04-24T16:27:03.578867+0000 mgr.smithi178.tjvcci (mgr.14197) 549 : cluster [DBG] pgmap v496: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:05.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:05 smithi204 bash[20295]: cluster 2024-04-24T16:27:03.578867+0000 mgr.smithi178.tjvcci (mgr.14197) 549 : cluster [DBG] pgmap v496: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:06.357 INFO:teuthology.orchestra.run.smithi178.stdout: 2024-04-24T16:27:06.570 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:06 smithi178 bash[18765]: cluster 2024-04-24T16:27:05.579850+0000 mgr.smithi178.tjvcci (mgr.14197) 550 : cluster [DBG] pgmap v497: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:06.571 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:06 smithi178 bash[18765]: cluster 2024-04-24T16:27:05.579850+0000 mgr.smithi178.tjvcci (mgr.14197) 550 : cluster [DBG] pgmap v497: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:06.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:06 smithi204 bash[20295]: cluster 2024-04-24T16:27:05.579850+0000 mgr.smithi178.tjvcci (mgr.14197) 550 : cluster [DBG] pgmap v497: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:06.629 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:06 smithi204 bash[20295]: cluster 2024-04-24T16:27:05.579850+0000 mgr.smithi178.tjvcci (mgr.14197) 550 : cluster [DBG] pgmap v497: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T16:27:07.064 INFO:teuthology.orchestra.run.smithi178.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-04-24T16:27:07.064 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_5904d29475f5be602879d9fb26280e89b808d5cc/qa/tasks/cephadm.py", line 1133, in ceph_osds while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (121) after waiting for 120 seconds 2024-04-24T16:27:07.066 DEBUG:teuthology.orchestra.run.smithi178:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-24T16:27:07.080 DEBUG:teuthology.orchestra.run.smithi204:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-24T16:27:07.095 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-24T16:27:07.095 DEBUG:teuthology.orchestra.run.smithi178:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-24T16:27:07.134 DEBUG:teuthology.orchestra.run.smithi204:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-24T16:27:07.141 INFO:tasks.cephadm:Stopping all daemons... 2024-04-24T16:27:07.142 INFO:tasks.cephadm.mon.smithi178:Stopping mon.smithi178... 2024-04-24T16:27:07.142 DEBUG:teuthology.orchestra.run.smithi178:> sudo systemctl stop ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mon.smithi178 2024-04-24T16:27:07.328 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:07 smithi178 systemd[1]: Stopping Ceph mon.smithi178 for ad55ec96-0254-11ef-bc93-c7b262605968... 2024-04-24T16:27:07.328 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:07 smithi178 bash[18765]: audit 2024-04-24T16:27:06.364566+0000 mon.smithi178 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.178:0/3985294560' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:27:07.328 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:07 smithi178 bash[18765]: audit 2024-04-24T16:27:06.364566+0000 mon.smithi178 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.178:0/3985294560' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:27:07.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:07 smithi204 bash[20295]: audit 2024-04-24T16:27:06.364566+0000 mon.smithi178 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.178:0/3985294560' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:27:07.379 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:07 smithi204 bash[20295]: audit 2024-04-24T16:27:06.364566+0000 mon.smithi178 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.178:0/3985294560' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T16:27:07.451 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:07 smithi178 bash[18765]: debug 2024-04-24T16:27:07.330+0000 7f20f5770700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi178 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-04-24T16:27:07.451 INFO:journalctl@ceph.mon.smithi178.smithi178.stdout:Apr 24 16:27:07 smithi178 bash[18765]: debug 2024-04-24T16:27:07.330+0000 7f20f5770700 -1 mon.smithi178@0(leader) e2 *** Got Signal Terminated *** 2024-04-24T16:27:08.204 DEBUG:teuthology.orchestra.run.smithi178:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mon.smithi178.service' 2024-04-24T16:27:08.254 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-24T16:27:08.254 INFO:tasks.cephadm.mon.smithi178:Stopped mon.smithi178 2024-04-24T16:27:08.254 INFO:tasks.cephadm.mon.smithi204:Stopping mon.smithi204... 2024-04-24T16:27:08.255 DEBUG:teuthology.orchestra.run.smithi204:> sudo systemctl stop ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mon.smithi204 2024-04-24T16:27:08.549 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:08 smithi204 systemd[1]: Stopping Ceph mon.smithi204 for ad55ec96-0254-11ef-bc93-c7b262605968... 2024-04-24T16:27:08.550 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:08 smithi204 bash[20295]: debug 2024-04-24T16:27:08.407+0000 7fb64bd26700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi204 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-04-24T16:27:08.550 INFO:journalctl@ceph.mon.smithi204.smithi204.stdout:Apr 24 16:27:08 smithi204 bash[20295]: debug 2024-04-24T16:27:08.407+0000 7fb64bd26700 -1 mon.smithi204@1(peon) e2 *** Got Signal Terminated *** 2024-04-24T16:27:09.204 DEBUG:teuthology.orchestra.run.smithi204:> sudo pkill -f 'journalctl -f -n 0 -u ceph-ad55ec96-0254-11ef-bc93-c7b262605968@mon.smithi204.service' 2024-04-24T16:27:09.242 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-24T16:27:09.242 INFO:tasks.cephadm.mon.smithi204:Stopped mon.smithi204 2024-04-24T16:27:09.242 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad55ec96-0254-11ef-bc93-c7b262605968 --force --keep-logs 2024-04-24T16:27:09.409 INFO:teuthology.orchestra.run.smithi178.stdout:Deleting cluster with fsid: ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:27:21.512 DEBUG:teuthology.orchestra.run.smithi204:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad55ec96-0254-11ef-bc93-c7b262605968 --force --keep-logs 2024-04-24T16:27:21.675 INFO:teuthology.orchestra.run.smithi204.stdout:Deleting cluster with fsid: ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:27:30.936 DEBUG:teuthology.orchestra.run.smithi178:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-24T16:27:30.951 DEBUG:teuthology.orchestra.run.smithi204:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-24T16:27:30.962 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-24T16:27:30.964 DEBUG:teuthology.misc:Transferring archived files from smithi178:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash to /home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765/remote/smithi178/crash 2024-04-24T16:27:30.965 DEBUG:teuthology.orchestra.run.smithi178:> sudo tar c -f - -C /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash -- . 2024-04-24T16:27:31.007 INFO:teuthology.orchestra.run.smithi178.stderr:tar: /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash: Cannot open: No such file or directory 2024-04-24T16:27:31.007 INFO:teuthology.orchestra.run.smithi178.stderr:tar: Error is not recoverable: exiting now 2024-04-24T16:27:31.010 DEBUG:teuthology.misc:Transferring archived files from smithi204:/var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash to /home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765/remote/smithi204/crash 2024-04-24T16:27:31.011 DEBUG:teuthology.orchestra.run.smithi204:> sudo tar c -f - -C /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash -- . 2024-04-24T16:27:31.021 INFO:teuthology.orchestra.run.smithi204.stderr:tar: /var/lib/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/crash: Cannot open: No such file or directory 2024-04-24T16:27:31.022 INFO:teuthology.orchestra.run.smithi204.stderr:tar: Error is not recoverable: exiting now 2024-04-24T16:27:31.023 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-24T16:27:31.023 DEBUG:teuthology.orchestra.run.smithi178:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-24T16:27:31.066 INFO:teuthology.orchestra.run.smithi178.stdout:2024-04-24T16:10:02.813975+0000 mon.smithi178 (mon.0) 118 : cluster [WRN] Health check failed: failed to probe daemons or devices (CEPHADM_REFRESH_FAILED) 2024-04-24T16:27:31.067 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-04-24T16:27:31.067 DEBUG:teuthology.orchestra.run.smithi178:> sudo egrep '\[SEC\]' /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-24T16:27:31.121 DEBUG:teuthology.orchestra.run.smithi178:> sudo egrep '\[ERR\]' /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-24T16:27:31.178 DEBUG:teuthology.orchestra.run.smithi178:> sudo egrep '\[WRN\]' /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-24T16:27:31.234 INFO:teuthology.orchestra.run.smithi178.stdout:2024-04-24T16:10:02.813975+0000 mon.smithi178 (mon.0) 118 : cluster [WRN] Health check failed: failed to probe daemons or devices (CEPHADM_REFRESH_FAILED) 2024-04-24T16:27:31.234 INFO:tasks.cephadm:Compressing logs... 2024-04-24T16:27:31.234 DEBUG:teuthology.orchestra.run.smithi178:> 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-04-24T16:27:31.278 DEBUG:teuthology.orchestra.run.smithi204:> 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-04-24T16:27:31.286 INFO:teuthology.orchestra.run.smithi178.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-24T16:27:31.292 INFO:teuthology.orchestra.run.smithi204.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-24T16:27:31.304 INFO:teuthology.orchestra.run.smithi178.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-24T16:27:31.305 INFO:teuthology.orchestra.run.smithi178.stderr:gzip -5 --verbose -- /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-mon.smithi178.log 2024-04-24T16:27:31.305 INFO:teuthology.orchestra.run.smithi178.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.cephadm.log 2024-04-24T16:27:31.306 INFO:teuthology.orchestra.run.smithi178.stderr:/var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-mon.smithi178.log: gzip -5 --verbose -- /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.log 2024-04-24T16:27:31.306 INFO:teuthology.orchestra.run.smithi178.stderr:/var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi178.log 2024-04-24T16:27:31.307 INFO:teuthology.orchestra.run.smithi178.stderr:/var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.log: 83.9% -- replaced with /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.cephadm.log.gz 2024-04-24T16:27:31.307 INFO:teuthology.orchestra.run.smithi178.stderr:gzip -5 --verbose -- /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.audit.log 2024-04-24T16:27:31.307 INFO:teuthology.orchestra.run.smithi178.stderr:/var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi178.log: gzip -5 --verbose -- /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-mgr.smithi178.tjvcci.log 2024-04-24T16:27:31.307 INFO:teuthology.orchestra.run.smithi178.stderr:/var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.audit.log: 94.3% -- replaced with /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi178.log.gz 2024-04-24T16:27:31.308 INFO:teuthology.orchestra.run.smithi178.stderr: 89.0% -- replaced with /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.log.gz 2024-04-24T16:27:31.308 INFO:teuthology.orchestra.run.smithi204.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-24T16:27:31.308 INFO:teuthology.orchestra.run.smithi204.stderr:gzip -5 --verbose -- /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi204.log 2024-04-24T16:27:31.309 INFO:teuthology.orchestra.run.smithi204.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.cephadm.log 2024-04-24T16:27:31.309 INFO:teuthology.orchestra.run.smithi204.stderr:/var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi204.log: 29.7% -- replaced with /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi204.log.gz 2024-04-24T16:27:31.309 INFO:teuthology.orchestra.run.smithi204.stderr:gzip -5 --verbose -- /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.log 2024-04-24T16:27:31.309 INFO:teuthology.orchestra.run.smithi204.stderr:gzip -5 --verbose -- /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-mon.smithi204.log 2024-04-24T16:27:31.310 INFO:teuthology.orchestra.run.smithi178.stderr:/var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-mgr.smithi178.tjvcci.log: 90.9% -- replaced with /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.audit.log.gz 2024-04-24T16:27:31.311 INFO:teuthology.orchestra.run.smithi204.stderr:/var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.cephadm.log: /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-mgr.smithi204.olwubu.log 2024-04-24T16:27:31.311 INFO:teuthology.orchestra.run.smithi204.stderr: 81.6% -- replaced with /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.cephadm.log.gz 2024-04-24T16:27:31.311 INFO:teuthology.orchestra.run.smithi204.stderr:/var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-mon.smithi204.log: gzip -5 --verbose -- /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.audit.log 2024-04-24T16:27:31.311 INFO:teuthology.orchestra.run.smithi204.stderr:/var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-mgr.smithi204.olwubu.log: 89.1% -- replaced with /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.log.gz 2024-04-24T16:27:31.311 INFO:teuthology.orchestra.run.smithi204.stderr: 90.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-24T16:27:31.312 INFO:teuthology.orchestra.run.smithi204.stderr:/var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.audit.log: 91.0% -- replaced with /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph.audit.log.gz 2024-04-24T16:27:31.316 INFO:teuthology.orchestra.run.smithi204.stderr: 92.8% -- replaced with /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-mgr.smithi204.olwubu.log.gz 2024-04-24T16:27:31.326 INFO:teuthology.orchestra.run.smithi178.stderr: 92.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-24T16:27:31.418 INFO:teuthology.orchestra.run.smithi204.stderr: 93.5% -- replaced with /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-mon.smithi204.log.gz 2024-04-24T16:27:31.419 INFO:teuthology.orchestra.run.smithi204.stderr: 2024-04-24T16:27:31.419 INFO:teuthology.orchestra.run.smithi204.stderr:real 0m0.136s 2024-04-24T16:27:31.419 INFO:teuthology.orchestra.run.smithi204.stderr:user 0m0.136s 2024-04-24T16:27:31.419 INFO:teuthology.orchestra.run.smithi204.stderr:sys 0m0.009s 2024-04-24T16:27:31.458 INFO:teuthology.orchestra.run.smithi178.stderr: 91.6% -- replaced with /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-mgr.smithi178.tjvcci.log.gz 2024-04-24T16:27:31.682 INFO:teuthology.orchestra.run.smithi178.stderr: 90.2% -- replaced with /var/log/ceph/ad55ec96-0254-11ef-bc93-c7b262605968/ceph-mon.smithi178.log.gz 2024-04-24T16:27:31.684 INFO:teuthology.orchestra.run.smithi178.stderr: 2024-04-24T16:27:31.684 INFO:teuthology.orchestra.run.smithi178.stderr:real 0m0.403s 2024-04-24T16:27:31.684 INFO:teuthology.orchestra.run.smithi178.stderr:user 0m0.541s 2024-04-24T16:27:31.684 INFO:teuthology.orchestra.run.smithi178.stderr:sys 0m0.033s 2024-04-24T16:27:31.684 INFO:tasks.cephadm:Archiving logs... 2024-04-24T16:27:31.684 DEBUG:teuthology.misc:Transferring archived files from smithi178:/var/log/ceph to /home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765/remote/smithi178/log 2024-04-24T16:27:31.685 DEBUG:teuthology.orchestra.run.smithi178:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-24T16:27:31.829 DEBUG:teuthology.misc:Transferring archived files from smithi204:/var/log/ceph to /home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765/remote/smithi204/log 2024-04-24T16:27:31.829 DEBUG:teuthology.orchestra.run.smithi204:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-24T16:27:31.865 INFO:tasks.cephadm:Removing cluster... 2024-04-24T16:27:31.865 DEBUG:teuthology.orchestra.run.smithi178:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad55ec96-0254-11ef-bc93-c7b262605968 --force 2024-04-24T16:27:32.029 INFO:teuthology.orchestra.run.smithi178.stdout:Deleting cluster with fsid: ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:27:33.160 DEBUG:teuthology.orchestra.run.smithi204:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid ad55ec96-0254-11ef-bc93-c7b262605968 --force 2024-04-24T16:27:33.327 INFO:teuthology.orchestra.run.smithi204.stdout:Deleting cluster with fsid: ad55ec96-0254-11ef-bc93-c7b262605968 2024-04-24T16:27:34.453 INFO:tasks.cephadm:Removing cephadm ... 2024-04-24T16:27:34.453 DEBUG:teuthology.orchestra.run.smithi178:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-24T16:27:34.459 DEBUG:teuthology.orchestra.run.smithi204:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-24T16:27:34.465 INFO:tasks.cephadm:Teardown complete 2024-04-24T16:27:34.465 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_5904d29475f5be602879d9fb26280e89b808d5cc/qa/tasks/cephadm.py", line 2220, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph-c_5904d29475f5be602879d9fb26280e89b808d5cc/qa/tasks/cephadm.py", line 1849, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_5904d29475f5be602879d9fb26280e89b808d5cc/qa/tasks/cephadm.py", line 1133, in ceph_osds while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (121) after waiting for 120 seconds 2024-04-24T16:27:34.675 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=00d59726965747c69a9c41c2238aa824 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_5904d29475f5be602879d9fb26280e89b808d5cc/qa/tasks/cephadm.py", line 2220, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph-c_5904d29475f5be602879d9fb26280e89b808d5cc/qa/tasks/cephadm.py", line 1849, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_5904d29475f5be602879d9fb26280e89b808d5cc/qa/tasks/cephadm.py", line 1133, in ceph_osds while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (121) after waiting for 120 seconds 2024-04-24T16:27:34.678 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-24T16:27:34.687 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-04-24T16:27:34.723 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi178:/dev/vg_nvme/lv_1... 2024-04-24T16:27:34.724 DEBUG:teuthology.orchestra.run.smithi178:> sudo nvme disconnect -n lv_1 2024-04-24T16:27:34.982 INFO:teuthology.orchestra.run.smithi178.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-24T16:27:34.983 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T16:27:34.983 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi178:/dev/vg_nvme/lv_2... 2024-04-24T16:27:34.983 DEBUG:teuthology.orchestra.run.smithi178:> sudo nvme disconnect -n lv_2 2024-04-24T16:27:35.262 INFO:teuthology.orchestra.run.smithi178.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-24T16:27:35.263 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T16:27:35.263 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi178:/dev/vg_nvme/lv_3... 2024-04-24T16:27:35.263 DEBUG:teuthology.orchestra.run.smithi178:> sudo nvme disconnect -n lv_3 2024-04-24T16:27:35.517 INFO:teuthology.orchestra.run.smithi178.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-24T16:27:35.519 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T16:27:35.519 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi178:/dev/vg_nvme/lv_4... 2024-04-24T16:27:35.519 DEBUG:teuthology.orchestra.run.smithi178:> sudo nvme disconnect -n lv_4 2024-04-24T16:27:35.757 INFO:teuthology.orchestra.run.smithi178.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-24T16:27:35.759 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T16:27:35.760 DEBUG:teuthology.orchestra.run.smithi178:> set -ex 2024-04-24T16:27:35.760 DEBUG:teuthology.orchestra.run.smithi178:> sudo dd of=/scratch_devs 2024-04-24T16:27:35.773 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi204:/dev/vg_nvme/lv_1... 2024-04-24T16:27:35.773 DEBUG:teuthology.orchestra.run.smithi204:> sudo nvme disconnect -n lv_1 2024-04-24T16:27:36.033 INFO:teuthology.orchestra.run.smithi204.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-24T16:27:36.035 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T16:27:36.035 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi204:/dev/vg_nvme/lv_2... 2024-04-24T16:27:36.035 DEBUG:teuthology.orchestra.run.smithi204:> sudo nvme disconnect -n lv_2 2024-04-24T16:27:36.274 INFO:teuthology.orchestra.run.smithi204.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-24T16:27:36.275 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T16:27:36.275 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi204:/dev/vg_nvme/lv_3... 2024-04-24T16:27:36.275 DEBUG:teuthology.orchestra.run.smithi204:> sudo nvme disconnect -n lv_3 2024-04-24T16:27:36.529 INFO:teuthology.orchestra.run.smithi204.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-24T16:27:36.531 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T16:27:36.531 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi204:/dev/vg_nvme/lv_4... 2024-04-24T16:27:36.532 DEBUG:teuthology.orchestra.run.smithi204:> sudo nvme disconnect -n lv_4 2024-04-24T16:27:36.782 INFO:teuthology.orchestra.run.smithi204.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-24T16:27:36.783 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T16:27:36.783 DEBUG:teuthology.orchestra.run.smithi204:> set -ex 2024-04-24T16:27:36.783 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd of=/scratch_devs 2024-04-24T16:27:36.797 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-24T16:27:36.805 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-24T16:27:36.805 DEBUG:teuthology.orchestra.run.smithi178:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-24T16:27:36.808 DEBUG:teuthology.orchestra.run.smithi204:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-24T16:27:36.820 INFO:teuthology.orchestra.run.smithi178.stdout: remote refid st t when poll reach delay offset jitter 2024-04-24T16:27:36.820 INFO:teuthology.orchestra.run.smithi178.stdout:============================================================================== 2024-04-24T16:27:36.820 INFO:teuthology.orchestra.run.smithi178.stdout:+hv01.front.sepi 44.4.53.2 2 u 63 64 377 0.089 -6.680 1.055 2024-04-24T16:27:36.820 INFO:teuthology.orchestra.run.smithi178.stdout:+hv02.front.sepi 63.231.80.2 3 u 58 64 377 0.079 -2.617 1.339 2024-04-24T16:27:36.820 INFO:teuthology.orchestra.run.smithi178.stdout:*hv03.front.sepi 74.6.168.72 3 u 60 64 377 0.095 -5.815 0.962 2024-04-24T16:27:36.820 INFO:teuthology.orchestra.run.smithi178.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-04-24T16:27:36.851 INFO:teuthology.orchestra.run.smithi204.stdout: remote refid st t when poll reach delay offset jitter 2024-04-24T16:27:36.851 INFO:teuthology.orchestra.run.smithi204.stdout:============================================================================== 2024-04-24T16:27:36.852 INFO:teuthology.orchestra.run.smithi204.stdout:+hv01.front.sepi 44.4.53.2 2 u 63 64 377 0.110 -3.576 0.441 2024-04-24T16:27:36.852 INFO:teuthology.orchestra.run.smithi204.stdout:*hv02.front.sepi 63.231.80.2 3 u 60 64 377 0.063 -1.037 0.454 2024-04-24T16:27:36.852 INFO:teuthology.orchestra.run.smithi204.stdout:+hv03.front.sepi 74.6.168.72 3 u 57 64 377 0.107 -2.191 0.454 2024-04-24T16:27:36.852 INFO:teuthology.orchestra.run.smithi204.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-04-24T16:27:36.853 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-24T16:27:36.861 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-24T16:27:36.862 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-24T16:27:36.881 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-24T16:27:36.915 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-24T16:27:36.948 INFO:teuthology.task.internal:Duration was 1675.024030 seconds 2024-04-24T16:27:36.949 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-24T16:27:36.982 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-24T16:27:36.983 DEBUG:teuthology.orchestra.run.smithi178:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-24T16:27:36.985 DEBUG:teuthology.orchestra.run.smithi204:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-24T16:27:37.025 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-24T16:27:37.025 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi178.front.sepia.ceph.com 2024-04-24T16:27:37.025 DEBUG:teuthology.orchestra.run.smithi178:> 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-04-24T16:27:37.078 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi204.front.sepia.ceph.com 2024-04-24T16:27:37.079 DEBUG:teuthology.orchestra.run.smithi204:> 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-04-24T16:27:37.088 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-24T16:27:37.089 DEBUG:teuthology.orchestra.run.smithi178:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-24T16:27:37.122 DEBUG:teuthology.orchestra.run.smithi204:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-24T16:27:37.170 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-24T16:27:37.171 DEBUG:teuthology.orchestra.run.smithi178:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-24T16:27:37.210 DEBUG:teuthology.orchestra.run.smithi204:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-24T16:27:37.325 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-24T16:27:37.335 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-24T16:27:37.335 DEBUG:teuthology.orchestra.run.smithi178:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-24T16:27:37.345 DEBUG:teuthology.orchestra.run.smithi204:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-24T16:27:37.358 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-24T16:27:37.375 DEBUG:teuthology.orchestra.run.smithi178:> 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-04-24T16:27:37.390 DEBUG:teuthology.orchestra.run.smithi204:> 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-04-24T16:27:37.398 INFO:teuthology.orchestra.run.smithi178.stdout:kernel.core_pattern = core 2024-04-24T16:27:37.411 INFO:teuthology.orchestra.run.smithi204.stdout:kernel.core_pattern = core 2024-04-24T16:27:37.438 DEBUG:teuthology.orchestra.run.smithi178:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-24T16:27:37.476 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T16:27:37.476 DEBUG:teuthology.orchestra.run.smithi204:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-24T16:27:37.485 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T16:27:37.485 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-24T16:27:37.496 INFO:teuthology.task.internal:Transferring archived files... 2024-04-24T16:27:37.496 DEBUG:teuthology.misc:Transferring archived files from smithi178:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765/remote/smithi178 2024-04-24T16:27:37.497 DEBUG:teuthology.orchestra.run.smithi178:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-24T16:27:37.541 DEBUG:teuthology.misc:Transferring archived files from smithi204:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765/remote/smithi204 2024-04-24T16:27:37.541 DEBUG:teuthology.orchestra.run.smithi204:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-24T16:27:37.563 INFO:teuthology.task.internal:Removing archive directory... 2024-04-24T16:27:37.563 DEBUG:teuthology.orchestra.run.smithi178:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-24T16:27:37.578 DEBUG:teuthology.orchestra.run.smithi204:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-24T16:27:37.606 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-24T16:27:37.616 INFO:teuthology.task.internal:Not uploading archives. 2024-04-24T16:27:37.617 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-24T16:27:37.641 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-24T16:27:37.641 DEBUG:teuthology.orchestra.run.smithi178:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-24T16:27:37.643 DEBUG:teuthology.orchestra.run.smithi204:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-24T16:27:37.647 INFO:teuthology.orchestra.run.smithi178.stdout: 658464 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 24 16:27 /home/ubuntu/cephtest 2024-04-24T16:27:37.653 INFO:teuthology.orchestra.run.smithi204.stdout: 658640 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 24 16:27 /home/ubuntu/cephtest 2024-04-24T16:27:37.655 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-24T16:27:37.675 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-24T16:27:37.742 INFO:teuthology.nuke:Checking targets against current locks 2024-04-24T16:27:37.769 DEBUG:teuthology.nuke:shortname: smithi178 2024-04-24T16:27:37.770 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-24T16:27:37.795 DEBUG:teuthology.nuke:shortname: smithi204 2024-04-24T16:27:37.795 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-24T16:27:37.798 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi178.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-24 15:50:37.674478', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDfNf4lyyVhde7mSmp9k+IDCpRQLZ2mx9w4mFzIoCppHEq3vMTICJk50Flf9yNuMPIEZLTNotgbiUTBH9kdL/4w='} 2024-04-24T16:27:37.822 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi204.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671765', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-24 15:50:37.675691', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCaxZ9WKwLpIUz9NiVEThxRjhPJERy1vlk5DhVvDcQGICgckWxsjURbk1G2T3WROHa31nZKa9vaWSPV7/nbsJLA='} 2024-04-24T16:27:37.852 INFO:teuthology.orchestra.console.smithi178:Power off 2024-04-24T16:27:37.852 DEBUG:teuthology.orchestra.console.smithi178:pexpect command: ipmitool -H smithi178.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-24T16:27:37.876 DEBUG:teuthology.orchestra.console.smithi178:power off output: Chassis Power Control: Down/Off 2024-04-24T16:27:37.877 DEBUG:teuthology.orchestra.console.smithi178:pexpect command: ipmitool -H smithi178.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-24T16:27:37.890 INFO:teuthology.orchestra.console.smithi204:Power off 2024-04-24T16:27:37.890 DEBUG:teuthology.orchestra.console.smithi204:pexpect command: ipmitool -H smithi204.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-24T16:27:37.900 DEBUG:teuthology.orchestra.console.smithi178:check power output: Chassis Power is on 2024-04-24T16:27:37.912 DEBUG:teuthology.orchestra.console.smithi204:power off output: Chassis Power Control: Down/Off 2024-04-24T16:27:37.912 DEBUG:teuthology.orchestra.console.smithi204:pexpect command: ipmitool -H smithi204.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-24T16:27:37.935 DEBUG:teuthology.orchestra.console.smithi204:check power output: Chassis Power is on 2024-04-24T16:27:41.901 DEBUG:teuthology.orchestra.console.smithi178:pexpect command: ipmitool -H smithi178.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-24T16:27:41.936 DEBUG:teuthology.orchestra.console.smithi204:pexpect command: ipmitool -H smithi204.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-24T16:27:42.013 DEBUG:teuthology.orchestra.console.smithi178:check power output: Chassis Power is on 2024-04-24T16:27:42.046 DEBUG:teuthology.orchestra.console.smithi204:check power output: Chassis Power is on 2024-04-24T16:27:46.019 DEBUG:teuthology.orchestra.console.smithi178:pexpect command: ipmitool -H smithi178.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-24T16:27:46.047 DEBUG:teuthology.orchestra.console.smithi204:pexpect command: ipmitool -H smithi204.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-24T16:27:46.128 DEBUG:teuthology.orchestra.console.smithi178:check power output: Chassis Power is off 2024-04-24T16:27:46.156 DEBUG:teuthology.orchestra.console.smithi204:check power output: Chassis Power is off 2024-04-24T16:27:46.230 INFO:teuthology.orchestra.console.smithi178:Power off completed 2024-04-24T16:27:46.258 INFO:teuthology.orchestra.console.smithi204:Power off completed 2024-04-24T16:27:46.363 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 1675.0240304470062 failure_reason: '"2024-04-24T16:10:02.813975+0000 mon.smithi178 (mon.0) 118 : cluster [WRN] Health check failed: failed to probe daemons or devices (CEPHADM_REFRESH_FAILED)" in cluster log' owner: scheduled_adking@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=00d59726965747c69a9c41c2238aa824 status: fail success: false 2024-04-24T16:27:46.363 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-24T16:27:46.449 INFO:teuthology.run:FAIL