2024-04-24T16:58:05.672 INFO:root:teuthology version: 0.0.1.dev269+g9481b1d 2024-04-24T16:58:05.672 DEBUG:teuthology.run:Teuthology command: teuthology --verbose --owner scheduled_adking@teuthology --name adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi --archive /home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671832 --description orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} -- /home/teuthworker/archive/adking-2024-04-24_15:49:18-orch:cephadm-wip-adk-testing-2024-04-24-0937-distro-default-smithi/7671832/orig.config.yaml 2024-04-24T16:58:05.708 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-24T16:58:05.801 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/7671832 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-bucket 3-final} email: adking@redhat.com first_in_suite: false job_id: '7671832' 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: smithi028.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAtCWZHOZochqJ7xcpP7S4PAeMln+dvONposhwzU6wUdN6oXOqdJW6yYACi5m4ArMUAfzdXjENoI1oR2XHceOtw= smithi105.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFDWPNroCkeCl7bAPGCmEbPPLa/pRoMCshpw/uC2hrF9bsqjVf5w05pPo+p8ClqVb6gtbbjf7cAA4vdUCmolM1I= 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 --bucket foobucket --cluster-id foo --pseudo-path /foobucket - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foobucket - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 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-24T16:58:05.802 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-24T16:58:05.802 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_5904d29475f5be602879d9fb26280e89b808d5cc/qa/tasks 2024-04-24T16:58:05.803 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-24T16:58:05.804 INFO:teuthology.task.internal:Checking packages... 2024-04-24T16:58:05.828 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '5904d29475f5be602879d9fb26280e89b808d5cc' 2024-04-24T16:58:05.828 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-24T16:58:05.828 INFO:teuthology.packaging:ref: None 2024-04-24T16:58:05.828 INFO:teuthology.packaging:tag: None 2024-04-24T16:58:05.828 INFO:teuthology.packaging:branch: wip-adk-testing-2024-04-24-0937 2024-04-24T16:58:05.828 INFO:teuthology.packaging:sha1: 5904d29475f5be602879d9fb26280e89b808d5cc 2024-04-24T16:58:05.829 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-24T16:58:06.052 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-3285-g5904d294-1jammy 2024-04-24T16:58:06.054 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-24T16:58:06.060 INFO:teuthology.task.internal:no buildpackages task found 2024-04-24T16:58:06.060 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-24T16:58:06.074 INFO:teuthology.task.internal:Saving configuration 2024-04-24T16:58:06.088 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-24T16:58:06.094 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-24T16:58:06.120 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi028.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/7671832', '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 16:52:36.465850', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII75fXoT9A9RPLEH9uHRBFH3F435G8q4CWDRc4BpgzQv'} 2024-04-24T16:58:06.142 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi105.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/7671832', '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 16:52:36.462813', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPlpgsiKX1QEkZjhwd355ffbRDEKJMT0ssCjdTwG6VeM'} 2024-04-24T16:58:06.142 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-24T16:58:06.149 INFO:teuthology.task.internal:roles: ubuntu@smithi028.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-04-24T16:58:06.149 INFO:teuthology.task.internal:roles: ubuntu@smithi105.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-04-24T16:58:06.149 INFO:teuthology.run_tasks:Running task console_log... 2024-04-24T16:58:06.227 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f17733f7430>, signals=[15]) 2024-04-24T16:58:06.228 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-24T16:58:06.234 INFO:teuthology.task.internal:Opening connections... 2024-04-24T16:58:06.234 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi028.front.sepia.ceph.com 2024-04-24T16:58:06.236 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi028.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T16:58:06.328 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi105.front.sepia.ceph.com 2024-04-24T16:58:06.329 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T16:58:06.411 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-24T16:58:06.418 DEBUG:teuthology.orchestra.run.smithi028:> uname -m 2024-04-24T16:58:06.424 INFO:teuthology.orchestra.run.smithi028.stdout:x86_64 2024-04-24T16:58:06.424 DEBUG:teuthology.orchestra.run.smithi028:> cat /etc/os-release 2024-04-24T16:58:06.471 INFO:teuthology.orchestra.run.smithi028.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-24T16:58:06.471 INFO:teuthology.orchestra.run.smithi028.stdout:NAME="Ubuntu" 2024-04-24T16:58:06.471 INFO:teuthology.orchestra.run.smithi028.stdout:VERSION_ID="22.04" 2024-04-24T16:58:06.471 INFO:teuthology.orchestra.run.smithi028.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-24T16:58:06.471 INFO:teuthology.orchestra.run.smithi028.stdout:VERSION_CODENAME=jammy 2024-04-24T16:58:06.471 INFO:teuthology.orchestra.run.smithi028.stdout:ID=ubuntu 2024-04-24T16:58:06.471 INFO:teuthology.orchestra.run.smithi028.stdout:ID_LIKE=debian 2024-04-24T16:58:06.472 INFO:teuthology.orchestra.run.smithi028.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-24T16:58:06.472 INFO:teuthology.orchestra.run.smithi028.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-24T16:58:06.472 INFO:teuthology.orchestra.run.smithi028.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-24T16:58:06.472 INFO:teuthology.orchestra.run.smithi028.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-24T16:58:06.472 INFO:teuthology.orchestra.run.smithi028.stdout:UBUNTU_CODENAME=jammy 2024-04-24T16:58:06.472 INFO:teuthology.lock.ops:Updating smithi028.front.sepia.ceph.com on lock server 2024-04-24T16:58:06.495 DEBUG:teuthology.orchestra.run.smithi105:> uname -m 2024-04-24T16:58:06.500 INFO:teuthology.orchestra.run.smithi105.stdout:x86_64 2024-04-24T16:58:06.501 DEBUG:teuthology.orchestra.run.smithi105:> cat /etc/os-release 2024-04-24T16:58:06.550 INFO:teuthology.orchestra.run.smithi105.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-04-24T16:58:06.550 INFO:teuthology.orchestra.run.smithi105.stdout:NAME="Ubuntu" 2024-04-24T16:58:06.550 INFO:teuthology.orchestra.run.smithi105.stdout:VERSION_ID="22.04" 2024-04-24T16:58:06.551 INFO:teuthology.orchestra.run.smithi105.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-04-24T16:58:06.551 INFO:teuthology.orchestra.run.smithi105.stdout:VERSION_CODENAME=jammy 2024-04-24T16:58:06.551 INFO:teuthology.orchestra.run.smithi105.stdout:ID=ubuntu 2024-04-24T16:58:06.551 INFO:teuthology.orchestra.run.smithi105.stdout:ID_LIKE=debian 2024-04-24T16:58:06.551 INFO:teuthology.orchestra.run.smithi105.stdout:HOME_URL="https://www.ubuntu.com/" 2024-04-24T16:58:06.551 INFO:teuthology.orchestra.run.smithi105.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-04-24T16:58:06.551 INFO:teuthology.orchestra.run.smithi105.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-04-24T16:58:06.551 INFO:teuthology.orchestra.run.smithi105.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-04-24T16:58:06.551 INFO:teuthology.orchestra.run.smithi105.stdout:UBUNTU_CODENAME=jammy 2024-04-24T16:58:06.551 INFO:teuthology.lock.ops:Updating smithi105.front.sepia.ceph.com on lock server 2024-04-24T16:58:06.570 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-24T16:58:06.579 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-24T16:58:06.586 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-24T16:58:06.587 DEBUG:teuthology.orchestra.run.smithi028:> test '!' -e /home/ubuntu/cephtest 2024-04-24T16:58:06.589 DEBUG:teuthology.orchestra.run.smithi105:> test '!' -e /home/ubuntu/cephtest 2024-04-24T16:58:06.598 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-24T16:58:06.604 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-24T16:58:06.604 DEBUG:teuthology.orchestra.run.smithi028:> test -z $(ls -A /var/lib/ceph) 2024-04-24T16:58:06.637 DEBUG:teuthology.orchestra.run.smithi105:> test -z $(ls -A /var/lib/ceph) 2024-04-24T16:58:06.648 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-24T16:58:06.696 INFO:teuthology.run_tasks:Running task kernel... 2024-04-24T16:58:06.711 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-24T16:58:06.711 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-24T16:58:06.711 DEBUG:teuthology.orchestra.run.smithi028:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-24T16:58:06.712 DEBUG:teuthology.orchestra.run.smithi105:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-24T16:58:06.716 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T16:58:06.716 DEBUG:teuthology.orchestra.run.smithi028:> uname -r 2024-04-24T16:58:06.717 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T16:58:06.717 DEBUG:teuthology.orchestra.run.smithi105:> uname -r 2024-04-24T16:58:06.764 INFO:teuthology.orchestra.run.smithi105.stdout:5.15.0-56-generic 2024-04-24T16:58:06.764 INFO:teuthology.task.kernel:Running kernel on smithi105: 5.15.0-56-generic 2024-04-24T16:58:06.764 DEBUG:teuthology.orchestra.run.smithi105:> sudo apt-get clean 2024-04-24T16:58:06.765 INFO:teuthology.orchestra.run.smithi028.stdout:5.15.0-56-generic 2024-04-24T16:58:06.765 INFO:teuthology.task.kernel:Running kernel on smithi028: 5.15.0-56-generic 2024-04-24T16:58:06.766 DEBUG:teuthology.orchestra.run.smithi028:> sudo apt-get clean 2024-04-24T16:58:06.884 DEBUG:teuthology.orchestra.run.smithi028:> sudo apt-get update 2024-04-24T16:58:06.885 DEBUG:teuthology.orchestra.run.smithi105:> sudo apt-get update 2024-04-24T16:58:07.056 INFO:teuthology.orchestra.run.smithi105.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-24T16:58:07.057 INFO:teuthology.orchestra.run.smithi105.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-24T16:58:07.057 INFO:teuthology.orchestra.run.smithi105.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-24T16:58:07.063 INFO:teuthology.orchestra.run.smithi028.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-04-24T16:58:07.140 INFO:teuthology.orchestra.run.smithi105.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-24T16:58:07.271 INFO:teuthology.orchestra.run.smithi028.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [452 kB] 2024-04-24T16:58:07.298 INFO:teuthology.orchestra.run.smithi105.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,392 kB] 2024-04-24T16:58:07.363 INFO:teuthology.orchestra.run.smithi028.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,392 kB] 2024-04-24T16:58:07.369 INFO:teuthology.orchestra.run.smithi105.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,610 kB] 2024-04-24T16:58:07.408 INFO:teuthology.orchestra.run.smithi028.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [243 kB] 2024-04-24T16:58:07.414 INFO:teuthology.orchestra.run.smithi105.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [452 kB] 2024-04-24T16:58:07.414 INFO:teuthology.orchestra.run.smithi028.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-24T16:58:07.415 INFO:teuthology.orchestra.run.smithi028.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,768 kB] 2024-04-24T16:58:07.422 INFO:teuthology.orchestra.run.smithi105.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [243 kB] 2024-04-24T16:58:07.430 INFO:teuthology.orchestra.run.smithi105.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-04-24T16:58:07.430 INFO:teuthology.orchestra.run.smithi105.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [36.5 kB] 2024-04-24T16:58:07.430 INFO:teuthology.orchestra.run.smithi105.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,768 kB] 2024-04-24T16:58:07.446 INFO:teuthology.orchestra.run.smithi028.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [36.5 kB] 2024-04-24T16:58:07.447 INFO:teuthology.orchestra.run.smithi028.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [299 kB] 2024-04-24T16:58:07.452 INFO:teuthology.orchestra.run.smithi028.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-24T16:58:07.452 INFO:teuthology.orchestra.run.smithi028.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [601 kB] 2024-04-24T16:58:07.461 INFO:teuthology.orchestra.run.smithi028.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [848 kB] 2024-04-24T16:58:07.475 INFO:teuthology.orchestra.run.smithi105.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [299 kB] 2024-04-24T16:58:07.475 INFO:teuthology.orchestra.run.smithi028.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-24T16:58:07.480 INFO:teuthology.orchestra.run.smithi028.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-24T16:58:07.481 INFO:teuthology.orchestra.run.smithi105.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-04-24T16:58:07.481 INFO:teuthology.orchestra.run.smithi105.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [848 kB] 2024-04-24T16:58:07.492 INFO:teuthology.orchestra.run.smithi028.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-24T16:58:07.493 INFO:teuthology.orchestra.run.smithi105.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [601 kB] 2024-04-24T16:58:07.493 INFO:teuthology.orchestra.run.smithi028.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-24T16:58:07.493 INFO:teuthology.orchestra.run.smithi028.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-24T16:58:07.498 INFO:teuthology.orchestra.run.smithi105.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [163 kB] 2024-04-24T16:58:07.501 INFO:teuthology.orchestra.run.smithi105.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-04-24T16:58:07.502 INFO:teuthology.orchestra.run.smithi105.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-04-24T16:58:07.512 INFO:teuthology.orchestra.run.smithi028.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-24T16:58:07.525 INFO:teuthology.orchestra.run.smithi028.stdout:Hit:18 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-24T16:58:07.535 INFO:teuthology.orchestra.run.smithi105.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-04-24T16:58:07.535 INFO:teuthology.orchestra.run.smithi105.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [618 kB] 2024-04-24T16:58:07.536 INFO:teuthology.orchestra.run.smithi105.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-04-24T16:58:07.536 INFO:teuthology.orchestra.run.smithi105.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-04-24T16:58:07.544 INFO:teuthology.orchestra.run.smithi105.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [303 kB] 2024-04-24T16:58:07.546 INFO:teuthology.orchestra.run.smithi028.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-04-24T16:58:07.550 INFO:teuthology.orchestra.run.smithi105.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-24T16:58:07.551 INFO:teuthology.orchestra.run.smithi105.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [38.1 kB] 2024-04-24T16:58:07.552 INFO:teuthology.orchestra.run.smithi105.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,830 kB] 2024-04-24T16:58:07.584 INFO:teuthology.orchestra.run.smithi105.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [311 kB] 2024-04-24T16:58:07.588 INFO:teuthology.orchestra.run.smithi105.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-24T16:58:07.588 INFO:teuthology.orchestra.run.smithi105.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,070 kB] 2024-04-24T16:58:07.600 INFO:teuthology.orchestra.run.smithi105.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [700 kB] 2024-04-24T16:58:07.607 INFO:teuthology.orchestra.run.smithi105.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [244 kB] 2024-04-24T16:58:07.609 INFO:teuthology.orchestra.run.smithi105.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-24T16:58:07.610 INFO:teuthology.orchestra.run.smithi105.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] 2024-04-24T16:58:07.610 INFO:teuthology.orchestra.run.smithi105.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,472 B] 2024-04-24T16:58:07.611 INFO:teuthology.orchestra.run.smithi105.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] 2024-04-24T16:58:07.615 INFO:teuthology.orchestra.run.smithi105.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-24T16:58:07.616 INFO:teuthology.orchestra.run.smithi105.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [82.9 kB] 2024-04-24T16:58:07.616 INFO:teuthology.orchestra.run.smithi105.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [90.8 kB] 2024-04-24T16:58:07.631 INFO:teuthology.orchestra.run.smithi105.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-24T16:58:07.631 INFO:teuthology.orchestra.run.smithi105.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-24T16:58:07.631 INFO:teuthology.orchestra.run.smithi105.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [29.8 kB] 2024-04-24T16:58:07.632 INFO:teuthology.orchestra.run.smithi105.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [18.5 kB] 2024-04-24T16:58:07.632 INFO:teuthology.orchestra.run.smithi105.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-24T16:58:07.635 INFO:teuthology.orchestra.run.smithi105.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-24T16:58:07.643 INFO:teuthology.orchestra.run.smithi028.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-04-24T16:58:07.714 INFO:teuthology.orchestra.run.smithi028.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,610 kB] 2024-04-24T16:58:07.818 INFO:teuthology.orchestra.run.smithi028.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [618 kB] 2024-04-24T16:58:07.827 INFO:teuthology.orchestra.run.smithi028.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [303 kB] 2024-04-24T16:58:07.830 INFO:teuthology.orchestra.run.smithi028.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-04-24T16:58:07.830 INFO:teuthology.orchestra.run.smithi028.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,830 kB] 2024-04-24T16:58:07.849 INFO:teuthology.orchestra.run.smithi028.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [38.1 kB] 2024-04-24T16:58:07.850 INFO:teuthology.orchestra.run.smithi028.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [311 kB] 2024-04-24T16:58:07.853 INFO:teuthology.orchestra.run.smithi028.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-04-24T16:58:07.853 INFO:teuthology.orchestra.run.smithi028.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,070 kB] 2024-04-24T16:58:07.864 INFO:teuthology.orchestra.run.smithi028.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [700 kB] 2024-04-24T16:58:07.870 INFO:teuthology.orchestra.run.smithi028.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [244 kB] 2024-04-24T16:58:07.872 INFO:teuthology.orchestra.run.smithi028.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-04-24T16:58:07.873 INFO:teuthology.orchestra.run.smithi028.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,472 B] 2024-04-24T16:58:07.873 INFO:teuthology.orchestra.run.smithi028.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.7 kB] 2024-04-24T16:58:07.874 INFO:teuthology.orchestra.run.smithi028.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.4 kB] 2024-04-24T16:58:07.894 INFO:teuthology.orchestra.run.smithi028.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-04-24T16:58:07.894 INFO:teuthology.orchestra.run.smithi028.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [82.9 kB] 2024-04-24T16:58:07.895 INFO:teuthology.orchestra.run.smithi028.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [90.8 kB] 2024-04-24T16:58:07.896 INFO:teuthology.orchestra.run.smithi028.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-04-24T16:58:07.896 INFO:teuthology.orchestra.run.smithi028.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-04-24T16:58:07.896 INFO:teuthology.orchestra.run.smithi028.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [29.8 kB] 2024-04-24T16:58:07.897 INFO:teuthology.orchestra.run.smithi028.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [18.5 kB] 2024-04-24T16:58:07.914 INFO:teuthology.orchestra.run.smithi028.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-04-24T16:58:07.918 INFO:teuthology.orchestra.run.smithi028.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-04-24T16:58:13.113 INFO:teuthology.orchestra.run.smithi105.stdout:Fetched 13.3 MB in 2s (7,078 kB/s) 2024-04-24T16:58:13.440 INFO:teuthology.orchestra.run.smithi028.stdout:Fetched 13.3 MB in 2s (6,920 kB/s) 2024-04-24T16:58:14.532 INFO:teuthology.orchestra.run.smithi105.stdout:Reading package lists... 2024-04-24T16:58:14.551 DEBUG:teuthology.orchestra.run.smithi105:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-24T16:58:14.617 INFO:teuthology.orchestra.run.smithi105.stdout:Reading package lists... 2024-04-24T16:58:14.809 INFO:teuthology.orchestra.run.smithi105.stdout:Building dependency tree... 2024-04-24T16:58:14.809 INFO:teuthology.orchestra.run.smithi105.stdout:Reading state information... 2024-04-24T16:58:14.864 INFO:teuthology.orchestra.run.smithi028.stdout:Reading package lists... 2024-04-24T16:58:14.887 DEBUG:teuthology.orchestra.run.smithi028:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-24T16:58:14.942 INFO:teuthology.orchestra.run.smithi028.stdout:Reading package lists... 2024-04-24T16:58:14.963 INFO:teuthology.orchestra.run.smithi105.stdout:The following packages were automatically installed and are no longer required: 2024-04-24T16:58:14.963 INFO:teuthology.orchestra.run.smithi105.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-24T16:58:14.963 INFO:teuthology.orchestra.run.smithi105.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-24T16:58:14.964 INFO:teuthology.orchestra.run.smithi105.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-24T16:58:14.964 INFO:teuthology.orchestra.run.smithi105.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-24T16:58:14.964 INFO:teuthology.orchestra.run.smithi105.stdout: python2.7-minimal 2024-04-24T16:58:14.964 INFO:teuthology.orchestra.run.smithi105.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-24T16:58:14.964 INFO:teuthology.orchestra.run.smithi105.stdout:The following additional packages will be installed: 2024-04-24T16:58:14.965 INFO:teuthology.orchestra.run.smithi105.stdout: linux-generic linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-24T16:58:14.965 INFO:teuthology.orchestra.run.smithi105.stdout: linux-headers-generic linux-image-5.15.0-105-generic 2024-04-24T16:58:14.965 INFO:teuthology.orchestra.run.smithi105.stdout: linux-modules-5.15.0-105-generic linux-modules-extra-5.15.0-105-generic 2024-04-24T16:58:14.966 INFO:teuthology.orchestra.run.smithi105.stdout:Suggested packages: 2024-04-24T16:58:14.966 INFO:teuthology.orchestra.run.smithi105.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-24T16:58:14.966 INFO:teuthology.orchestra.run.smithi105.stdout:Recommended packages: 2024-04-24T16:58:14.966 INFO:teuthology.orchestra.run.smithi105.stdout: thermald 2024-04-24T16:58:15.012 INFO:teuthology.orchestra.run.smithi105.stdout:The following NEW packages will be installed: 2024-04-24T16:58:15.012 INFO:teuthology.orchestra.run.smithi105.stdout: linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-24T16:58:15.012 INFO:teuthology.orchestra.run.smithi105.stdout: linux-image-5.15.0-105-generic linux-modules-5.15.0-105-generic 2024-04-24T16:58:15.012 INFO:teuthology.orchestra.run.smithi105.stdout: linux-modules-extra-5.15.0-105-generic 2024-04-24T16:58:15.014 INFO:teuthology.orchestra.run.smithi105.stdout:The following packages will be upgraded: 2024-04-24T16:58:15.014 INFO:teuthology.orchestra.run.smithi105.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-24T16:58:15.129 INFO:teuthology.orchestra.run.smithi028.stdout:Building dependency tree... 2024-04-24T16:58:15.129 INFO:teuthology.orchestra.run.smithi028.stdout:Reading state information... 2024-04-24T16:58:15.289 INFO:teuthology.orchestra.run.smithi028.stdout:The following packages were automatically installed and are no longer required: 2024-04-24T16:58:15.289 INFO:teuthology.orchestra.run.smithi028.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-24T16:58:15.289 INFO:teuthology.orchestra.run.smithi028.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-24T16:58:15.290 INFO:teuthology.orchestra.run.smithi028.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-24T16:58:15.290 INFO:teuthology.orchestra.run.smithi028.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-04-24T16:58:15.290 INFO:teuthology.orchestra.run.smithi028.stdout: python2.7-minimal 2024-04-24T16:58:15.290 INFO:teuthology.orchestra.run.smithi028.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-24T16:58:15.291 INFO:teuthology.orchestra.run.smithi028.stdout:The following additional packages will be installed: 2024-04-24T16:58:15.291 INFO:teuthology.orchestra.run.smithi028.stdout: linux-generic linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-24T16:58:15.291 INFO:teuthology.orchestra.run.smithi028.stdout: linux-headers-generic linux-image-5.15.0-105-generic 2024-04-24T16:58:15.292 INFO:teuthology.orchestra.run.smithi028.stdout: linux-modules-5.15.0-105-generic linux-modules-extra-5.15.0-105-generic 2024-04-24T16:58:15.293 INFO:teuthology.orchestra.run.smithi028.stdout:Suggested packages: 2024-04-24T16:58:15.293 INFO:teuthology.orchestra.run.smithi028.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-04-24T16:58:15.293 INFO:teuthology.orchestra.run.smithi028.stdout:Recommended packages: 2024-04-24T16:58:15.293 INFO:teuthology.orchestra.run.smithi028.stdout: thermald 2024-04-24T16:58:15.338 INFO:teuthology.orchestra.run.smithi028.stdout:The following NEW packages will be installed: 2024-04-24T16:58:15.339 INFO:teuthology.orchestra.run.smithi028.stdout: linux-headers-5.15.0-105 linux-headers-5.15.0-105-generic 2024-04-24T16:58:15.339 INFO:teuthology.orchestra.run.smithi028.stdout: linux-image-5.15.0-105-generic linux-modules-5.15.0-105-generic 2024-04-24T16:58:15.339 INFO:teuthology.orchestra.run.smithi028.stdout: linux-modules-extra-5.15.0-105-generic 2024-04-24T16:58:15.340 INFO:teuthology.orchestra.run.smithi028.stdout:The following packages will be upgraded: 2024-04-24T16:58:15.340 INFO:teuthology.orchestra.run.smithi028.stdout: linux-generic linux-headers-generic linux-image-generic 2024-04-24T16:58:15.410 INFO:teuthology.orchestra.run.smithi028.stdout:3 upgraded, 5 newly installed, 0 to remove and 315 not upgraded. 2024-04-24T16:58:15.411 INFO:teuthology.orchestra.run.smithi028.stdout:Need to get 113 MB of archives. 2024-04-24T16:58:15.411 INFO:teuthology.orchestra.run.smithi028.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-24T16:58:15.411 INFO:teuthology.orchestra.run.smithi028.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-24T16:58:15.620 INFO:teuthology.orchestra.run.smithi105.stdout:3 upgraded, 5 newly installed, 0 to remove and 315 not upgraded. 2024-04-24T16:58:15.620 INFO:teuthology.orchestra.run.smithi105.stdout:Need to get 113 MB of archives. 2024-04-24T16:58:15.620 INFO:teuthology.orchestra.run.smithi105.stdout:After this operation, 583 MB of additional disk space will be used. 2024-04-24T16:58:15.620 INFO:teuthology.orchestra.run.smithi105.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-24T16:58:16.600 INFO:teuthology.orchestra.run.smithi028.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-24T16:58:16.602 INFO:teuthology.orchestra.run.smithi105.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-24T16:58:16.903 INFO:teuthology.orchestra.run.smithi105.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-24T16:58:16.958 INFO:teuthology.orchestra.run.smithi028.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-24T16:58:18.672 INFO:teuthology.orchestra.run.smithi105.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-24T16:58:18.672 INFO:teuthology.orchestra.run.smithi105.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-24T16:58:18.672 INFO:teuthology.orchestra.run.smithi105.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-24T16:58:18.872 INFO:teuthology.orchestra.run.smithi105.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-24T16:58:18.917 INFO:teuthology.orchestra.run.smithi105.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-24T16:58:18.983 INFO:teuthology.orchestra.run.smithi028.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-24T16:58:18.983 INFO:teuthology.orchestra.run.smithi028.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-24T16:58:18.983 INFO:teuthology.orchestra.run.smithi028.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-24T16:58:19.138 INFO:teuthology.orchestra.run.smithi028.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-24T16:58:19.173 INFO:teuthology.orchestra.run.smithi028.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-24T16:58:19.308 INFO:teuthology.orchestra.run.smithi105.stdout:Fetched 113 MB in 4s (29.1 MB/s) 2024-04-24T16:58:19.500 INFO:teuthology.orchestra.run.smithi105.stdout:Selecting previously unselected package linux-modules-5.15.0-105-generic. 2024-04-24T16:58:19.599 INFO:teuthology.orchestra.run.smithi028.stdout:Fetched 113 MB in 4s (29.6 MB/s) 2024-04-24T16:58:19.756 INFO:teuthology.orchestra.run.smithi028.stdout:Selecting previously unselected package linux-modules-5.15.0-105-generic. 2024-04-24T16:58:21.520 INFO:teuthology.orchestra.run.smithi105.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-24T16:58:21.524 INFO:teuthology.orchestra.run.smithi105.stdout:Preparing to unpack .../0-linux-modules-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T16:58:21.680 INFO:teuthology.orchestra.run.smithi105.stdout:Unpacking linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:21.750 INFO:teuthology.orchestra.run.smithi028.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-24T16:58:21.754 INFO:teuthology.orchestra.run.smithi028.stdout:Preparing to unpack .../0-linux-modules-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T16:58:21.845 INFO:teuthology.orchestra.run.smithi028.stdout:Unpacking linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:23.746 INFO:teuthology.orchestra.run.smithi028.stdout:Selecting previously unselected package linux-image-5.15.0-105-generic. 2024-04-24T16:58:23.768 INFO:teuthology.orchestra.run.smithi028.stdout:Preparing to unpack .../1-linux-image-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T16:58:23.851 INFO:teuthology.orchestra.run.smithi028.stdout:Unpacking linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:24.289 INFO:teuthology.orchestra.run.smithi105.stdout:Selecting previously unselected package linux-image-5.15.0-105-generic. 2024-04-24T16:58:24.311 INFO:teuthology.orchestra.run.smithi105.stdout:Preparing to unpack .../1-linux-image-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T16:58:24.333 INFO:teuthology.orchestra.run.smithi028.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-105-generic. 2024-04-24T16:58:24.354 INFO:teuthology.orchestra.run.smithi028.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T16:58:24.391 INFO:teuthology.orchestra.run.smithi028.stdout:Unpacking linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:24.407 INFO:teuthology.orchestra.run.smithi105.stdout:Unpacking linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:24.826 INFO:teuthology.orchestra.run.smithi105.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-105-generic. 2024-04-24T16:58:24.846 INFO:teuthology.orchestra.run.smithi105.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T16:58:24.884 INFO:teuthology.orchestra.run.smithi105.stdout:Unpacking linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:30.559 INFO:teuthology.orchestra.run.smithi028.stdout:Preparing to unpack .../3-linux-generic_5.15.0.105.102_amd64.deb ... 2024-04-24T16:58:30.685 INFO:teuthology.orchestra.run.smithi028.stdout:Unpacking linux-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-24T16:58:30.976 INFO:teuthology.orchestra.run.smithi028.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.105.102_amd64.deb ... 2024-04-24T16:58:31.096 INFO:teuthology.orchestra.run.smithi028.stdout:Unpacking linux-image-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-24T16:58:31.399 INFO:teuthology.orchestra.run.smithi028.stdout:Selecting previously unselected package linux-headers-5.15.0-105. 2024-04-24T16:58:31.407 INFO:teuthology.orchestra.run.smithi105.stdout:Preparing to unpack .../3-linux-generic_5.15.0.105.102_amd64.deb ... 2024-04-24T16:58:31.422 INFO:teuthology.orchestra.run.smithi028.stdout:Preparing to unpack .../5-linux-headers-5.15.0-105_5.15.0-105.115_all.deb ... 2024-04-24T16:58:31.466 INFO:teuthology.orchestra.run.smithi028.stdout:Unpacking linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-24T16:58:31.526 INFO:teuthology.orchestra.run.smithi105.stdout:Unpacking linux-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-24T16:58:31.859 INFO:teuthology.orchestra.run.smithi105.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.105.102_amd64.deb ... 2024-04-24T16:58:32.005 INFO:teuthology.orchestra.run.smithi105.stdout:Unpacking linux-image-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-24T16:58:32.308 INFO:teuthology.orchestra.run.smithi105.stdout:Selecting previously unselected package linux-headers-5.15.0-105. 2024-04-24T16:58:32.330 INFO:teuthology.orchestra.run.smithi105.stdout:Preparing to unpack .../5-linux-headers-5.15.0-105_5.15.0-105.115_all.deb ... 2024-04-24T16:58:32.374 INFO:teuthology.orchestra.run.smithi105.stdout:Unpacking linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-24T16:58:37.321 INFO:teuthology.orchestra.run.smithi028.stdout:Selecting previously unselected package linux-headers-5.15.0-105-generic. 2024-04-24T16:58:37.359 INFO:teuthology.orchestra.run.smithi028.stdout:Preparing to unpack .../6-linux-headers-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T16:58:37.396 INFO:teuthology.orchestra.run.smithi028.stdout:Unpacking linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:37.991 INFO:teuthology.orchestra.run.smithi105.stdout:Selecting previously unselected package linux-headers-5.15.0-105-generic. 2024-04-24T16:58:38.029 INFO:teuthology.orchestra.run.smithi105.stdout:Preparing to unpack .../6-linux-headers-5.15.0-105-generic_5.15.0-105.115_amd64.deb ... 2024-04-24T16:58:38.067 INFO:teuthology.orchestra.run.smithi105.stdout:Unpacking linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:40.049 INFO:teuthology.orchestra.run.smithi028.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.105.102_amd64.deb ... 2024-04-24T16:58:40.174 INFO:teuthology.orchestra.run.smithi028.stdout:Unpacking linux-headers-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-24T16:58:40.499 INFO:teuthology.orchestra.run.smithi028.stdout:Setting up linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-24T16:58:40.620 INFO:teuthology.orchestra.run.smithi028.stdout:Setting up linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:40.746 INFO:teuthology.orchestra.run.smithi028.stdout:Setting up linux-headers-generic (5.15.0.105.102) ... 2024-04-24T16:58:40.874 INFO:teuthology.orchestra.run.smithi028.stdout:Setting up linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:41.387 INFO:teuthology.orchestra.run.smithi105.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.105.102_amd64.deb ... 2024-04-24T16:58:41.519 INFO:teuthology.orchestra.run.smithi105.stdout:Unpacking linux-headers-generic (5.15.0.105.102) over (5.15.0.56.54) ... 2024-04-24T16:58:41.885 INFO:teuthology.orchestra.run.smithi105.stdout:Setting up linux-headers-5.15.0-105 (5.15.0-105.115) ... 2024-04-24T16:58:41.999 INFO:teuthology.orchestra.run.smithi105.stdout:Setting up linux-headers-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:42.125 INFO:teuthology.orchestra.run.smithi105.stdout:Setting up linux-headers-generic (5.15.0.105.102) ... 2024-04-24T16:58:42.207 INFO:teuthology.orchestra.run.smithi028.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-24T16:58:42.207 INFO:teuthology.orchestra.run.smithi028.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-24T16:58:42.207 INFO:teuthology.orchestra.run.smithi028.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-105-generic 2024-04-24T16:58:42.207 INFO:teuthology.orchestra.run.smithi028.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-105-generic 2024-04-24T16:58:42.270 INFO:teuthology.orchestra.run.smithi105.stdout:Setting up linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:42.359 INFO:teuthology.orchestra.run.smithi028.stdout:Setting up linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:43.628 INFO:teuthology.orchestra.run.smithi105.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-04-24T16:58:43.628 INFO:teuthology.orchestra.run.smithi105.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-04-24T16:58:43.629 INFO:teuthology.orchestra.run.smithi105.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-105-generic 2024-04-24T16:58:43.629 INFO:teuthology.orchestra.run.smithi105.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-105-generic 2024-04-24T16:58:43.761 INFO:teuthology.orchestra.run.smithi028.stdout:Setting up linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:43.763 INFO:teuthology.orchestra.run.smithi105.stdout:Setting up linux-modules-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:45.132 INFO:teuthology.orchestra.run.smithi105.stdout:Setting up linux-modules-extra-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:45.153 INFO:teuthology.orchestra.run.smithi028.stdout:Setting up linux-image-generic (5.15.0.105.102) ... 2024-04-24T16:58:45.295 INFO:teuthology.orchestra.run.smithi028.stdout:Setting up linux-generic (5.15.0.105.102) ... 2024-04-24T16:58:45.422 INFO:teuthology.orchestra.run.smithi028.stdout:Processing triggers for linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:45.490 INFO:teuthology.orchestra.run.smithi028.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-24T16:58:45.490 INFO:teuthology.orchestra.run.smithi028.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-105-generic 2024-04-24T16:58:46.550 INFO:teuthology.orchestra.run.smithi105.stdout:Setting up linux-image-generic (5.15.0.105.102) ... 2024-04-24T16:58:46.677 INFO:teuthology.orchestra.run.smithi105.stdout:Setting up linux-generic (5.15.0.105.102) ... 2024-04-24T16:58:46.803 INFO:teuthology.orchestra.run.smithi105.stdout:Processing triggers for linux-image-5.15.0-105-generic (5.15.0-105.115) ... 2024-04-24T16:58:46.871 INFO:teuthology.orchestra.run.smithi105.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-04-24T16:58:46.871 INFO:teuthology.orchestra.run.smithi105.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-105-generic 2024-04-24T16:58:59.993 INFO:teuthology.orchestra.run.smithi028.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-24T16:58:59.993 INFO:teuthology.orchestra.run.smithi028.stdout:Sourcing file `/etc/default/grub' 2024-04-24T16:59:00.009 INFO:teuthology.orchestra.run.smithi028.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-24T16:59:00.033 INFO:teuthology.orchestra.run.smithi028.stdout:Generating grub configuration file ... 2024-04-24T16:59:00.304 INFO:teuthology.orchestra.run.smithi028.stdout:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-24T16:59:00.327 INFO:teuthology.orchestra.run.smithi028.stdout:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-24T16:59:00.607 INFO:teuthology.orchestra.run.smithi028.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-24T16:59:00.613 INFO:teuthology.orchestra.run.smithi028.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-24T16:59:00.690 INFO:teuthology.orchestra.run.smithi028.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-24T16:59:00.696 INFO:teuthology.orchestra.run.smithi028.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-24T16:59:00.852 INFO:teuthology.orchestra.run.smithi028.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-24T16:59:00.853 INFO:teuthology.orchestra.run.smithi028.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-24T16:59:00.853 INFO:teuthology.orchestra.run.smithi028.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-24T16:59:00.887 INFO:teuthology.orchestra.run.smithi028.stdout:done 2024-04-24T16:59:01.120 INFO:teuthology.orchestra.run.smithi105.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-04-24T16:59:01.120 INFO:teuthology.orchestra.run.smithi105.stdout:Sourcing file `/etc/default/grub' 2024-04-24T16:59:01.153 INFO:teuthology.orchestra.run.smithi105.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-24T16:59:01.183 INFO:teuthology.orchestra.run.smithi105.stdout:Generating grub configuration file ... 2024-04-24T16:59:01.337 DEBUG:teuthology.orchestra.run.smithi028:> dpkg -s linux-image-generic 2024-04-24T16:59:01.361 INFO:teuthology.orchestra.run.smithi028.stdout:Package: linux-image-generic 2024-04-24T16:59:01.361 INFO:teuthology.orchestra.run.smithi028.stdout:Status: install ok installed 2024-04-24T16:59:01.361 INFO:teuthology.orchestra.run.smithi028.stdout:Priority: optional 2024-04-24T16:59:01.361 INFO:teuthology.orchestra.run.smithi028.stdout:Section: kernel 2024-04-24T16:59:01.362 INFO:teuthology.orchestra.run.smithi028.stdout:Installed-Size: 21 2024-04-24T16:59:01.362 INFO:teuthology.orchestra.run.smithi028.stdout:Maintainer: Ubuntu Kernel Team 2024-04-24T16:59:01.362 INFO:teuthology.orchestra.run.smithi028.stdout:Architecture: amd64 2024-04-24T16:59:01.362 INFO:teuthology.orchestra.run.smithi028.stdout:Source: linux-meta 2024-04-24T16:59:01.362 INFO:teuthology.orchestra.run.smithi028.stdout:Version: 5.15.0.105.102 2024-04-24T16:59:01.362 INFO:teuthology.orchestra.run.smithi028.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-24T16:59:01.362 INFO:teuthology.orchestra.run.smithi028.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-24T16:59:01.362 INFO:teuthology.orchestra.run.smithi028.stdout:Recommends: thermald 2024-04-24T16:59:01.362 INFO:teuthology.orchestra.run.smithi028.stdout:Description: Generic Linux kernel image 2024-04-24T16:59:01.362 INFO:teuthology.orchestra.run.smithi028.stdout: This package will always depend on the latest generic kernel image 2024-04-24T16:59:01.362 INFO:teuthology.orchestra.run.smithi028.stdout: available. 2024-04-24T16:59:01.362 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-105-generic 2024-04-24T16:59:01.363 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-24T16:59:01.363 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-24T16:59:01.363 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-24T16:59:01.363 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi028.front.sepia.ceph.com, path=None, version=distro) 2024-04-24T16:59:01.363 DEBUG:teuthology.orchestra.run.smithi028:> sudo apt-get clean 2024-04-24T16:59:01.464 INFO:teuthology.orchestra.run.smithi105.stdout:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-24T16:59:01.487 INFO:teuthology.orchestra.run.smithi105.stdout:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-24T16:59:01.520 DEBUG:teuthology.orchestra.run.smithi028:> sudo apt-get update 2024-04-24T16:59:01.660 INFO:teuthology.orchestra.run.smithi028.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-24T16:59:01.675 INFO:teuthology.orchestra.run.smithi028.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-24T16:59:01.701 INFO:teuthology.orchestra.run.smithi028.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-24T16:59:01.725 INFO:teuthology.orchestra.run.smithi028.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-24T16:59:01.805 INFO:teuthology.orchestra.run.smithi105.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-24T16:59:01.810 INFO:teuthology.orchestra.run.smithi105.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-24T16:59:01.877 INFO:teuthology.orchestra.run.smithi105.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-24T16:59:01.883 INFO:teuthology.orchestra.run.smithi105.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-24T16:59:02.051 INFO:teuthology.orchestra.run.smithi105.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-24T16:59:02.051 INFO:teuthology.orchestra.run.smithi105.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-04-24T16:59:02.051 INFO:teuthology.orchestra.run.smithi105.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-24T16:59:02.087 INFO:teuthology.orchestra.run.smithi105.stdout:done 2024-04-24T16:59:02.571 DEBUG:teuthology.orchestra.run.smithi105:> dpkg -s linux-image-generic 2024-04-24T16:59:02.590 INFO:teuthology.orchestra.run.smithi105.stdout:Package: linux-image-generic 2024-04-24T16:59:02.590 INFO:teuthology.orchestra.run.smithi105.stdout:Status: install ok installed 2024-04-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.stdout:Priority: optional 2024-04-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.stdout:Section: kernel 2024-04-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.stdout:Installed-Size: 21 2024-04-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.stdout:Maintainer: Ubuntu Kernel Team 2024-04-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.stdout:Architecture: amd64 2024-04-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.stdout:Source: linux-meta 2024-04-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.stdout:Version: 5.15.0.105.102 2024-04-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.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-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.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-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.stdout:Recommends: thermald 2024-04-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.stdout:Description: Generic Linux kernel image 2024-04-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.stdout: This package will always depend on the latest generic kernel image 2024-04-24T16:59:02.591 INFO:teuthology.orchestra.run.smithi105.stdout: available. 2024-04-24T16:59:02.592 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-105-generic 2024-04-24T16:59:02.592 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-24T16:59:02.592 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-24T16:59:02.592 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-24T16:59:02.592 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi105.front.sepia.ceph.com, path=None, version=distro) 2024-04-24T16:59:02.592 DEBUG:teuthology.orchestra.run.smithi105:> sudo apt-get clean 2024-04-24T16:59:02.795 DEBUG:teuthology.orchestra.run.smithi105:> sudo apt-get update 2024-04-24T16:59:03.040 INFO:teuthology.orchestra.run.smithi105.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-04-24T16:59:03.082 INFO:teuthology.orchestra.run.smithi028.stdout:Reading package lists... 2024-04-24T16:59:03.101 DEBUG:teuthology.orchestra.run.smithi028:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-24T16:59:03.167 INFO:teuthology.orchestra.run.smithi028.stdout:Reading package lists... 2024-04-24T16:59:03.372 INFO:teuthology.orchestra.run.smithi028.stdout:Building dependency tree... 2024-04-24T16:59:03.372 INFO:teuthology.orchestra.run.smithi028.stdout:Reading state information... 2024-04-24T16:59:03.413 INFO:teuthology.orchestra.run.smithi105.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-04-24T16:59:03.426 INFO:teuthology.orchestra.run.smithi105.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-04-24T16:59:03.446 INFO:teuthology.orchestra.run.smithi105.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-04-24T16:59:03.555 INFO:teuthology.orchestra.run.smithi028.stdout:linux-image-generic is already the newest version (5.15.0.105.102). 2024-04-24T16:59:03.556 INFO:teuthology.orchestra.run.smithi028.stdout:The following packages were automatically installed and are no longer required: 2024-04-24T16:59:03.556 INFO:teuthology.orchestra.run.smithi028.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-24T16:59:03.556 INFO:teuthology.orchestra.run.smithi028.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-24T16:59:03.556 INFO:teuthology.orchestra.run.smithi028.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-24T16:59:03.556 INFO:teuthology.orchestra.run.smithi028.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-24T16:59:03.556 INFO:teuthology.orchestra.run.smithi028.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-24T16:59:03.556 INFO:teuthology.orchestra.run.smithi028.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-24T16:59:03.597 INFO:teuthology.orchestra.run.smithi028.stdout:0 upgraded, 0 newly installed, 0 to remove and 315 not upgraded. 2024-04-24T16:59:03.599 DEBUG:teuthology.orchestra.run.smithi028:> dpkg -s linux-image-generic 2024-04-24T16:59:03.615 INFO:teuthology.orchestra.run.smithi028.stdout:Package: linux-image-generic 2024-04-24T16:59:03.615 INFO:teuthology.orchestra.run.smithi028.stdout:Status: install ok installed 2024-04-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.stdout:Priority: optional 2024-04-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.stdout:Section: kernel 2024-04-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.stdout:Installed-Size: 21 2024-04-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.stdout:Maintainer: Ubuntu Kernel Team 2024-04-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.stdout:Architecture: amd64 2024-04-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.stdout:Source: linux-meta 2024-04-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.stdout:Version: 5.15.0.105.102 2024-04-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.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-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.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-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.stdout:Recommends: thermald 2024-04-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.stdout:Description: Generic Linux kernel image 2024-04-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.stdout: This package will always depend on the latest generic kernel image 2024-04-24T16:59:03.616 INFO:teuthology.orchestra.run.smithi028.stdout: available. 2024-04-24T16:59:03.617 DEBUG:teuthology.orchestra.run.smithi028:> mktemp 2024-04-24T16:59:03.664 INFO:teuthology.orchestra.run.smithi028.stdout:/tmp/tmp.JDFToiLAr5 2024-04-24T16:59:03.664 DEBUG:teuthology.orchestra.run.smithi028:> sudo cp /boot/grub/grub.cfg /tmp/tmp.JDFToiLAr5 2024-04-24T16:59:03.718 DEBUG:teuthology.orchestra.run.smithi028:> sudo chmod 0666 /tmp/tmp.JDFToiLAr5 2024-04-24T16:59:03.846 DEBUG:teuthology.orchestra.remote:smithi028:/tmp/tmp.JDFToiLAr5 is 10KB 2024-04-24T16:59:03.859 DEBUG:teuthology.orchestra.run.smithi028:> rm -fr /tmp/tmp.JDFToiLAr5 2024-04-24T16:59:03.864 DEBUG:teuthology.orchestra.run.smithi028:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-24T16:59:03.919 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T16:59:03.919 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-24T16:59:03.919 DEBUG:teuthology.orchestra.run.smithi028:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-24T16:59:03.990 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-105-generic 2024-04-24T16:59:03.990 DEBUG:teuthology.orchestra.run.smithi028:> sudo update-grub 2024-04-24T16:59:04.701 INFO:teuthology.orchestra.run.smithi105.stdout:Reading package lists... 2024-04-24T16:59:04.718 DEBUG:teuthology.orchestra.run.smithi105:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-04-24T16:59:04.778 INFO:teuthology.orchestra.run.smithi105.stdout:Reading package lists... 2024-04-24T16:59:04.979 INFO:teuthology.orchestra.run.smithi105.stdout:Building dependency tree... 2024-04-24T16:59:04.979 INFO:teuthology.orchestra.run.smithi105.stdout:Reading state information... 2024-04-24T16:59:05.053 INFO:teuthology.orchestra.run.smithi028.stderr:Sourcing file `/etc/default/grub' 2024-04-24T16:59:05.054 INFO:teuthology.orchestra.run.smithi028.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-24T16:59:05.056 INFO:teuthology.orchestra.run.smithi028.stderr:Generating grub configuration file ... 2024-04-24T16:59:05.147 INFO:teuthology.orchestra.run.smithi105.stdout:linux-image-generic is already the newest version (5.15.0.105.102). 2024-04-24T16:59:05.148 INFO:teuthology.orchestra.run.smithi105.stdout:The following packages were automatically installed and are no longer required: 2024-04-24T16:59:05.148 INFO:teuthology.orchestra.run.smithi105.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-04-24T16:59:05.148 INFO:teuthology.orchestra.run.smithi105.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-04-24T16:59:05.148 INFO:teuthology.orchestra.run.smithi105.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-04-24T16:59:05.148 INFO:teuthology.orchestra.run.smithi105.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-04-24T16:59:05.148 INFO:teuthology.orchestra.run.smithi105.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-04-24T16:59:05.148 INFO:teuthology.orchestra.run.smithi105.stdout:Use 'sudo apt autoremove' to remove them. 2024-04-24T16:59:05.187 INFO:teuthology.orchestra.run.smithi105.stdout:0 upgraded, 0 newly installed, 0 to remove and 315 not upgraded. 2024-04-24T16:59:05.189 DEBUG:teuthology.orchestra.run.smithi105:> dpkg -s linux-image-generic 2024-04-24T16:59:05.204 INFO:teuthology.orchestra.run.smithi105.stdout:Package: linux-image-generic 2024-04-24T16:59:05.204 INFO:teuthology.orchestra.run.smithi105.stdout:Status: install ok installed 2024-04-24T16:59:05.204 INFO:teuthology.orchestra.run.smithi105.stdout:Priority: optional 2024-04-24T16:59:05.204 INFO:teuthology.orchestra.run.smithi105.stdout:Section: kernel 2024-04-24T16:59:05.204 INFO:teuthology.orchestra.run.smithi105.stdout:Installed-Size: 21 2024-04-24T16:59:05.204 INFO:teuthology.orchestra.run.smithi105.stdout:Maintainer: Ubuntu Kernel Team 2024-04-24T16:59:05.204 INFO:teuthology.orchestra.run.smithi105.stdout:Architecture: amd64 2024-04-24T16:59:05.205 INFO:teuthology.orchestra.run.smithi105.stdout:Source: linux-meta 2024-04-24T16:59:05.205 INFO:teuthology.orchestra.run.smithi105.stdout:Version: 5.15.0.105.102 2024-04-24T16:59:05.205 INFO:teuthology.orchestra.run.smithi105.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-24T16:59:05.205 INFO:teuthology.orchestra.run.smithi105.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-24T16:59:05.205 INFO:teuthology.orchestra.run.smithi105.stdout:Recommends: thermald 2024-04-24T16:59:05.205 INFO:teuthology.orchestra.run.smithi105.stdout:Description: Generic Linux kernel image 2024-04-24T16:59:05.205 INFO:teuthology.orchestra.run.smithi105.stdout: This package will always depend on the latest generic kernel image 2024-04-24T16:59:05.205 INFO:teuthology.orchestra.run.smithi105.stdout: available. 2024-04-24T16:59:05.205 DEBUG:teuthology.orchestra.run.smithi105:> mktemp 2024-04-24T16:59:05.225 INFO:teuthology.orchestra.run.smithi028.stderr:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-24T16:59:05.231 INFO:teuthology.orchestra.run.smithi028.stderr:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-24T16:59:05.250 INFO:teuthology.orchestra.run.smithi105.stdout:/tmp/tmp.vWhfRfa0Ia 2024-04-24T16:59:05.250 DEBUG:teuthology.orchestra.run.smithi105:> sudo cp /boot/grub/grub.cfg /tmp/tmp.vWhfRfa0Ia 2024-04-24T16:59:05.306 DEBUG:teuthology.orchestra.run.smithi105:> sudo chmod 0666 /tmp/tmp.vWhfRfa0Ia 2024-04-24T16:59:05.423 DEBUG:teuthology.orchestra.remote:smithi105:/tmp/tmp.vWhfRfa0Ia is 10KB 2024-04-24T16:59:05.436 DEBUG:teuthology.orchestra.run.smithi105:> rm -fr /tmp/tmp.vWhfRfa0Ia 2024-04-24T16:59:05.441 DEBUG:teuthology.orchestra.run.smithi105:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-04-24T16:59:05.461 INFO:teuthology.orchestra.run.smithi028.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-24T16:59:05.466 INFO:teuthology.orchestra.run.smithi028.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-24T16:59:05.493 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-24T16:59:05.493 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-04-24T16:59:05.493 DEBUG:teuthology.orchestra.run.smithi105:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-04-24T16:59:05.509 INFO:teuthology.orchestra.run.smithi028.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-24T16:59:05.518 INFO:teuthology.orchestra.run.smithi028.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-24T16:59:05.585 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-105-generic 2024-04-24T16:59:05.585 DEBUG:teuthology.orchestra.run.smithi105:> sudo update-grub 2024-04-24T16:59:05.694 INFO:teuthology.orchestra.run.smithi028.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-24T16:59:05.694 INFO:teuthology.orchestra.run.smithi028.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-24T16:59:05.694 INFO:teuthology.orchestra.run.smithi028.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-24T16:59:05.725 INFO:teuthology.orchestra.run.smithi028.stderr:done 2024-04-24T16:59:05.734 DEBUG:teuthology.orchestra.run.smithi028:> sudo shutdown -r now 2024-04-24T16:59:06.854 INFO:teuthology.orchestra.run.smithi105.stderr:Sourcing file `/etc/default/grub' 2024-04-24T16:59:06.855 INFO:teuthology.orchestra.run.smithi105.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-04-24T16:59:06.861 INFO:teuthology.orchestra.run.smithi105.stderr:Generating grub configuration file ... 2024-04-24T16:59:07.093 INFO:teuthology.orchestra.run.smithi105.stderr:Found linux image: /boot/vmlinuz-5.15.0-105-generic 2024-04-24T16:59:07.100 INFO:teuthology.orchestra.run.smithi105.stderr:Found initrd image: /boot/initrd.img-5.15.0-105-generic 2024-04-24T16:59:07.340 INFO:teuthology.orchestra.run.smithi105.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-04-24T16:59:07.345 INFO:teuthology.orchestra.run.smithi105.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-04-24T16:59:07.387 INFO:teuthology.orchestra.run.smithi105.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-04-24T16:59:07.392 INFO:teuthology.orchestra.run.smithi105.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-04-24T16:59:07.559 INFO:teuthology.orchestra.run.smithi105.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-04-24T16:59:07.559 INFO:teuthology.orchestra.run.smithi105.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-04-24T16:59:07.559 INFO:teuthology.orchestra.run.smithi105.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-04-24T16:59:07.585 INFO:teuthology.orchestra.run.smithi105.stderr:done 2024-04-24T16:59:07.587 DEBUG:teuthology.orchestra.run.smithi105:> sudo shutdown -r now 2024-04-24T16:59:35.806 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-24T16:59:35.807 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi028.front.sepia.ceph.com' 2024-04-24T16:59:35.808 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi028.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T16:59:37.592 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-24T16:59:37.593 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-24T16:59:37.593 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T16:59:54.275 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.28 2024-04-24T16:59:56.062 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.105 2024-04-24T17:00:03.282 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi028.front.sepia.ceph.com' 2024-04-24T17:00:03.283 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi028.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T17:00:05.065 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-24T17:00:05.065 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T17:00:08.126 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.105 2024-04-24T17:00:20.138 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-24T17:00:20.139 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T17:00:21.662 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.28 2024-04-24T17:00:33.674 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi028.front.sepia.ceph.com' 2024-04-24T17:00:33.675 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi028.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T17:00:36.734 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.28 2024-04-24T17:00:38.562 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.105 2024-04-24T17:00:51.746 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi028.front.sepia.ceph.com' 2024-04-24T17:00:51.747 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi028.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T17:00:52.045 DEBUG:teuthology.orchestra.run.smithi028:> true 2024-04-24T17:00:52.519 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi028.front.sepia.ceph.com' 2024-04-24T17:00:52.519 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-105-generic"... 2024-04-24T17:00:52.519 DEBUG:teuthology.orchestra.run.smithi028:> uname -r 2024-04-24T17:00:52.569 INFO:teuthology.orchestra.run.smithi028.stdout:5.15.0-105-generic 2024-04-24T17:00:52.569 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-105-generic vs 5.15.0-105-generic 2024-04-24T17:00:52.569 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-24T17:00:52.570 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-24T17:00:53.563 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-24T17:00:53.564 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T17:00:53.570 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-24T17:00:53.570 DEBUG:teuthology.orchestra.run.smithi028:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-24T17:00:53.645 INFO:teuthology.orchestra.run.smithi028.stdout:ttyS1 2024-04-24T17:00:53.674 DEBUG:teuthology.parallel:result is None 2024-04-24T17:00:53.912 DEBUG:teuthology.orchestra.run.smithi105:> true 2024-04-24T17:00:54.882 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-24T17:00:54.883 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-105-generic"... 2024-04-24T17:00:54.883 DEBUG:teuthology.orchestra.run.smithi105:> uname -r 2024-04-24T17:00:54.931 INFO:teuthology.orchestra.run.smithi105.stdout:5.15.0-105-generic 2024-04-24T17:00:54.931 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-105-generic vs 5.15.0-105-generic 2024-04-24T17:00:54.931 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-24T17:00:54.931 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-04-24T17:00:55.932 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-24T17:00:55.932 DEBUG:teuthology.orchestra.run.smithi105:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-24T17:00:56.012 INFO:teuthology.orchestra.run.smithi105.stdout:ttyS1 2024-04-24T17:00:56.052 DEBUG:teuthology.parallel:result is None 2024-04-24T17:00:56.053 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-24T17:00:56.060 INFO:teuthology.task.internal:Creating test directory... 2024-04-24T17:00:56.060 DEBUG:teuthology.orchestra.run.smithi028:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-24T17:00:56.063 DEBUG:teuthology.orchestra.run.smithi105:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-24T17:00:56.071 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-24T17:00:56.077 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-24T17:00:56.084 INFO:teuthology.task.internal:Creating archive directory... 2024-04-24T17:00:56.084 DEBUG:teuthology.orchestra.run.smithi028:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-24T17:00:56.114 DEBUG:teuthology.orchestra.run.smithi105:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-24T17:00:56.134 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-24T17:00:56.140 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-24T17:00:56.141 DEBUG:teuthology.orchestra.run.smithi028:> 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-24T17:00:56.170 DEBUG:teuthology.orchestra.run.smithi105:> 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-24T17:00:56.191 INFO:teuthology.orchestra.run.smithi028.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-24T17:00:56.194 INFO:teuthology.orchestra.run.smithi105.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-24T17:00:56.199 INFO:teuthology.orchestra.run.smithi028.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-24T17:00:56.202 INFO:teuthology.orchestra.run.smithi105.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-24T17:00:56.204 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-24T17:00:56.210 INFO:teuthology.task.internal:Configuring sudo... 2024-04-24T17:00:56.211 DEBUG:teuthology.orchestra.run.smithi028:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-24T17:00:56.246 DEBUG:teuthology.orchestra.run.smithi105:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-24T17:00:56.269 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-24T17:00:56.279 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-24T17:00:56.279 DEBUG:teuthology.orchestra.run.smithi028:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-24T17:00:56.314 DEBUG:teuthology.orchestra.run.smithi105:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-24T17:00:56.319 DEBUG:teuthology.orchestra.run.smithi028:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-24T17:00:56.365 DEBUG:teuthology.orchestra.run.smithi028:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-24T17:00:56.413 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:00:56.413 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-24T17:00:56.476 DEBUG:teuthology.orchestra.run.smithi105:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-24T17:00:56.481 DEBUG:teuthology.orchestra.run.smithi105:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-24T17:00:56.531 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-24T17:00:56.531 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-24T17:00:56.594 DEBUG:teuthology.orchestra.run.smithi028:> sudo service rsyslog restart 2024-04-24T17:00:56.596 DEBUG:teuthology.orchestra.run.smithi105:> sudo service rsyslog restart 2024-04-24T17:00:56.673 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-24T17:00:56.681 INFO:teuthology.task.internal:Starting timer... 2024-04-24T17:00:56.681 INFO:teuthology.run_tasks:Running task pcp... 2024-04-24T17:00:56.696 INFO:teuthology.run_tasks:Running task selinux... 2024-04-24T17:00:56.707 DEBUG:teuthology.task.selinux:Excluding smithi028: OS 'ubuntu' does not support SELinux 2024-04-24T17:00:56.707 DEBUG:teuthology.task.selinux:Excluding smithi105: OS 'ubuntu' does not support SELinux 2024-04-24T17:00:56.707 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-24T17:00:56.708 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-04-24T17:00:56.708 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-24T17:00:56.708 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-24T17:00:56.720 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-24T17:00:56.736 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-24T17:00:56.738 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi028.front.sepia.ceph.com,smithi105.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-24T17:08:05.597 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi028.front.sepia.ceph.com'), Remote(name='ubuntu@smithi105.front.sepia.ceph.com')] 2024-04-24T17:08:05.599 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi028.front.sepia.ceph.com' 2024-04-24T17:08:05.600 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi028.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T17:08:05.683 DEBUG:teuthology.orchestra.run.smithi028:> true 2024-04-24T17:08:05.763 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi028.front.sepia.ceph.com' 2024-04-24T17:08:05.763 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-24T17:08:05.764 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-24T17:08:05.845 DEBUG:teuthology.orchestra.run.smithi105:> true 2024-04-24T17:08:05.918 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-24T17:08:05.918 INFO:teuthology.run_tasks:Running task clock... 2024-04-24T17:08:05.933 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-24T17:08:05.933 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-24T17:08:05.934 DEBUG:teuthology.orchestra.run.smithi028:> 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-24T17:08:05.937 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-24T17:08:05.937 DEBUG:teuthology.orchestra.run.smithi105:> 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-24T17:08:05.963 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-24T17:08:05.963 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: Command line: ntpd -gq 2024-04-24T17:08:05.963 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: ---------------------------------------------------- 2024-04-24T17:08:05.963 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: ntp-4 is maintained by Network Time Foundation, 2024-04-24T17:08:05.963 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-24T17:08:05.963 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: corporation. Support and training for ntp-4 are 2024-04-24T17:08:05.964 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: available at https://www.nwtime.org/support 2024-04-24T17:08:05.964 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: ---------------------------------------------------- 2024-04-24T17:08:05.965 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: proto: precision = 0.073 usec (-24) 2024-04-24T17:08:05.965 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: basedate set to 2022-02-04 2024-04-24T17:08:05.965 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: gps base set to 2022-02-06 (week 2196) 2024-04-24T17:08:05.965 INFO:teuthology.orchestra.run.smithi028.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-24T17:08:05.965 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-24T17:08:05.966 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: restrict ::: KOD does nothing without LIMITED. 2024-04-24T17:08:05.966 INFO:teuthology.orchestra.run.smithi028.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-24T17:08:05.967 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: Listen and drop on 0 v6wildcard [::]:123 2024-04-24T17:08:05.967 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-24T17:08:05.967 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: Listen normally on 2 lo 127.0.0.1:123 2024-04-24T17:08:05.967 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: Listen normally on 3 ens1f0 172.21.15.28:123 2024-04-24T17:08:05.967 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: Listen normally on 4 lo [::1]:123 2024-04-24T17:08:05.967 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: Listen normally on 5 ens1f0 [fe80::ae1f:6bff:fea5:ca3c%4]:123 2024-04-24T17:08:05.967 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:05 ntpd[17140]: Listening on routing socket on fd #22 for interface updates 2024-04-24T17:08:05.989 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-04-24T17:08:05.989 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: Command line: ntpd -gq 2024-04-24T17:08:05.989 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: ---------------------------------------------------- 2024-04-24T17:08:05.989 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: ntp-4 is maintained by Network Time Foundation, 2024-04-24T17:08:05.989 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-04-24T17:08:05.989 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: corporation. Support and training for ntp-4 are 2024-04-24T17:08:05.989 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: available at https://www.nwtime.org/support 2024-04-24T17:08:05.989 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: ---------------------------------------------------- 2024-04-24T17:08:05.989 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: proto: precision = 0.046 usec (-24) 2024-04-24T17:08:05.989 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: basedate set to 2022-02-04 2024-04-24T17:08:05.989 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: gps base set to 2022-02-06 (week 2196) 2024-04-24T17:08:05.990 INFO:teuthology.orchestra.run.smithi105.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-24T17:08:05.990 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-04-24T17:08:05.990 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: restrict ::: KOD does nothing without LIMITED. 2024-04-24T17:08:05.990 INFO:teuthology.orchestra.run.smithi105.stderr:restrict ::: KOD does nothing without LIMITED. 2024-04-24T17:08:05.991 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: Listen and drop on 0 v6wildcard [::]:123 2024-04-24T17:08:05.991 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-04-24T17:08:05.991 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: Listen normally on 2 lo 127.0.0.1:123 2024-04-24T17:08:05.991 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: Listen normally on 3 enp3s0f1 172.21.15.105:123 2024-04-24T17:08:05.992 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: Listen normally on 4 lo [::1]:123 2024-04-24T17:08:05.992 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d429%5]:123 2024-04-24T17:08:05.992 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:05 ntpd[17208]: Listening on routing socket on fd #22 for interface updates 2024-04-24T17:08:06.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:06 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:06.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:06 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:06.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:06 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:06.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:06 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:06.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:06 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:06.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:06 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:06.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:06 ntpd[17140]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:06.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:06 ntpd[17140]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:06.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:06 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:06.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:06 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:06.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:06 ntpd[17140]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:06.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:06 ntpd[17140]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:06.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:06.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:06 ntpd[17208]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:07.963 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:07 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:07.963 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:07 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:08.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:08 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:08.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:08 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:08.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:08 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:08.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:08 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:08.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:08 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:08.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:08 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:08.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:08 ntpd[17140]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:08.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:08 ntpd[17140]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:08.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:08 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:08.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:08 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:08.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:08 ntpd[17140]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:08.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:08 ntpd[17140]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:08.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:08 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:08.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:08 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:08.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:08 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:08.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:08 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:08.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:08 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:08.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:08 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:08.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:08 ntpd[17208]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:08.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:08 ntpd[17208]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:08.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:08 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:08.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:08 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:08.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:08 ntpd[17208]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:08.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:08 ntpd[17208]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:09.963 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:09 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:09.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:09 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:09.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:09 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:09.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:09 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:09.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:09 ntpd[17140]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:09.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:09 ntpd[17140]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:09.988 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:09 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:09.988 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:09 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:09.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:09 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:09.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:09 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:09.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:09 ntpd[17208]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:09.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:09 ntpd[17208]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:10.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:10 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:10.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:10 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:10.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:10 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:10.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:10 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:10.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:10 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:10.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:10 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:10.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:10 ntpd[17140]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:10.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:10 ntpd[17140]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:10.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:10 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:10.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:10 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:10.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:10 ntpd[17140]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:10.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:10 ntpd[17140]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:10.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:10 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:10.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:10 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:10.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:10 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:10.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:10 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:10.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:10 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:10.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:10 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:10.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:10 ntpd[17208]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:10.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:10 ntpd[17208]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:10.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:10 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:10.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:10 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:10.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:10 ntpd[17208]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:10.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:10 ntpd[17208]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:11.963 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:11 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:11.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:11 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:11.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:11 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:11.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:11 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:11.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:11 ntpd[17140]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:11.964 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:11 ntpd[17140]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:11.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:11 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:11.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:11 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:11.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:11 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:11.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:11 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:11.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:11 ntpd[17208]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:11.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:11 ntpd[17208]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:12.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:12 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:12.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:12 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:12.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:12 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:12.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:12 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:12.965 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:12 ntpd[17140]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:12.966 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:12 ntpd[17140]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:12.966 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:12 ntpd[17140]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:12.966 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:12 ntpd[17140]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:12.966 INFO:teuthology.orchestra.run.smithi028.stdout:24 Apr 17:08:12 ntpd[17140]: ntpd: time slew -0.002199 s 2024-04-24T17:08:12.967 INFO:teuthology.orchestra.run.smithi028.stdout:ntpd: time slew -0.002199s 2024-04-24T17:08:12.967 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:12 ntpd[17140]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-24T17:08:12.967 INFO:teuthology.orchestra.run.smithi028.stderr:24 Apr 17:08:12 ntpd[17140]: can't open /var/log/ntpstats/loopstats.20240424: Permission denied 2024-04-24T17:08:12.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:12 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:12.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:12 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:12.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:12 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:12.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:12 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:12.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:12 ntpd[17208]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-04-24T17:08:12.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:12 ntpd[17208]: can't open /var/log/ntpstats/rawstats.20240424: Permission denied 2024-04-24T17:08:12.989 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:12 ntpd[17208]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-04-24T17:08:12.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:12 ntpd[17208]: can't open /var/log/ntpstats/peerstats.20240424: Permission denied 2024-04-24T17:08:12.990 INFO:teuthology.orchestra.run.smithi105.stdout:24 Apr 17:08:12 ntpd[17208]: ntpd: time slew -0.001058 s 2024-04-24T17:08:12.990 INFO:teuthology.orchestra.run.smithi105.stdout:ntpd: time slew -0.001058s 2024-04-24T17:08:12.990 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:12 ntpd[17208]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-04-24T17:08:12.991 INFO:teuthology.orchestra.run.smithi105.stderr:24 Apr 17:08:12 ntpd[17208]: can't open /var/log/ntpstats/loopstats.20240424: Permission denied 2024-04-24T17:08:13.012 INFO:teuthology.orchestra.run.smithi028.stdout: remote refid st t when poll reach delay offset jitter 2024-04-24T17:08:13.012 INFO:teuthology.orchestra.run.smithi028.stdout:============================================================================== 2024-04-24T17:08:13.012 INFO:teuthology.orchestra.run.smithi028.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T17:08:13.012 INFO:teuthology.orchestra.run.smithi028.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T17:08:13.012 INFO:teuthology.orchestra.run.smithi028.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T17:08:13.012 INFO:teuthology.orchestra.run.smithi028.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T17:08:13.040 INFO:teuthology.orchestra.run.smithi105.stdout: remote refid st t when poll reach delay offset jitter 2024-04-24T17:08:13.041 INFO:teuthology.orchestra.run.smithi105.stdout:============================================================================== 2024-04-24T17:08:13.041 INFO:teuthology.orchestra.run.smithi105.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T17:08:13.041 INFO:teuthology.orchestra.run.smithi105.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T17:08:13.041 INFO:teuthology.orchestra.run.smithi105.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T17:08:13.041 INFO:teuthology.orchestra.run.smithi105.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-04-24T17:08:13.042 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-04-24T17:08:13.052 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-04-24T17:08:13.052 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:08:13.052 DEBUG:teuthology.orchestra.run.smithi028:> dd if=/scratch_devs of=/dev/stdout 2024-04-24T17:08:13.059 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-24T17:08:13.059 DEBUG:teuthology.orchestra.run.smithi028:> stat /dev/vg_nvme/lv_1 2024-04-24T17:08:13.107 INFO:teuthology.orchestra.run.smithi028.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-24T17:08:13.107 INFO:teuthology.orchestra.run.smithi028.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T17:08:13.108 INFO:teuthology.orchestra.run.smithi028.stdout:Device: 5h/5d Inode: 888 Links: 1 2024-04-24T17:08:13.108 INFO:teuthology.orchestra.run.smithi028.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T17:08:13.108 INFO:teuthology.orchestra.run.smithi028.stdout:Access: 2024-04-24 17:04:43.448329002 +0000 2024-04-24T17:08:13.108 INFO:teuthology.orchestra.run.smithi028.stdout:Modify: 2024-04-24 17:04:43.444329038 +0000 2024-04-24T17:08:13.108 INFO:teuthology.orchestra.run.smithi028.stdout:Change: 2024-04-24 17:04:43.444329038 +0000 2024-04-24T17:08:13.108 INFO:teuthology.orchestra.run.smithi028.stdout: Birth: - 2024-04-24T17:08:13.109 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-24T17:08:13.162 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records in 2024-04-24T17:08:13.162 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records out 2024-04-24T17:08:13.162 INFO:teuthology.orchestra.run.smithi028.stderr:512 bytes copied, 0.000218258 s, 2.3 MB/s 2024-04-24T17:08:13.163 DEBUG:teuthology.orchestra.run.smithi028:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-24T17:08:13.213 DEBUG:teuthology.orchestra.run.smithi028:> stat /dev/vg_nvme/lv_2 2024-04-24T17:08:13.259 INFO:teuthology.orchestra.run.smithi028.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-24T17:08:13.259 INFO:teuthology.orchestra.run.smithi028.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T17:08:13.259 INFO:teuthology.orchestra.run.smithi028.stdout:Device: 5h/5d Inode: 905 Links: 1 2024-04-24T17:08:13.259 INFO:teuthology.orchestra.run.smithi028.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T17:08:13.259 INFO:teuthology.orchestra.run.smithi028.stdout:Access: 2024-04-24 17:04:44.188322393 +0000 2024-04-24T17:08:13.259 INFO:teuthology.orchestra.run.smithi028.stdout:Modify: 2024-04-24 17:04:43.920324786 +0000 2024-04-24T17:08:13.259 INFO:teuthology.orchestra.run.smithi028.stdout:Change: 2024-04-24 17:04:43.920324786 +0000 2024-04-24T17:08:13.259 INFO:teuthology.orchestra.run.smithi028.stdout: Birth: - 2024-04-24T17:08:13.260 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-24T17:08:13.315 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records in 2024-04-24T17:08:13.315 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records out 2024-04-24T17:08:13.315 INFO:teuthology.orchestra.run.smithi028.stderr:512 bytes copied, 0.00020364 s, 2.5 MB/s 2024-04-24T17:08:13.315 DEBUG:teuthology.orchestra.run.smithi028:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-24T17:08:13.364 DEBUG:teuthology.orchestra.run.smithi028:> stat /dev/vg_nvme/lv_3 2024-04-24T17:08:13.415 INFO:teuthology.orchestra.run.smithi028.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-24T17:08:13.415 INFO:teuthology.orchestra.run.smithi028.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T17:08:13.415 INFO:teuthology.orchestra.run.smithi028.stdout:Device: 5h/5d Inode: 921 Links: 1 2024-04-24T17:08:13.415 INFO:teuthology.orchestra.run.smithi028.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T17:08:13.415 INFO:teuthology.orchestra.run.smithi028.stdout:Access: 2024-04-24 17:04:44.684317963 +0000 2024-04-24T17:08:13.416 INFO:teuthology.orchestra.run.smithi028.stdout:Modify: 2024-04-24 17:04:44.436320178 +0000 2024-04-24T17:08:13.416 INFO:teuthology.orchestra.run.smithi028.stdout:Change: 2024-04-24 17:04:44.436320178 +0000 2024-04-24T17:08:13.416 INFO:teuthology.orchestra.run.smithi028.stdout: Birth: - 2024-04-24T17:08:13.416 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-24T17:08:13.470 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records in 2024-04-24T17:08:13.470 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records out 2024-04-24T17:08:13.470 INFO:teuthology.orchestra.run.smithi028.stderr:512 bytes copied, 0.000249315 s, 2.1 MB/s 2024-04-24T17:08:13.471 DEBUG:teuthology.orchestra.run.smithi028:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-24T17:08:13.520 DEBUG:teuthology.orchestra.run.smithi028:> stat /dev/vg_nvme/lv_4 2024-04-24T17:08:13.567 INFO:teuthology.orchestra.run.smithi028.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-24T17:08:13.567 INFO:teuthology.orchestra.run.smithi028.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T17:08:13.567 INFO:teuthology.orchestra.run.smithi028.stdout:Device: 5h/5d Inode: 940 Links: 1 2024-04-24T17:08:13.567 INFO:teuthology.orchestra.run.smithi028.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T17:08:13.568 INFO:teuthology.orchestra.run.smithi028.stdout:Access: 2024-04-24 17:04:45.188313460 +0000 2024-04-24T17:08:13.568 INFO:teuthology.orchestra.run.smithi028.stdout:Modify: 2024-04-24 17:04:44.916315889 +0000 2024-04-24T17:08:13.568 INFO:teuthology.orchestra.run.smithi028.stdout:Change: 2024-04-24 17:04:44.916315889 +0000 2024-04-24T17:08:13.568 INFO:teuthology.orchestra.run.smithi028.stdout: Birth: - 2024-04-24T17:08:13.568 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-24T17:08:13.621 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records in 2024-04-24T17:08:13.621 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records out 2024-04-24T17:08:13.621 INFO:teuthology.orchestra.run.smithi028.stderr:512 bytes copied, 0.000203578 s, 2.5 MB/s 2024-04-24T17:08:13.622 DEBUG:teuthology.orchestra.run.smithi028:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-24T17:08:13.672 DEBUG:teuthology.orchestra.run.smithi028:> 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-24T17:08:13.830 INFO:teuthology.orchestra.run.smithi028.stdout:loop 2024-04-24T17:08:13.831 INFO:tasks.nvme_loop:Connecting nvme_loop smithi028:/dev/vg_nvme/lv_1... 2024-04-24T17:08:13.831 DEBUG:teuthology.orchestra.run.smithi028:> 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-24T17:08:13.847 INFO:teuthology.orchestra.run.smithi028.stdout:1 2024-04-24T17:08:13.867 INFO:teuthology.orchestra.run.smithi028.stdout:/dev/vg_nvme/lv_11 2024-04-24T17:08:13.882 INFO:tasks.nvme_loop:Connecting nvme_loop smithi028:/dev/vg_nvme/lv_2... 2024-04-24T17:08:13.883 DEBUG:teuthology.orchestra.run.smithi028:> 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-24T17:08:13.944 INFO:teuthology.orchestra.run.smithi028.stdout:1 2024-04-24T17:08:13.963 INFO:teuthology.orchestra.run.smithi028.stdout:/dev/vg_nvme/lv_21 2024-04-24T17:08:13.980 INFO:tasks.nvme_loop:Connecting nvme_loop smithi028:/dev/vg_nvme/lv_3... 2024-04-24T17:08:13.980 DEBUG:teuthology.orchestra.run.smithi028:> 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-24T17:08:14.039 INFO:teuthology.orchestra.run.smithi028.stdout:1 2024-04-24T17:08:14.060 INFO:teuthology.orchestra.run.smithi028.stdout:/dev/vg_nvme/lv_31 2024-04-24T17:08:14.078 INFO:tasks.nvme_loop:Connecting nvme_loop smithi028:/dev/vg_nvme/lv_4... 2024-04-24T17:08:14.078 DEBUG:teuthology.orchestra.run.smithi028:> 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-24T17:08:14.135 INFO:teuthology.orchestra.run.smithi028.stdout:1 2024-04-24T17:08:14.154 INFO:teuthology.orchestra.run.smithi028.stdout:/dev/vg_nvme/lv_41 2024-04-24T17:08:14.172 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:08:14.172 DEBUG:teuthology.orchestra.run.smithi028:> dd if=/scratch_devs of=/dev/stdout 2024-04-24T17:08:14.219 DEBUG:teuthology.orchestra.run.smithi028:> sudo nvme list 2024-04-24T17:08:14.274 INFO:teuthology.orchestra.run.smithi028.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-24T17:08:14.274 INFO:teuthology.orchestra.run.smithi028.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-24T17:08:14.274 INFO:teuthology.orchestra.run.smithi028.stdout:/dev/nvme0n1 PHMB747401F4480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-04-24T17:08:14.274 INFO:teuthology.orchestra.run.smithi028.stdout:/dev/nvme1n1 76197780e086689a29bf Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T17:08:14.275 INFO:teuthology.orchestra.run.smithi028.stdout:/dev/nvme2n1 fbaaced5a91952bf200a Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T17:08:14.275 INFO:teuthology.orchestra.run.smithi028.stdout:/dev/nvme3n1 c4ca5e6bb6f560c3981c Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T17:08:14.275 INFO:teuthology.orchestra.run.smithi028.stdout:/dev/nvme4n1 7e2f7cef1f5ee75f4191 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T17:08:14.275 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-24T17:08:14.276 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:08:14.276 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd of=/scratch_devs 2024-04-24T17:08:14.329 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-24T17:08:14.330 DEBUG:teuthology.orchestra.run.smithi105:> dd if=/scratch_devs of=/dev/stdout 2024-04-24T17:08:14.335 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-24T17:08:14.335 DEBUG:teuthology.orchestra.run.smithi105:> stat /dev/vg_nvme/lv_1 2024-04-24T17:08:14.384 INFO:teuthology.orchestra.run.smithi105.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-24T17:08:14.384 INFO:teuthology.orchestra.run.smithi105.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T17:08:14.384 INFO:teuthology.orchestra.run.smithi105.stdout:Device: 5h/5d Inode: 882 Links: 1 2024-04-24T17:08:14.384 INFO:teuthology.orchestra.run.smithi105.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T17:08:14.384 INFO:teuthology.orchestra.run.smithi105.stdout:Access: 2024-04-24 17:04:42.449452958 +0000 2024-04-24T17:08:14.384 INFO:teuthology.orchestra.run.smithi105.stdout:Modify: 2024-04-24 17:04:42.221454995 +0000 2024-04-24T17:08:14.384 INFO:teuthology.orchestra.run.smithi105.stdout:Change: 2024-04-24 17:04:42.221454995 +0000 2024-04-24T17:08:14.384 INFO:teuthology.orchestra.run.smithi105.stdout: Birth: - 2024-04-24T17:08:14.385 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-24T17:08:14.439 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records in 2024-04-24T17:08:14.439 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records out 2024-04-24T17:08:14.439 INFO:teuthology.orchestra.run.smithi105.stderr:512 bytes copied, 0.000433823 s, 1.2 MB/s 2024-04-24T17:08:14.440 DEBUG:teuthology.orchestra.run.smithi105:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-24T17:08:14.489 DEBUG:teuthology.orchestra.run.smithi105:> stat /dev/vg_nvme/lv_2 2024-04-24T17:08:14.536 INFO:teuthology.orchestra.run.smithi105.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-24T17:08:14.536 INFO:teuthology.orchestra.run.smithi105.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T17:08:14.536 INFO:teuthology.orchestra.run.smithi105.stdout:Device: 5h/5d Inode: 901 Links: 1 2024-04-24T17:08:14.536 INFO:teuthology.orchestra.run.smithi105.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T17:08:14.536 INFO:teuthology.orchestra.run.smithi105.stdout:Access: 2024-04-24 17:04:42.925448707 +0000 2024-04-24T17:08:14.536 INFO:teuthology.orchestra.run.smithi105.stdout:Modify: 2024-04-24 17:04:42.689450815 +0000 2024-04-24T17:08:14.536 INFO:teuthology.orchestra.run.smithi105.stdout:Change: 2024-04-24 17:04:42.689450815 +0000 2024-04-24T17:08:14.536 INFO:teuthology.orchestra.run.smithi105.stdout: Birth: - 2024-04-24T17:08:14.537 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-24T17:08:14.589 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records in 2024-04-24T17:08:14.590 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records out 2024-04-24T17:08:14.590 INFO:teuthology.orchestra.run.smithi105.stderr:512 bytes copied, 0.000335649 s, 1.5 MB/s 2024-04-24T17:08:14.591 DEBUG:teuthology.orchestra.run.smithi105:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-24T17:08:14.641 DEBUG:teuthology.orchestra.run.smithi105:> stat /dev/vg_nvme/lv_3 2024-04-24T17:08:14.688 INFO:teuthology.orchestra.run.smithi105.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-24T17:08:14.688 INFO:teuthology.orchestra.run.smithi105.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T17:08:14.688 INFO:teuthology.orchestra.run.smithi105.stdout:Device: 5h/5d Inode: 917 Links: 1 2024-04-24T17:08:14.688 INFO:teuthology.orchestra.run.smithi105.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T17:08:14.688 INFO:teuthology.orchestra.run.smithi105.stdout:Access: 2024-04-24 17:04:43.401444454 +0000 2024-04-24T17:08:14.688 INFO:teuthology.orchestra.run.smithi105.stdout:Modify: 2024-04-24 17:04:43.137446812 +0000 2024-04-24T17:08:14.689 INFO:teuthology.orchestra.run.smithi105.stdout:Change: 2024-04-24 17:04:43.137446812 +0000 2024-04-24T17:08:14.689 INFO:teuthology.orchestra.run.smithi105.stdout: Birth: - 2024-04-24T17:08:14.689 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-24T17:08:14.742 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records in 2024-04-24T17:08:14.742 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records out 2024-04-24T17:08:14.742 INFO:teuthology.orchestra.run.smithi105.stderr:512 bytes copied, 0.000307385 s, 1.7 MB/s 2024-04-24T17:08:14.743 DEBUG:teuthology.orchestra.run.smithi105:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-24T17:08:14.793 DEBUG:teuthology.orchestra.run.smithi105:> stat /dev/vg_nvme/lv_4 2024-04-24T17:08:14.840 INFO:teuthology.orchestra.run.smithi105.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-24T17:08:14.840 INFO:teuthology.orchestra.run.smithi105.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-24T17:08:14.840 INFO:teuthology.orchestra.run.smithi105.stdout:Device: 5h/5d Inode: 933 Links: 1 2024-04-24T17:08:14.840 INFO:teuthology.orchestra.run.smithi105.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-24T17:08:14.840 INFO:teuthology.orchestra.run.smithi105.stdout:Access: 2024-04-24 17:04:43.909439917 +0000 2024-04-24T17:08:14.840 INFO:teuthology.orchestra.run.smithi105.stdout:Modify: 2024-04-24 17:04:43.629442419 +0000 2024-04-24T17:08:14.840 INFO:teuthology.orchestra.run.smithi105.stdout:Change: 2024-04-24 17:04:43.629442419 +0000 2024-04-24T17:08:14.841 INFO:teuthology.orchestra.run.smithi105.stdout: Birth: - 2024-04-24T17:08:14.841 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-24T17:08:14.894 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records in 2024-04-24T17:08:14.894 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records out 2024-04-24T17:08:14.894 INFO:teuthology.orchestra.run.smithi105.stderr:512 bytes copied, 0.000273239 s, 1.9 MB/s 2024-04-24T17:08:14.895 DEBUG:teuthology.orchestra.run.smithi105:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-24T17:08:14.945 DEBUG:teuthology.orchestra.run.smithi105:> 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-24T17:08:15.074 INFO:teuthology.orchestra.run.smithi105.stdout:loop 2024-04-24T17:08:15.075 INFO:tasks.nvme_loop:Connecting nvme_loop smithi105:/dev/vg_nvme/lv_1... 2024-04-24T17:08:15.076 DEBUG:teuthology.orchestra.run.smithi105:> 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-24T17:08:15.091 INFO:teuthology.orchestra.run.smithi105.stdout:1 2024-04-24T17:08:15.115 INFO:teuthology.orchestra.run.smithi105.stdout:/dev/vg_nvme/lv_11 2024-04-24T17:08:15.131 INFO:tasks.nvme_loop:Connecting nvme_loop smithi105:/dev/vg_nvme/lv_2... 2024-04-24T17:08:15.131 DEBUG:teuthology.orchestra.run.smithi105:> 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-24T17:08:15.187 INFO:teuthology.orchestra.run.smithi105.stdout:1 2024-04-24T17:08:15.206 INFO:teuthology.orchestra.run.smithi105.stdout:/dev/vg_nvme/lv_21 2024-04-24T17:08:15.222 INFO:tasks.nvme_loop:Connecting nvme_loop smithi105:/dev/vg_nvme/lv_3... 2024-04-24T17:08:15.222 DEBUG:teuthology.orchestra.run.smithi105:> 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-24T17:08:15.280 INFO:teuthology.orchestra.run.smithi105.stdout:1 2024-04-24T17:08:15.298 INFO:teuthology.orchestra.run.smithi105.stdout:/dev/vg_nvme/lv_31 2024-04-24T17:08:15.313 INFO:tasks.nvme_loop:Connecting nvme_loop smithi105:/dev/vg_nvme/lv_4... 2024-04-24T17:08:15.313 DEBUG:teuthology.orchestra.run.smithi105:> 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-24T17:08:15.371 INFO:teuthology.orchestra.run.smithi105.stdout:1 2024-04-24T17:08:15.389 INFO:teuthology.orchestra.run.smithi105.stdout:/dev/vg_nvme/lv_41 2024-04-24T17:08:15.404 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-24T17:08:15.405 DEBUG:teuthology.orchestra.run.smithi105:> dd if=/scratch_devs of=/dev/stdout 2024-04-24T17:08:15.452 DEBUG:teuthology.orchestra.run.smithi105:> sudo nvme list 2024-04-24T17:08:15.504 INFO:teuthology.orchestra.run.smithi105.stdout:Node SN Model Namespace Usage Format FW Rev 2024-04-24T17:08:15.505 INFO:teuthology.orchestra.run.smithi105.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-04-24T17:08:15.505 INFO:teuthology.orchestra.run.smithi105.stdout:/dev/nvme0n1 PHFT620400TR400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-04-24T17:08:15.505 INFO:teuthology.orchestra.run.smithi105.stdout:/dev/nvme1n1 1096d67162517f273e5e Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T17:08:15.505 INFO:teuthology.orchestra.run.smithi105.stdout:/dev/nvme2n1 107463279bc92385fdef Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T17:08:15.505 INFO:teuthology.orchestra.run.smithi105.stdout:/dev/nvme3n1 86a7b520f4b709be024f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T17:08:15.505 INFO:teuthology.orchestra.run.smithi105.stdout:/dev/nvme4n1 440ac4576328bae168b9 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-04-24T17:08:15.506 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-24T17:08:15.506 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-24T17:08:15.506 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/scratch_devs 2024-04-24T17:08:15.559 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-24T17:08:15.656 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-24T17:08:15.657 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc 2024-04-24T17:08:15.657 INFO:tasks.cephadm:Cluster fsid is 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:08:15.657 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-24T17:08:15.657 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-04-24T17:08:15.658 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi028': '172.21.15.28', 'mon.smithi105': '172.21.15.105'} 2024-04-24T17:08:15.658 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-24T17:08:15.658 DEBUG:teuthology.orchestra.run.smithi028:> sudo hostname $(hostname -s) 2024-04-24T17:08:15.673 DEBUG:teuthology.orchestra.run.smithi105:> sudo hostname $(hostname -s) 2024-04-24T17:08:15.687 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-24T17:08:15.688 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-24T17:08:16.037 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-24T17:08:16.183 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-24T17:08:16.185 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-24T17:08:16.185 DEBUG:teuthology.orchestra.run.smithi028:> 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-24T17:08:16.884 INFO:teuthology.orchestra.run.smithi028.stdout:-rw-rw-r-- 1 ubuntu ubuntu 789946 Apr 24 17:08 /home/ubuntu/cephtest/cephadm 2024-04-24T17:08:16.884 DEBUG:teuthology.orchestra.run.smithi105:> 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-24T17:08:18.219 INFO:teuthology.orchestra.run.smithi105.stdout:-rw-rw-r-- 1 ubuntu ubuntu 789946 Apr 24 17:08 /home/ubuntu/cephtest/cephadm 2024-04-24T17:08:18.220 DEBUG:teuthology.orchestra.run.smithi028:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-24T17:08:18.228 DEBUG:teuthology.orchestra.run.smithi105:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-24T17:08:18.245 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc on all hosts... 2024-04-24T17:08:18.245 DEBUG:teuthology.orchestra.run.smithi028:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc pull 2024-04-24T17:08:18.274 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc pull 2024-04-24T17:08:18.445 INFO:teuthology.orchestra.run.smithi105.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc... 2024-04-24T17:08:18.448 INFO:teuthology.orchestra.run.smithi028.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc... 2024-04-24T17:09:28.275 INFO:teuthology.orchestra.run.smithi028.stdout:{ 2024-04-24T17:09:28.275 INFO:teuthology.orchestra.run.smithi028.stdout: "ceph_version": "ceph version 19.0.0-3285-g5904d294 (5904d29475f5be602879d9fb26280e89b808d5cc) squid (dev)", 2024-04-24T17:09:28.276 INFO:teuthology.orchestra.run.smithi028.stdout: "image_id": "8bb2087275ff8b3edc22adaa46e72c303749ca6355b50780fa41551d025b2f8d", 2024-04-24T17:09:28.276 INFO:teuthology.orchestra.run.smithi028.stdout: "repo_digests": [ 2024-04-24T17:09:28.276 INFO:teuthology.orchestra.run.smithi028.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a" 2024-04-24T17:09:28.276 INFO:teuthology.orchestra.run.smithi028.stdout: ] 2024-04-24T17:09:28.276 INFO:teuthology.orchestra.run.smithi028.stdout:} 2024-04-24T17:09:29.666 INFO:teuthology.orchestra.run.smithi105.stdout:{ 2024-04-24T17:09:29.666 INFO:teuthology.orchestra.run.smithi105.stdout: "ceph_version": "ceph version 19.0.0-3285-g5904d294 (5904d29475f5be602879d9fb26280e89b808d5cc) squid (dev)", 2024-04-24T17:09:29.666 INFO:teuthology.orchestra.run.smithi105.stdout: "image_id": "8bb2087275ff8b3edc22adaa46e72c303749ca6355b50780fa41551d025b2f8d", 2024-04-24T17:09:29.666 INFO:teuthology.orchestra.run.smithi105.stdout: "repo_digests": [ 2024-04-24T17:09:29.666 INFO:teuthology.orchestra.run.smithi105.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a" 2024-04-24T17:09:29.666 INFO:teuthology.orchestra.run.smithi105.stdout: ] 2024-04-24T17:09:29.666 INFO:teuthology.orchestra.run.smithi105.stdout:} 2024-04-24T17:09:29.713 DEBUG:teuthology.orchestra.run.smithi028:> sudo mkdir -p /etc/ceph 2024-04-24T17:09:29.728 DEBUG:teuthology.orchestra.run.smithi105:> sudo mkdir -p /etc/ceph 2024-04-24T17:09:29.742 DEBUG:teuthology.orchestra.run.smithi028:> sudo chmod 777 /etc/ceph 2024-04-24T17:09:29.782 DEBUG:teuthology.orchestra.run.smithi105:> sudo chmod 777 /etc/ceph 2024-04-24T17:09:29.798 INFO:tasks.cephadm:Writing seed config... 2024-04-24T17:09:29.799 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-24T17:09:29.799 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-24T17:09:29.799 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-24T17:09:29.799 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-24T17:09:29.799 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-24T17:09:29.799 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-24T17:09:29.799 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-24T17:09:29.800 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-04-24T17:09:29.800 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:09:29.800 DEBUG:teuthology.orchestra.run.smithi028:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-24T17:09:29.831 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 = 3d5e4290-025d-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-24T17:09:29.831 DEBUG:teuthology.orchestra.run.smithi028:mon.smithi028> sudo journalctl -f -n 0 -u ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mon.smithi028.service 2024-04-24T17:09:29.876 INFO:tasks.cephadm:Bootstrapping... 2024-04-24T17:09:29.877 DEBUG:teuthology.orchestra.run.smithi028:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc -v bootstrap --fsid 3d5e4290-025d-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.28 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-24T17:09:30.096 INFO:teuthology.orchestra.run.smithi028.stdout:-------------------------------------------------------------------------------- 2024-04-24T17:09:30.096 INFO:teuthology.orchestra.run.smithi028.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc', '-v', 'bootstrap', '--fsid', '3d5e4290-025d-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.28', '--skip-admin-label'] 2024-04-24T17:09:30.097 INFO:teuthology.orchestra.run.smithi028.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-24T17:09:30.097 INFO:teuthology.orchestra.run.smithi028.stdout:Verifying podman|docker is present... 2024-04-24T17:09:30.097 INFO:teuthology.orchestra.run.smithi028.stdout:Verifying lvm2 is present... 2024-04-24T17:09:30.097 INFO:teuthology.orchestra.run.smithi028.stdout:Verifying time synchronization is in place... 2024-04-24T17:09:30.103 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-24T17:09:30.103 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-24T17:09:30.107 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-24T17:09:30.107 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout inactive 2024-04-24T17:09:30.111 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-04-24T17:09:30.112 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-04-24T17:09:30.115 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-04-24T17:09:30.116 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout inactive 2024-04-24T17:09:30.120 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-04-24T17:09:30.120 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout masked 2024-04-24T17:09:30.123 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-04-24T17:09:30.123 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout inactive 2024-04-24T17:09:30.127 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-04-24T17:09:30.127 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-04-24T17:09:30.131 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-04-24T17:09:30.131 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout inactive 2024-04-24T17:09:30.135 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout enabled 2024-04-24T17:09:30.139 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout active 2024-04-24T17:09:30.139 INFO:teuthology.orchestra.run.smithi028.stdout:Unit ntp.service is enabled and running 2024-04-24T17:09:30.139 INFO:teuthology.orchestra.run.smithi028.stdout:Repeating the final host check... 2024-04-24T17:09:30.140 INFO:teuthology.orchestra.run.smithi028.stdout:docker (/usr/bin/docker) is present 2024-04-24T17:09:30.140 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl is present 2024-04-24T17:09:30.140 INFO:teuthology.orchestra.run.smithi028.stdout:lvcreate is present 2024-04-24T17:09:30.143 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-24T17:09:30.143 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-24T17:09:30.146 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-24T17:09:30.147 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout inactive 2024-04-24T17:09:30.150 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-04-24T17:09:30.151 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-04-24T17:09:30.154 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-04-24T17:09:30.154 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout inactive 2024-04-24T17:09:30.158 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-04-24T17:09:30.158 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout masked 2024-04-24T17:09:30.162 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-04-24T17:09:30.162 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout inactive 2024-04-24T17:09:30.166 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-04-24T17:09:30.166 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-04-24T17:09:30.169 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-04-24T17:09:30.169 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout inactive 2024-04-24T17:09:30.173 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout enabled 2024-04-24T17:09:30.178 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stdout active 2024-04-24T17:09:30.178 INFO:teuthology.orchestra.run.smithi028.stdout:Unit ntp.service is enabled and running 2024-04-24T17:09:30.178 INFO:teuthology.orchestra.run.smithi028.stdout:Host looks OK 2024-04-24T17:09:30.178 INFO:teuthology.orchestra.run.smithi028.stdout:Cluster fsid: 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:30.178 INFO:teuthology.orchestra.run.smithi028.stdout:Acquiring lock 140494939334944 on /run/cephadm/3d5e4290-025d-11ef-bc93-c7b262605968.lock 2024-04-24T17:09:30.178 INFO:teuthology.orchestra.run.smithi028.stdout:Lock 140494939334944 acquired on /run/cephadm/3d5e4290-025d-11ef-bc93-c7b262605968.lock 2024-04-24T17:09:30.178 INFO:teuthology.orchestra.run.smithi028.stdout:Verifying IP 172.21.15.28 port 3300 ... 2024-04-24T17:09:30.178 INFO:teuthology.orchestra.run.smithi028.stdout:Verifying IP 172.21.15.28 port 6789 ... 2024-04-24T17:09:30.178 INFO:teuthology.orchestra.run.smithi028.stdout:Base mon IP(s) is [172.21.15.28:3300, 172.21.15.28:6789], mon addrv is [v2:172.21.15.28:3300,v1:172.21.15.28:6789] 2024-04-24T17:09:30.180 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-04-24T17:09:30.181 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-04-24T17:09:30.181 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.28 2024-04-24T17:09:30.183 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-24T17:09:30.183 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-04-24T17:09:30.183 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1746sec hoplimit 64 pref medium 2024-04-24T17:09:30.185 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-24T17:09:30.185 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-24T17:09:30.185 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-24T17:09:30.185 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-04-24T17:09:30.185 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/sbin/ip: stdout inet6 fe80::ae1f:6bff:fea5:ca3c/64 scope link 2024-04-24T17:09:30.185 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-24T17:09:30.186 INFO:teuthology.orchestra.run.smithi028.stdout:Mon IP `172.21.15.28` is in CIDR network `172.21.0.0/20` 2024-04-24T17:09:30.186 INFO:teuthology.orchestra.run.smithi028.stdout:Mon IP `172.21.15.28` is in CIDR network `172.21.0.0/20` 2024-04-24T17:09:30.186 INFO:teuthology.orchestra.run.smithi028.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-04-24T17:09:30.186 INFO:teuthology.orchestra.run.smithi028.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-24T17:09:30.186 INFO:teuthology.orchestra.run.smithi028.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc... 2024-04-24T17:09:30.447 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/docker: stdout 5904d29475f5be602879d9fb26280e89b808d5cc: Pulling from ceph-ci/ceph 2024-04-24T17:09:30.447 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/docker: stdout Digest: sha256:7d58b69a27db4d75e45a15a3a40c6148076eda7e4bc8fdbe5fb876f29532e51a 2024-04-24T17:09:30.447 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:30.447 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5904d29475f5be602879d9fb26280e89b808d5cc 2024-04-24T17:09:31.828 INFO:teuthology.orchestra.run.smithi028.stdout:ceph: stdout ceph version 19.0.0-3285-g5904d294 (5904d29475f5be602879d9fb26280e89b808d5cc) squid (dev) 2024-04-24T17:09:31.828 INFO:teuthology.orchestra.run.smithi028.stdout:Ceph version: ceph version 19.0.0-3285-g5904d294 (5904d29475f5be602879d9fb26280e89b808d5cc) squid (dev) 2024-04-24T17:09:31.828 INFO:teuthology.orchestra.run.smithi028.stdout:Extracting ceph user uid/gid from container image... 2024-04-24T17:09:32.908 INFO:teuthology.orchestra.run.smithi028.stdout:stat: stdout 167 167 2024-04-24T17:09:32.908 INFO:teuthology.orchestra.run.smithi028.stdout:Creating initial keys... 2024-04-24T17:09:34.145 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-authtool: stdout AQDNPClmZuHTIxAAcqsbjKDTa7qWT+VHWiyTNg== 2024-04-24T17:09:35.282 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-authtool: stdout AQDOPClmvvrdLRAAcgyqNgvVtCvwz41kMkeRtQ== 2024-04-24T17:09:36.437 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-authtool: stdout AQDPPClm/QLfNxAAYx10O10JoUeovuYwkCX7Ag== 2024-04-24T17:09:36.438 INFO:teuthology.orchestra.run.smithi028.stdout:Creating initial monmap... 2024-04-24T17:09:37.557 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-24T17:09:37.557 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-24T17:09:37.557 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:37.557 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-24T17:09:37.557 INFO:teuthology.orchestra.run.smithi028.stdout:monmaptool for smithi028 [v2:172.21.15.28:3300,v1:172.21.15.28:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-24T17:09:37.558 INFO:teuthology.orchestra.run.smithi028.stdout:setting min_mon_release = quincy 2024-04-24T17:09:37.558 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/monmaptool: set fsid to 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:37.558 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-24T17:09:37.558 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:09:37.558 INFO:teuthology.orchestra.run.smithi028.stdout:Creating mon... 2024-04-24T17:09:38.779 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.265+0000 7f139c0edc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-24T17:09:39.058 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.265+0000 7f139c0edc80 1 imported monmap: 2024-04-24T17:09:39.058 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-04-24T17:09:37.036869+0000 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr created 2024-04-24T17:09:37.036869+0000 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.28:3300/0,v1:172.21.15.28:6789/0] mon.smithi028 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.265+0000 7f139c0edc80 0 /usr/bin/ceph-mon: set fsid to 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: RocksDB version: 7.9.2 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Git sha 0 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Compile date 2024-04-24 13:56:12 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: DB SUMMARY 2024-04-24T17:09:39.059 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: DB Session ID: WIW8UN60209A2IWPFE0S 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi028/store.db dir, Total Num: 0, files: 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi028/store.db: 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.error_if_exists: 0 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.create_if_missing: 1 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.paranoid_checks: 1 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.env: 0x5645be691cc0 2024-04-24T17:09:39.060 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.info_log: 0x5645bfd4ef00 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.statistics: (nil) 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.use_fsync: 0 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_log_file_size: 0 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.allow_fallocate: 1 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.use_direct_reads: 0 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-24T17:09:39.061 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-24T17:09:39.062 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.db_log_dir: 2024-04-24T17:09:39.062 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.wal_dir: 2024-04-24T17:09:39.062 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-24T17:09:39.062 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-24T17:09:39.062 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-24T17:09:39.062 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-24T17:09:39.062 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-24T17:09:39.062 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-24T17:09:39.062 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-24T17:09:39.062 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-24T17:09:39.062 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.write_buffer_manager: 0x5645bfd1eaa0 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.unordered_write: 0 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.row_cache: None 2024-04-24T17:09:39.063 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.wal_filter: None 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.two_write_queues: 0 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.wal_compression: 0 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.atomic_flush: 0 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.log_readahead_size: 0 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-24T17:09:39.064 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_background_jobs: 2 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_background_compactions: -1 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_subcompactions: 1 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_open_files: -1 2024-04-24T17:09:39.065 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-24T17:09:39.066 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-24T17:09:39.066 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-24T17:09:39.066 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-24T17:09:39.066 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_background_flushes: -1 2024-04-24T17:09:39.066 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Compression algorithms supported: 2024-04-24T17:09:39.066 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-24T17:09:39.066 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: kZSTD supported: 0 2024-04-24T17:09:39.066 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: kXpressCompression supported: 0 2024-04-24T17:09:39.066 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-24T17:09:39.066 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: kZlibCompression supported: 1 2024-04-24T17:09:39.066 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: kSnappyCompression supported: 1 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: kLZ4Compression supported: 1 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: kBZip2Compression supported: 0 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi028/store.db/MANIFEST-000001 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.merge_operator: 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_filter: None 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-24T17:09:39.067 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5645bfd4f0e0) 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-04-24T17:09:39.068 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x5645bfd511f0 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-04-24T17:09:39.069 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-24T17:09:39.070 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compression: NoCompression 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.num_levels: 7 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-24T17:09:39.071 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-24T17:09:39.072 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-24T17:09:39.073 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-24T17:09:39.073 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-24T17:09:39.073 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-24T17:09:39.073 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-24T17:09:39.073 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-24T17:09:39.073 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-24T17:09:39.073 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-24T17:09:39.073 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-24T17:09:39.073 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-24T17:09:39.073 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-24T17:09:39.073 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-24T17:09:39.073 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-24T17:09:39.074 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.inplace_update_support: 0 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.bloom_locality: 0 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.max_successive_merges: 0 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.ttl: 2592000 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-24T17:09:39.075 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.enable_blob_files: false 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.min_blob_size: 0 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi028/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-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-24T17:09:39.076 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 0b9a9f53-8977-450a-a266-05057ce09d3c 2024-04-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.269+0000 7f139c0edc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-04-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.273+0000 7f139c0edc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5645bfe48000 2024-04-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.273+0000 7f139c0edc80 4 rocksdb: DB pointer 0x5645bfe38000 2024-04-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.273+0000 7f138c24d700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.273+0000 7f138c24d700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-04-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-04-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:39.077 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-04-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-04-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.078 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-04-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-04-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-04-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-04-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-04-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-04-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.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-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x5645bfd511f0#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 2.1e-05 secs_since: 0 2024-04-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-04-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-04-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr 2024-04-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.273+0000 7f139c0edc80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-04-24T17:09:39.079 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.273+0000 7f139c0edc80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-04-24T17:09:39.080 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph-mon: stderr debug 2024-04-24T17:09:38.273+0000 7f139c0edc80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi028 for mon.smithi028 2024-04-24T17:09:39.080 INFO:teuthology.orchestra.run.smithi028.stdout:create mon.smithi028 on 2024-04-24T17:09:39.242 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-04-24T17:09:39.486 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-3d5e4290-025d-11ef-bc93-c7b262605968.target -> /etc/systemd/system/ceph-3d5e4290-025d-11ef-bc93-c7b262605968.target. 2024-04-24T17:09:39.486 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-3d5e4290-025d-11ef-bc93-c7b262605968.target -> /etc/systemd/system/ceph-3d5e4290-025d-11ef-bc93-c7b262605968.target. 2024-04-24T17:09:39.774 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mon.smithi028 2024-04-24T17:09:39.775 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Failed to reset failed state of unit ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mon.smithi028.service: Unit ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mon.smithi028.service not loaded. 2024-04-24T17:09:39.979 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-3d5e4290-025d-11ef-bc93-c7b262605968.target.wants/ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mon.smithi028.service -> /etc/systemd/system/ceph-3d5e4290-025d-11ef-bc93-c7b262605968@.service. 2024-04-24T17:09:39.990 INFO:teuthology.orchestra.run.smithi028.stdout:firewalld does not appear to be present 2024-04-24T17:09:39.990 INFO:teuthology.orchestra.run.smithi028.stdout:Not possible to enable service . firewalld.service is not available 2024-04-24T17:09:39.990 INFO:teuthology.orchestra.run.smithi028.stdout:Waiting for mon to start... 2024-04-24T17:09:39.990 INFO:teuthology.orchestra.run.smithi028.stdout:Waiting for mon... 2024-04-24T17:09:41.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:41 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.213529+0000 mon.smithi028 (mon.0) 1 : cluster [INF] mon.smithi028 is new leader, mons smithi028 in quorum (ranks 0) 2024-04-24T17:09:42.040 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout cluster: 2024-04-24T17:09:42.040 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout id: 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout services: 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi028 (age 0.305684s) 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout data: 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout pgs: 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:09:42.041 INFO:teuthology.orchestra.run.smithi028.stdout:mon is available 2024-04-24T17:09:42.042 INFO:teuthology.orchestra.run.smithi028.stdout:Assimilating anything we can from ceph.conf... 2024-04-24T17:09:42.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217006+0000 mon.smithi028 (mon.0) 2 : cluster [INF] mon.smithi028 is new leader, mons smithi028 in quorum (ranks 0) 2024-04-24T17:09:42.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217006+0000 mon.smithi028 (mon.0) 2 : cluster [INF] mon.smithi028 is new leader, mons smithi028 in quorum (ranks 0) 2024-04-24T17:09:42.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217156+0000 mon.smithi028 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-04-24T17:09:42.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217156+0000 mon.smithi028 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-04-24T17:09:42.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217169+0000 mon.smithi028 (mon.0) 4 : cluster [DBG] fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:42.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217169+0000 mon.smithi028 (mon.0) 4 : cluster [DBG] fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:42.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217178+0000 mon.smithi028 (mon.0) 5 : cluster [DBG] last_changed 2024-04-24T17:09:37.036869+0000 2024-04-24T17:09:42.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217178+0000 mon.smithi028 (mon.0) 5 : cluster [DBG] last_changed 2024-04-24T17:09:37.036869+0000 2024-04-24T17:09:42.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217186+0000 mon.smithi028 (mon.0) 6 : cluster [DBG] created 2024-04-24T17:09:37.036869+0000 2024-04-24T17:09:42.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217186+0000 mon.smithi028 (mon.0) 6 : cluster [DBG] created 2024-04-24T17:09:37.036869+0000 2024-04-24T17:09:42.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217195+0000 mon.smithi028 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T17:09:42.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217195+0000 mon.smithi028 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T17:09:42.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217203+0000 mon.smithi028 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-04-24T17:09:42.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217203+0000 mon.smithi028 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-04-24T17:09:42.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217212+0000 mon.smithi028 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.28:3300/0,v1:172.21.15.28:6789/0] mon.smithi028 2024-04-24T17:09:42.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.217212+0000 mon.smithi028 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.28:3300/0,v1:172.21.15.28:6789/0] mon.smithi028 2024-04-24T17:09:42.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.235933+0000 mon.smithi028 (mon.0) 10 : cluster [DBG] fsmap 2024-04-24T17:09:42.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.235933+0000 mon.smithi028 (mon.0) 10 : cluster [DBG] fsmap 2024-04-24T17:09:42.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.238956+0000 mon.smithi028 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-04-24T17:09:42.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.238956+0000 mon.smithi028 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-04-24T17:09:42.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.239481+0000 mon.smithi028 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-04-24T17:09:42.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: cluster 2024-04-24T17:09:41.239481+0000 mon.smithi028 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-04-24T17:09:42.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: audit 2024-04-24T17:09:41.522655+0000 mon.smithi028 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.28:0/2211010985' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-24T17:09:42.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:42 smithi028 bash[18149]: audit 2024-04-24T17:09:41.522655+0000 mon.smithi028 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.28:0/2211010985' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-24T17:09:43.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:43 smithi028 bash[18149]: audit 2024-04-24T17:09:42.988793+0000 mon.smithi028 (mon.0) 14 : audit [INF] from='client.? 172.21.15.28:0/1108982394' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-24T17:09:43.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:43 smithi028 bash[18149]: audit 2024-04-24T17:09:42.988793+0000 mon.smithi028 (mon.0) 14 : audit [INF] from='client.? 172.21.15.28:0/1108982394' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-24T17:09:43.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:43 smithi028 bash[18149]: audit 2024-04-24T17:09:42.993550+0000 mon.smithi028 (mon.0) 15 : audit [INF] from='client.? 172.21.15.28:0/1108982394' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-24T17:09:43.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:43 smithi028 bash[18149]: audit 2024-04-24T17:09:42.993550+0000 mon.smithi028 (mon.0) 15 : audit [INF] from='client.? 172.21.15.28:0/1108982394' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-24T17:09:43.479 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout [global] 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout fsid = 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.28:3300,v1:172.21.15.28:6789] 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout [osd] 2024-04-24T17:09:43.480 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-24T17:09:43.481 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-24T17:09:43.481 INFO:teuthology.orchestra.run.smithi028.stdout:Generating new minimal ceph.conf... 2024-04-24T17:09:44.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:44 smithi028 bash[18149]: audit 2024-04-24T17:09:44.412287+0000 mon.smithi028 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.28:0/2898856720' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:09:44.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:44 smithi028 bash[18149]: audit 2024-04-24T17:09:44.412287+0000 mon.smithi028 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.28:0/2898856720' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:09:44.950 INFO:teuthology.orchestra.run.smithi028.stdout:Restarting the monitor... 2024-04-24T17:09:45.230 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:44 smithi028 systemd[1]: Stopping Ceph mon.smithi028 for 3d5e4290-025d-11ef-bc93-c7b262605968... 2024-04-24T17:09:45.230 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:45 smithi028 bash[18149]: debug 2024-04-24T17:09:45.072+0000 7f46be5b2700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi028 -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-24T17:09:45.230 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:45 smithi028 bash[18149]: debug 2024-04-24T17:09:45.072+0000 7f46be5b2700 -1 mon.smithi028@0(leader) e1 *** Got Signal Terminated *** 2024-04-24T17:09:45.747 INFO:teuthology.orchestra.run.smithi028.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-04-24T17:09:46.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:45 smithi028 bash[18535]: ceph-3d5e4290-025d-11ef-bc93-c7b262605968-mon-smithi028 2024-04-24T17:09:46.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:45 smithi028 bash[18596]: Error response from daemon: No such container: ceph-3d5e4290-025d-11ef-bc93-c7b262605968-mon-smithi028 2024-04-24T17:09:46.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:45 smithi028 systemd[1]: ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mon.smithi028.service: Deactivated successfully. 2024-04-24T17:09:46.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:45 smithi028 systemd[1]: Stopped Ceph mon.smithi028 for 3d5e4290-025d-11ef-bc93-c7b262605968. 2024-04-24T17:09:46.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:45 smithi028 systemd[1]: Started Ceph mon.smithi028 for 3d5e4290-025d-11ef-bc93-c7b262605968. 2024-04-24T17:09:46.991 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.724+0000 7f1465a6dc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.724+0000 7f1465a6dc80 0 ceph version 19.0.0-3285-g5904d294 (5904d29475f5be602879d9fb26280e89b808d5cc) squid (dev), process ceph-mon, pid 7 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.724+0000 7f1465a6dc80 0 pidfile_write: ignore empty --pid-file 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 0 load: jerasure load: lrc 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: RocksDB version: 7.9.2 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Git sha 0 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Compile date 2024-04-24 13:56:12 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: DB SUMMARY 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: DB Session ID: HLS1K8N9HF8X4GJVGP5A 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: CURRENT file: CURRENT 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: IDENTITY file: IDENTITY 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi028/store.db dir, Total Num: 1, files: 000008.sst 2024-04-24T17:09:46.992 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi028/store.db: 000009.log size: 88819 ; 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.error_if_exists: 0 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.create_if_missing: 0 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.paranoid_checks: 1 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.env: 0x55ae0a037cc0 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.info_log: 0x55ae0c46fca0 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.statistics: (nil) 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.use_fsync: 0 2024-04-24T17:09:46.993 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_log_file_size: 0 2024-04-24T17:09:46.994 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-24T17:09:46.994 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-24T17:09:46.994 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-24T17:09:46.994 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-24T17:09:46.994 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.allow_fallocate: 1 2024-04-24T17:09:46.994 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-24T17:09:46.994 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.use_direct_reads: 0 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.db_log_dir: 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.wal_dir: 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-24T17:09:46.995 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.write_buffer_manager: 0x55ae0c4410e0 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.unordered_write: 0 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.row_cache: None 2024-04-24T17:09:46.996 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.wal_filter: None 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.two_write_queues: 0 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.wal_compression: 0 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.atomic_flush: 0 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.log_readahead_size: 0 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-24T17:09:46.997 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_background_jobs: 2 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_background_compactions: -1 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_subcompactions: 1 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_open_files: -1 2024-04-24T17:09:46.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_background_flushes: -1 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Compression algorithms supported: 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: kZSTD supported: 0 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: kXpressCompression supported: 0 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: kZlibCompression supported: 1 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: kSnappyCompression supported: 1 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: kLZ4Compression supported: 1 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: kBZip2Compression supported: 0 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-24T17:09:46.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-24T17:09:47.000 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi028/store.db/MANIFEST-000010 2024-04-24T17:09:47.001 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-24T17:09:47.001 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-24T17:09:47.001 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.merge_operator: 2024-04-24T17:09:47.001 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_filter: None 2024-04-24T17:09:47.001 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-24T17:09:47.001 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-24T17:09:47.001 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-24T17:09:47.001 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-24T17:09:47.001 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55ae0c46fe60) 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cache_index_and_filter_blocks: 1 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: pin_top_level_index_and_filter: 1 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: index_type: 0 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: data_block_index_type: 0 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: index_shortening: 1 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: data_block_hash_table_util_ratio: 0.750000 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: checksum: 4 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: no_block_cache: 0 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: block_cache: 0x55ae0c4711f0 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: block_cache_name: BinnedLRUCache 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: block_cache_options: 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: capacity : 536870912 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: num_shard_bits : 4 2024-04-24T17:09:47.002 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: strict_capacity_limit : 0 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: high_pri_pool_ratio: 0.000 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: block_cache_compressed: (nil) 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: persistent_cache: (nil) 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: block_size: 4096 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: block_size_deviation: 10 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: block_restart_interval: 16 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: index_block_restart_interval: 1 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: metadata_block_size: 4096 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: partition_filters: 0 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: use_delta_encoding: 1 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: filter_policy: bloomfilter 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: whole_key_filtering: 1 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: verify_compression: 0 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: read_amp_bytes_per_bit: 0 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: format_version: 5 2024-04-24T17:09:47.003 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: enable_index_compression: 1 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: block_align: 0 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: max_auto_readahead_size: 262144 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: prepopulate_block_cache: 0 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: initial_auto_readahead_size: 8192 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: num_file_reads_for_auto_readahead: 2 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compression: NoCompression 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.num_levels: 7 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-24T17:09:47.004 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-24T17:09:47.005 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-24T17:09:47.006 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-24T17:09:47.007 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.inplace_update_support: 0 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.bloom_locality: 0 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.max_successive_merges: 0 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-24T17:09:47.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.ttl: 2592000 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.enable_blob_files: false 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.min_blob_size: 0 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-24T17:09:47.009 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi028/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-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 0b9a9f53-8977-450a-a266-05057ce09d3c 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713978586733214, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.728+0000 7f1465a6dc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.732+0000 7f1465a6dc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713978586734791, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85589, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 254, "table_properties": {"data_size": 83729, "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": 78050, "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": 1713978586, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "0b9a9f53-8977-450a-a266-05057ce09d3c", "db_session_id": "HLS1K8N9HF8X4GJVGP5A", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.732+0000 7f1465a6dc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713978586734911, "job": 1, "event": "recovery_finished"} 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.732+0000 7f1465a6dc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.732+0000 7f1465a6dc80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi028/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.732+0000 7f1465a6dc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55ae0c592000 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.732+0000 7f1465a6dc80 4 rocksdb: DB pointer 0x55ae0c57c000 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.732+0000 7f14541c5700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.732+0000 7f14541c5700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: ** DB Stats ** 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-24T17:09:47.010 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: 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-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: 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-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: ** Compaction Stats [default] ** 2024-04-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: 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-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: L0 2/0 85.48 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 88.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Sum 2/0 85.48 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 88.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 88.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: ** Compaction Stats [default] ** 2024-04-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: 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-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-24T17:09:47.011 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 88.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Flush(GB): cumulative 0.000, interval 0.000 2024-04-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: AddFile(Total Files): cumulative 0, interval 0 2024-04-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: AddFile(L0 Files): cumulative 0, interval 0 2024-04-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: AddFile(Keys): cumulative 0, interval 0 2024-04-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Cumulative compaction: 0.00 GB write, 16.31 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Interval compaction: 0.00 GB write, 16.31 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: 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-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: Block cache BinnedLRUCache@0x55ae0c4711f0#7 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.3e-05 secs_since: 0 2024-04-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: 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-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: ** File Read Latency Histogram By Level [default] ** 2024-04-24T17:09:47.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.736+0000 7f1465a6dc80 0 starting mon.smithi028 rank 0 at public addrs [v2:172.21.15.28:3300/0,v1:172.21.15.28:6789/0] at bind addrs [v2:172.21.15.28:3300/0,v1:172.21.15.28:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi028 fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.736+0000 7f1465a6dc80 1 mon.smithi028@-1(???) e1 preinit fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.736+0000 7f1465a6dc80 0 mon.smithi028@-1(???).mds e1 new map 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.736+0000 7f1465a6dc80 0 mon.smithi028@-1(???).mds e1 print_map 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: e1 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: enable_multiple, ever_enabled_multiple: 1,1 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: 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-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: legacy client fscid: -1 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: No filesystems configured 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.736+0000 7f1465a6dc80 0 mon.smithi028@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.736+0000 7f1465a6dc80 0 mon.smithi028@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.736+0000 7f1465a6dc80 0 mon.smithi028@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.736+0000 7f1465a6dc80 0 mon.smithi028@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: debug 2024-04-24T17:09:46.736+0000 7f1465a6dc80 1 mon.smithi028@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762007+0000 mon.smithi028 (mon.0) 1 : cluster [INF] mon.smithi028 is new leader, mons smithi028 in quorum (ranks 0) 2024-04-24T17:09:47.013 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762007+0000 mon.smithi028 (mon.0) 1 : cluster [INF] mon.smithi028 is new leader, mons smithi028 in quorum (ranks 0) 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762067+0000 mon.smithi028 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762067+0000 mon.smithi028 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762077+0000 mon.smithi028 (mon.0) 3 : cluster [DBG] fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762077+0000 mon.smithi028 (mon.0) 3 : cluster [DBG] fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762091+0000 mon.smithi028 (mon.0) 4 : cluster [DBG] last_changed 2024-04-24T17:09:37.036869+0000 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762091+0000 mon.smithi028 (mon.0) 4 : cluster [DBG] last_changed 2024-04-24T17:09:37.036869+0000 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762098+0000 mon.smithi028 (mon.0) 5 : cluster [DBG] created 2024-04-24T17:09:37.036869+0000 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762098+0000 mon.smithi028 (mon.0) 5 : cluster [DBG] created 2024-04-24T17:09:37.036869+0000 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762106+0000 mon.smithi028 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762106+0000 mon.smithi028 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762112+0000 mon.smithi028 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762112+0000 mon.smithi028 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762123+0000 mon.smithi028 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.28:3300/0,v1:172.21.15.28:6789/0] mon.smithi028 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.762123+0000 mon.smithi028 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.28:3300/0,v1:172.21.15.28:6789/0] mon.smithi028 2024-04-24T17:09:47.014 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.781890+0000 mon.smithi028 (mon.0) 9 : cluster [DBG] fsmap 2024-04-24T17:09:47.015 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.781890+0000 mon.smithi028 (mon.0) 9 : cluster [DBG] fsmap 2024-04-24T17:09:47.015 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.781922+0000 mon.smithi028 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-04-24T17:09:47.015 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.781922+0000 mon.smithi028 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-04-24T17:09:47.015 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.782270+0000 mon.smithi028 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-04-24T17:09:47.015 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:46 smithi028 bash[18631]: cluster 2024-04-24T17:09:46.782270+0000 mon.smithi028 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-04-24T17:09:47.485 INFO:teuthology.orchestra.run.smithi028.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-24T17:09:47.510 INFO:teuthology.orchestra.run.smithi028.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-24T17:09:47.510 INFO:teuthology.orchestra.run.smithi028.stdout:Creating mgr... 2024-04-24T17:09:47.510 INFO:teuthology.orchestra.run.smithi028.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-24T17:09:47.510 INFO:teuthology.orchestra.run.smithi028.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-24T17:09:47.511 INFO:teuthology.orchestra.run.smithi028.stdout:Verifying port 0.0.0.0:8443 ... 2024-04-24T17:09:47.833 INFO:teuthology.orchestra.run.smithi028.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mgr.smithi028.zkmzde 2024-04-24T17:09:47.833 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Failed to reset failed state of unit ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mgr.smithi028.zkmzde.service: Unit ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mgr.smithi028.zkmzde.service not loaded. 2024-04-24T17:09:48.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:47 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:09:48.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:47 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:09:48.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:47 smithi028 bash[18631]: audit 2024-04-24T17:09:46.978599+0000 mon.smithi028 (mon.0) 12 : audit [INF] from='client.? 172.21.15.28:0/2305788119' entity='client.admin' 2024-04-24T17:09:48.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:47 smithi028 bash[18631]: audit 2024-04-24T17:09:46.978599+0000 mon.smithi028 (mon.0) 12 : audit [INF] from='client.? 172.21.15.28:0/2305788119' entity='client.admin' 2024-04-24T17:09:48.037 INFO:teuthology.orchestra.run.smithi028.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-3d5e4290-025d-11ef-bc93-c7b262605968.target.wants/ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mgr.smithi028.zkmzde.service -> /etc/systemd/system/ceph-3d5e4290-025d-11ef-bc93-c7b262605968@.service. 2024-04-24T17:09:48.047 INFO:teuthology.orchestra.run.smithi028.stdout:firewalld does not appear to be present 2024-04-24T17:09:48.047 INFO:teuthology.orchestra.run.smithi028.stdout:Not possible to enable service . firewalld.service is not available 2024-04-24T17:09:48.047 INFO:teuthology.orchestra.run.smithi028.stdout:firewalld does not appear to be present 2024-04-24T17:09:48.047 INFO:teuthology.orchestra.run.smithi028.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-04-24T17:09:48.047 INFO:teuthology.orchestra.run.smithi028.stdout:Waiting for mgr to start... 2024-04-24T17:09:48.047 INFO:teuthology.orchestra.run.smithi028.stdout:Waiting for mgr... 2024-04-24T17:09:49.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:49 smithi028 bash[18631]: audit 2024-04-24T17:09:49.441074+0000 mon.smithi028 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.28:0/1388032184' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T17:09:49.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:49 smithi028 bash[18631]: audit 2024-04-24T17:09:49.441074+0000 mon.smithi028 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.28:0/1388032184' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T17:09:50.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:09:50.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout { 2024-04-24T17:09:50.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "fsid": "3d5e4290-025d-11ef-bc93-c7b262605968", 2024-04-24T17:09:50.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "health": { 2024-04-24T17:09:50.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-24T17:09:50.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-24T17:09:50.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-24T17:09:50.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:50.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-24T17:09:50.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-24T17:09:50.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 0 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ], 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "smithi028" 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ], 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-24T17:09:50.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-24T17:09:50.013 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-24T17:09:50.013 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-24T17:09:50.013 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-24T17:09:50.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:50.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-24T17:09:50.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-24T17:09:50.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-24T17:09:50.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-24T17:09:50.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-24T17:09:50.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "restful" 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ], 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "modified": "2024-04-24T17:09:41.234692+0000", 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:50.018 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-24T17:09:50.019 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout } 2024-04-24T17:09:50.019 INFO:teuthology.orchestra.run.smithi028.stdout:mgr not available, waiting (1/15)... 2024-04-24T17:09:53.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:53 smithi028 bash[18631]: audit 2024-04-24T17:09:53.058608+0000 mon.smithi028 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.28:0/545329609' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T17:09:53.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:53 smithi028 bash[18631]: audit 2024-04-24T17:09:53.058608+0000 mon.smithi028 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.28:0/545329609' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T17:09:53.616 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:09:53.616 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout { 2024-04-24T17:09:53.616 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "fsid": "3d5e4290-025d-11ef-bc93-c7b262605968", 2024-04-24T17:09:53.616 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "health": { 2024-04-24T17:09:53.616 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-24T17:09:53.616 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-24T17:09:53.616 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-24T17:09:53.616 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:53.616 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-24T17:09:53.616 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-24T17:09:53.616 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 0 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ], 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "smithi028" 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ], 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-24T17:09:53.617 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-24T17:09:53.618 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-24T17:09:53.618 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-24T17:09:53.621 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-24T17:09:53.621 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-24T17:09:53.621 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:53.621 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-24T17:09:53.621 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-24T17:09:53.621 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-24T17:09:53.621 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-24T17:09:53.621 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-24T17:09:53.621 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-24T17:09:53.622 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-24T17:09:53.623 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "restful" 2024-04-24T17:09:53.623 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ], 2024-04-24T17:09:53.623 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T17:09:53.623 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:53.623 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-24T17:09:53.623 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:09:53.623 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "modified": "2024-04-24T17:09:41.234692+0000", 2024-04-24T17:09:53.623 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T17:09:53.623 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:53.623 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-24T17:09:53.623 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout } 2024-04-24T17:09:53.623 INFO:teuthology.orchestra.run.smithi028.stdout:mgr not available, waiting (2/15)... 2024-04-24T17:09:56.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:56 smithi028 bash[18631]: audit 2024-04-24T17:09:56.583041+0000 mon.smithi028 (mon.0) 15 : audit [DBG] from='client.? 172.21.15.28:0/2432728554' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T17:09:56.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:56 smithi028 bash[18631]: audit 2024-04-24T17:09:56.583041+0000 mon.smithi028 (mon.0) 15 : audit [DBG] from='client.? 172.21.15.28:0/2432728554' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout { 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "fsid": "3d5e4290-025d-11ef-bc93-c7b262605968", 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "health": { 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 0 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ], 2024-04-24T17:09:57.103 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "smithi028" 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ], 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "quorum_age": 9, 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-24T17:09:57.104 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-24T17:09:57.108 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-24T17:09:57.108 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-24T17:09:57.108 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-24T17:09:57.108 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:57.108 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-24T17:09:57.108 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-24T17:09:57.108 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-24T17:09:57.108 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-24T17:09:57.108 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-24T17:09:57.108 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "restful" 2024-04-24T17:09:57.109 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ], 2024-04-24T17:09:57.110 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T17:09:57.110 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:57.110 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-24T17:09:57.110 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:09:57.110 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "modified": "2024-04-24T17:09:41.234692+0000", 2024-04-24T17:09:57.110 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T17:09:57.110 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:09:57.110 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-24T17:09:57.110 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout } 2024-04-24T17:09:57.110 INFO:teuthology.orchestra.run.smithi028.stdout:mgr not available, waiting (3/15)... 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: cluster 2024-04-24T17:09:57.563710+0000 mon.smithi028 (mon.0) 16 : cluster [INF] Activating manager daemon smithi028.zkmzde 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: cluster 2024-04-24T17:09:57.563710+0000 mon.smithi028 (mon.0) 16 : cluster [INF] Activating manager daemon smithi028.zkmzde 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: cluster 2024-04-24T17:09:57.571014+0000 mon.smithi028 (mon.0) 17 : cluster [DBG] mgrmap e2: smithi028.zkmzde(active, starting, since 0.0077317s) 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: cluster 2024-04-24T17:09:57.571014+0000 mon.smithi028 (mon.0) 17 : cluster [DBG] mgrmap e2: smithi028.zkmzde(active, starting, since 0.0077317s) 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.572148+0000 mon.smithi028 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.572148+0000 mon.smithi028 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.572352+0000 mon.smithi028 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.572352+0000 mon.smithi028 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.572585+0000 mon.smithi028 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.572585+0000 mon.smithi028 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.572722+0000 mon.smithi028 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.572722+0000 mon.smithi028 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.572861+0000 mon.smithi028 (mon.0) 22 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T17:09:57.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.572861+0000 mon.smithi028 (mon.0) 22 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.572988+0000 mon.smithi028 (mon.0) 23 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.572988+0000 mon.smithi028 (mon.0) 23 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.573121+0000 mon.smithi028 (mon.0) 24 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi028"}]: dispatch 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.573121+0000 mon.smithi028 (mon.0) 24 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi028"}]: dispatch 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.573777+0000 mon.smithi028 (mon.0) 25 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr metadata", "who": "smithi028.zkmzde", "id": "smithi028.zkmzde"}]: dispatch 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.573777+0000 mon.smithi028 (mon.0) 25 : audit [DBG] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr metadata", "who": "smithi028.zkmzde", "id": "smithi028.zkmzde"}]: dispatch 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: cluster 2024-04-24T17:09:57.600294+0000 mon.smithi028 (mon.0) 26 : cluster [INF] Manager daemon smithi028.zkmzde is now available 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: cluster 2024-04-24T17:09:57.600294+0000 mon.smithi028 (mon.0) 26 : cluster [INF] Manager daemon smithi028.zkmzde is now available 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.614290+0000 mon.smithi028 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/mirror_snapshot_schedule"}]: dispatch 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.614290+0000 mon.smithi028 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/mirror_snapshot_schedule"}]: dispatch 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.617456+0000 mon.smithi028 (mon.0) 28 : audit [INF] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/trash_purge_schedule"}]: dispatch 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.617456+0000 mon.smithi028 (mon.0) 28 : audit [INF] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/trash_purge_schedule"}]: dispatch 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.620170+0000 mon.smithi028 (mon.0) 29 : audit [INF] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.620170+0000 mon.smithi028 (mon.0) 29 : audit [INF] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' 2024-04-24T17:09:57.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.622029+0000 mon.smithi028 (mon.0) 30 : audit [INF] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' 2024-04-24T17:09:57.786 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.622029+0000 mon.smithi028 (mon.0) 30 : audit [INF] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' 2024-04-24T17:09:57.786 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.623934+0000 mon.smithi028 (mon.0) 31 : audit [INF] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' 2024-04-24T17:09:57.786 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:57 smithi028 bash[18631]: audit 2024-04-24T17:09:57.623934+0000 mon.smithi028 (mon.0) 31 : audit [INF] from='mgr.14100 172.21.15.28:0/3942525659' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:00.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:59 smithi028 bash[18631]: cluster 2024-04-24T17:09:58.579156+0000 mon.smithi028 (mon.0) 32 : cluster [DBG] mgrmap e3: smithi028.zkmzde(active, since 1.01588s) 2024-04-24T17:10:00.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:09:59 smithi028 bash[18631]: cluster 2024-04-24T17:09:58.579156+0000 mon.smithi028 (mon.0) 32 : cluster [DBG] mgrmap e3: smithi028.zkmzde(active, since 1.01588s) 2024-04-24T17:10:00.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:00 smithi028 bash[18631]: audit 2024-04-24T17:10:00.514883+0000 mon.smithi028 (mon.0) 33 : audit [DBG] from='client.? 172.21.15.28:0/141782756' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T17:10:00.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:00 smithi028 bash[18631]: audit 2024-04-24T17:10:00.514883+0000 mon.smithi028 (mon.0) 33 : audit [DBG] from='client.? 172.21.15.28:0/141782756' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-24T17:10:01.008 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:10:01.008 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout { 2024-04-24T17:10:01.008 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "fsid": "3d5e4290-025d-11ef-bc93-c7b262605968", 2024-04-24T17:10:01.008 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "health": { 2024-04-24T17:10:01.008 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-24T17:10:01.008 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-24T17:10:01.008 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-24T17:10:01.009 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:10:01.009 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-24T17:10:01.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-24T17:10:01.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 0 2024-04-24T17:10:01.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ], 2024-04-24T17:10:01.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-24T17:10:01.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "smithi028" 2024-04-24T17:10:01.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ], 2024-04-24T17:10:01.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "quorum_age": 13, 2024-04-24T17:10:01.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-24T17:10:01.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:10:01.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-24T17:10:01.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-24T17:10:01.011 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:10:01.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-24T17:10:01.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:10:01.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-24T17:10:01.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-24T17:10:01.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-24T17:10:01.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-24T17:10:01.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-24T17:10:01.012 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-24T17:10:01.015 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:10:01.015 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-24T17:10:01.015 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-24T17:10:01.015 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-24T17:10:01.015 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-24T17:10:01.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "restful" 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ], 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "modified": "2024-04-24T17:09:41.234692+0000", 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout }, 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout } 2024-04-24T17:10:01.017 INFO:teuthology.orchestra.run.smithi028.stdout:mgr is available 2024-04-24T17:10:02.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:01 smithi028 bash[18631]: cluster 2024-04-24T17:10:00.573276+0000 mon.smithi028 (mon.0) 34 : cluster [DBG] mgrmap e4: smithi028.zkmzde(active, since 3s) 2024-04-24T17:10:02.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:01 smithi028 bash[18631]: cluster 2024-04-24T17:10:00.573276+0000 mon.smithi028 (mon.0) 34 : cluster [DBG] mgrmap e4: smithi028.zkmzde(active, since 3s) 2024-04-24T17:10:02.755 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout [global] 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout fsid = 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout [osd] 2024-04-24T17:10:02.756 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-24T17:10:02.757 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-24T17:10:02.757 INFO:teuthology.orchestra.run.smithi028.stdout:Enabling cephadm module... 2024-04-24T17:10:03.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:02 smithi028 bash[18631]: audit 2024-04-24T17:10:02.186455+0000 mon.smithi028 (mon.0) 35 : audit [INF] from='client.? 172.21.15.28:0/1120986159' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-24T17:10:03.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:02 smithi028 bash[18631]: audit 2024-04-24T17:10:02.186455+0000 mon.smithi028 (mon.0) 35 : audit [INF] from='client.? 172.21.15.28:0/1120986159' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-24T17:10:04.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:04 smithi028 bash[18631]: audit 2024-04-24T17:10:04.087544+0000 mon.smithi028 (mon.0) 36 : audit [INF] from='client.? 172.21.15.28:0/3612288210' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-24T17:10:04.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:04 smithi028 bash[18631]: audit 2024-04-24T17:10:04.087544+0000 mon.smithi028 (mon.0) 36 : audit [INF] from='client.? 172.21.15.28:0/3612288210' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-24T17:10:05.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:05 smithi028 bash[18631]: audit 2024-04-24T17:10:04.139488+0000 mon.smithi028 (mon.0) 37 : audit [INF] from='client.? 172.21.15.28:0/3612288210' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-04-24T17:10:05.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:05 smithi028 bash[18631]: audit 2024-04-24T17:10:04.139488+0000 mon.smithi028 (mon.0) 37 : audit [INF] from='client.? 172.21.15.28:0/3612288210' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-04-24T17:10:05.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:05 smithi028 bash[18631]: cluster 2024-04-24T17:10:04.143466+0000 mon.smithi028 (mon.0) 38 : cluster [DBG] mgrmap e5: smithi028.zkmzde(active, since 6s) 2024-04-24T17:10:05.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:05 smithi028 bash[18631]: cluster 2024-04-24T17:10:04.143466+0000 mon.smithi028 (mon.0) 38 : cluster [DBG] mgrmap e5: smithi028.zkmzde(active, since 6s) 2024-04-24T17:10:06.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:06 smithi028 bash[18631]: audit 2024-04-24T17:10:06.004501+0000 mon.smithi028 (mon.0) 39 : audit [DBG] from='client.? 172.21.15.28:0/510408121' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-24T17:10:06.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:06 smithi028 bash[18631]: audit 2024-04-24T17:10:06.004501+0000 mon.smithi028 (mon.0) 39 : audit [DBG] from='client.? 172.21.15.28:0/510408121' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-24T17:10:06.472 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout { 2024-04-24T17:10:06.472 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-04-24T17:10:06.472 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-24T17:10:06.472 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "active_name": "smithi028.zkmzde", 2024-04-24T17:10:06.473 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-24T17:10:06.473 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout } 2024-04-24T17:10:06.473 INFO:teuthology.orchestra.run.smithi028.stdout:Waiting for the mgr to restart... 2024-04-24T17:10:06.473 INFO:teuthology.orchestra.run.smithi028.stdout:Waiting for mgr epoch 5... 2024-04-24T17:10:12.587 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: cluster 2024-04-24T17:10:12.535961+0000 mon.smithi028 (mon.0) 40 : cluster [INF] Active manager daemon smithi028.zkmzde restarted 2024-04-24T17:10:12.587 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: cluster 2024-04-24T17:10:12.535961+0000 mon.smithi028 (mon.0) 40 : cluster [INF] Active manager daemon smithi028.zkmzde restarted 2024-04-24T17:10:12.587 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: cluster 2024-04-24T17:10:12.536396+0000 mon.smithi028 (mon.0) 41 : cluster [INF] Activating manager daemon smithi028.zkmzde 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: cluster 2024-04-24T17:10:12.536396+0000 mon.smithi028 (mon.0) 41 : cluster [INF] Activating manager daemon smithi028.zkmzde 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: cluster 2024-04-24T17:10:12.544018+0000 mon.smithi028 (mon.0) 42 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: cluster 2024-04-24T17:10:12.544018+0000 mon.smithi028 (mon.0) 42 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: cluster 2024-04-24T17:10:12.544266+0000 mon.smithi028 (mon.0) 43 : cluster [DBG] mgrmap e6: smithi028.zkmzde(active, starting, since 0.00805153s) 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: cluster 2024-04-24T17:10:12.544266+0000 mon.smithi028 (mon.0) 43 : cluster [DBG] mgrmap e6: smithi028.zkmzde(active, starting, since 0.00805153s) 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: audit 2024-04-24T17:10:12.545781+0000 mon.smithi028 (mon.0) 44 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi028"}]: dispatch 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: audit 2024-04-24T17:10:12.545781+0000 mon.smithi028 (mon.0) 44 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi028"}]: dispatch 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: audit 2024-04-24T17:10:12.546909+0000 mon.smithi028 (mon.0) 45 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr metadata", "who": "smithi028.zkmzde", "id": "smithi028.zkmzde"}]: dispatch 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: audit 2024-04-24T17:10:12.546909+0000 mon.smithi028 (mon.0) 45 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr metadata", "who": "smithi028.zkmzde", "id": "smithi028.zkmzde"}]: dispatch 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: audit 2024-04-24T17:10:12.548106+0000 mon.smithi028 (mon.0) 46 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: audit 2024-04-24T17:10:12.548106+0000 mon.smithi028 (mon.0) 46 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: audit 2024-04-24T17:10:12.548336+0000 mon.smithi028 (mon.0) 47 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: audit 2024-04-24T17:10:12.548336+0000 mon.smithi028 (mon.0) 47 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: audit 2024-04-24T17:10:12.548513+0000 mon.smithi028 (mon.0) 48 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T17:10:12.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: audit 2024-04-24T17:10:12.548513+0000 mon.smithi028 (mon.0) 48 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T17:10:12.589 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: cluster 2024-04-24T17:10:12.571671+0000 mon.smithi028 (mon.0) 49 : cluster [INF] Manager daemon smithi028.zkmzde is now available 2024-04-24T17:10:12.589 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:12 smithi028 bash[18631]: cluster 2024-04-24T17:10:12.571671+0000 mon.smithi028 (mon.0) 49 : cluster [INF] Manager daemon smithi028.zkmzde is now available 2024-04-24T17:10:14.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: cephadm 2024-04-24T17:10:12.592126+0000 mgr.smithi028.zkmzde (mgr.14120) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-04-24T17:10:14.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: cephadm 2024-04-24T17:10:12.592126+0000 mgr.smithi028.zkmzde (mgr.14120) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.594242+0000 mon.smithi028 (mon.0) 50 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.594242+0000 mon.smithi028 (mon.0) 50 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.597159+0000 mon.smithi028 (mon.0) 51 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.597159+0000 mon.smithi028 (mon.0) 51 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.600828+0000 mon.smithi028 (mon.0) 52 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.600828+0000 mon.smithi028 (mon.0) 52 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.604124+0000 mon.smithi028 (mon.0) 53 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.604124+0000 mon.smithi028 (mon.0) 53 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.614331+0000 mon.smithi028 (mon.0) 54 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/mirror_snapshot_schedule"}]: dispatch 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.614331+0000 mon.smithi028 (mon.0) 54 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/mirror_snapshot_schedule"}]: dispatch 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.618290+0000 mon.smithi028 (mon.0) 55 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/trash_purge_schedule"}]: dispatch 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.618290+0000 mon.smithi028 (mon.0) 55 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/trash_purge_schedule"}]: dispatch 2024-04-24T17:10:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.767027+0000 mon.smithi028 (mon.0) 56 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.767027+0000 mon.smithi028 (mon.0) 56 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.770530+0000 mon.smithi028 (mon.0) 57 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:12.770530+0000 mon.smithi028 (mon.0) 57 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: cephadm 2024-04-24T17:10:13.032035+0000 mgr.smithi028.zkmzde (mgr.14120) 2 : cephadm [INF] [24/Apr/2024:17:10:13] ENGINE Bus STARTING 2024-04-24T17:10:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: cephadm 2024-04-24T17:10:13.032035+0000 mgr.smithi028.zkmzde (mgr.14120) 2 : cephadm [INF] [24/Apr/2024:17:10:13] ENGINE Bus STARTING 2024-04-24T17:10:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: cephadm 2024-04-24T17:10:13.134371+0000 mgr.smithi028.zkmzde (mgr.14120) 3 : cephadm [INF] [24/Apr/2024:17:10:13] ENGINE Serving on http://172.21.15.28:8765 2024-04-24T17:10:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: cephadm 2024-04-24T17:10:13.134371+0000 mgr.smithi028.zkmzde (mgr.14120) 3 : cephadm [INF] [24/Apr/2024:17:10:13] ENGINE Serving on http://172.21.15.28:8765 2024-04-24T17:10:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:13.273352+0000 mon.smithi028 (mon.0) 58 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:10:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: audit 2024-04-24T17:10:13.273352+0000 mon.smithi028 (mon.0) 58 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:10:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: cluster 2024-04-24T17:10:13.548370+0000 mon.smithi028 (mon.0) 59 : cluster [DBG] mgrmap e7: smithi028.zkmzde(active, since 1.01214s) 2024-04-24T17:10:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:13 smithi028 bash[18631]: cluster 2024-04-24T17:10:13.548370+0000 mon.smithi028 (mon.0) 59 : cluster [DBG] mgrmap e7: smithi028.zkmzde(active, since 1.01214s) 2024-04-24T17:10:14.186 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout { 2024-04-24T17:10:14.187 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-04-24T17:10:14.187 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-24T17:10:14.187 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout } 2024-04-24T17:10:14.187 INFO:teuthology.orchestra.run.smithi028.stdout:mgr epoch 5 is available 2024-04-24T17:10:14.187 INFO:teuthology.orchestra.run.smithi028.stdout:Setting orchestrator backend to cephadm... 2024-04-24T17:10:15.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:14 smithi028 bash[18631]: cephadm 2024-04-24T17:10:13.257125+0000 mgr.smithi028.zkmzde (mgr.14120) 4 : cephadm [INF] [24/Apr/2024:17:10:13] ENGINE Serving on https://172.21.15.28:7150 2024-04-24T17:10:15.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:14 smithi028 bash[18631]: cephadm 2024-04-24T17:10:13.257125+0000 mgr.smithi028.zkmzde (mgr.14120) 4 : cephadm [INF] [24/Apr/2024:17:10:13] ENGINE Serving on https://172.21.15.28:7150 2024-04-24T17:10:15.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:14 smithi028 bash[18631]: cephadm 2024-04-24T17:10:13.257387+0000 mgr.smithi028.zkmzde (mgr.14120) 5 : cephadm [INF] [24/Apr/2024:17:10:13] ENGINE Bus STARTED 2024-04-24T17:10:15.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:14 smithi028 bash[18631]: cephadm 2024-04-24T17:10:13.257387+0000 mgr.smithi028.zkmzde (mgr.14120) 5 : cephadm [INF] [24/Apr/2024:17:10:13] ENGINE Bus STARTED 2024-04-24T17:10:15.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:14 smithi028 bash[18631]: audit 2024-04-24T17:10:13.547623+0000 mgr.smithi028.zkmzde (mgr.14120) 6 : audit [DBG] from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-24T17:10:15.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:14 smithi028 bash[18631]: audit 2024-04-24T17:10:13.547623+0000 mgr.smithi028.zkmzde (mgr.14120) 6 : audit [DBG] from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-24T17:10:15.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:14 smithi028 bash[18631]: audit 2024-04-24T17:10:13.564468+0000 mgr.smithi028.zkmzde (mgr.14120) 7 : audit [DBG] from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-24T17:10:15.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:14 smithi028 bash[18631]: audit 2024-04-24T17:10:13.564468+0000 mgr.smithi028.zkmzde (mgr.14120) 7 : audit [DBG] from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-24T17:10:15.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:15 smithi028 bash[18631]: cluster 2024-04-24T17:10:14.606932+0000 mon.smithi028 (mon.0) 60 : cluster [DBG] mgrmap e8: smithi028.zkmzde(active, since 2s) 2024-04-24T17:10:15.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:15 smithi028 bash[18631]: cluster 2024-04-24T17:10:14.606932+0000 mon.smithi028 (mon.0) 60 : cluster [DBG] mgrmap e8: smithi028.zkmzde(active, since 2s) 2024-04-24T17:10:15.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:15 smithi028 bash[18631]: audit 2024-04-24T17:10:15.399141+0000 mon.smithi028 (mon.0) 61 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:15.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:15 smithi028 bash[18631]: audit 2024-04-24T17:10:15.399141+0000 mon.smithi028 (mon.0) 61 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:15.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:15 smithi028 bash[18631]: audit 2024-04-24T17:10:15.445990+0000 mon.smithi028 (mon.0) 62 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:10:15.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:15 smithi028 bash[18631]: audit 2024-04-24T17:10:15.445990+0000 mon.smithi028 (mon.0) 62 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:10:16.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:16 smithi028 bash[18631]: audit 2024-04-24T17:10:15.390744+0000 mgr.smithi028.zkmzde (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-24T17:10:16.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:16 smithi028 bash[18631]: audit 2024-04-24T17:10:15.390744+0000 mgr.smithi028.zkmzde (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-24T17:10:17.621 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout value unchanged 2024-04-24T17:10:17.621 INFO:teuthology.orchestra.run.smithi028.stdout:Generating ssh key... 2024-04-24T17:10:18.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:17 smithi028 bash[18631]: audit 2024-04-24T17:10:17.091925+0000 mgr.smithi028.zkmzde (mgr.14120) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:18.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:17 smithi028 bash[18631]: audit 2024-04-24T17:10:17.091925+0000 mgr.smithi028.zkmzde (mgr.14120) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:20.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:20 smithi028 bash[18631]: audit 2024-04-24T17:10:18.894342+0000 mgr.smithi028.zkmzde (mgr.14120) 10 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:20.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:20 smithi028 bash[18631]: audit 2024-04-24T17:10:18.894342+0000 mgr.smithi028.zkmzde (mgr.14120) 10 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:20.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:20 smithi028 bash[18631]: cephadm 2024-04-24T17:10:18.894772+0000 mgr.smithi028.zkmzde (mgr.14120) 11 : cephadm [INF] Generating ssh key... 2024-04-24T17:10:20.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:20 smithi028 bash[18631]: cephadm 2024-04-24T17:10:18.894772+0000 mgr.smithi028.zkmzde (mgr.14120) 11 : cephadm [INF] Generating ssh key... 2024-04-24T17:10:20.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:20 smithi028 bash[18631]: audit 2024-04-24T17:10:19.094582+0000 mon.smithi028 (mon.0) 63 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:20.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:20 smithi028 bash[18631]: audit 2024-04-24T17:10:19.094582+0000 mon.smithi028 (mon.0) 63 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:20.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:20 smithi028 bash[18631]: audit 2024-04-24T17:10:19.098948+0000 mon.smithi028 (mon.0) 64 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:20.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:20 smithi028 bash[18631]: audit 2024-04-24T17:10:19.098948+0000 mon.smithi028 (mon.0) 64 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:21.340 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/LQOvSLaK9/6SBaCLxRphLz8N99R+MNip8ZU/8MKsNpDaIu18hCxFjdtmYr2J3tAU5MAwCmzUGVWBzPuphIxjkdc5nCimUcUrZLX6jpIKXf/sEG8fYaDzP/EXvUH0AyeU03I3o/mj+zP3xH0HyFfKN+H4p6Lf/fTFt2UaPBz8EVPgazePML62py6mRnIFQTbaoSSgA+MS/VM/kxmPNqC5KOmUnHK8F2EKYt9JYUM0m7WsMB7KMB7OKeDmAU1QQM2+ng87FR8wSPzFv5BOmV49TRo7NK4IFuMB4Bf5Nh/HKyjxoQej8btcRjcG/ZQpPr9gNrjOiklQw6ZHb+GdEuIK73Dx4d7vFEn5OVlBP2zPtybwuJ+Gmv7YOz3csWr3tmtvLwRN125fhqtaX+2MB8HZZGJedtdAI+vl3MPie7hYyK2wuDKU7qCqW8ux/vXuwTIqhn5A9XkiR2iX75ANtGxmBJc1qIlILwIDEho0ieVi9qhlb0upJPqkwGs5Z6NgAu0= ceph-3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:10:21.340 INFO:teuthology.orchestra.run.smithi028.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-04-24T17:10:21.340 INFO:teuthology.orchestra.run.smithi028.stdout:Adding key to root@localhost authorized_keys... 2024-04-24T17:10:21.340 INFO:teuthology.orchestra.run.smithi028.stdout:Adding host smithi028... 2024-04-24T17:10:21.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:21 smithi028 bash[18631]: audit 2024-04-24T17:10:20.850790+0000 mgr.smithi028.zkmzde (mgr.14120) 12 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:21.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:21 smithi028 bash[18631]: audit 2024-04-24T17:10:20.850790+0000 mgr.smithi028.zkmzde (mgr.14120) 12 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:23.514 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:23 smithi028 bash[18631]: audit 2024-04-24T17:10:22.550443+0000 mgr.smithi028.zkmzde (mgr.14120) 13 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi028", "addr": "172.21.15.28", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:23.514 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:23 smithi028 bash[18631]: audit 2024-04-24T17:10:22.550443+0000 mgr.smithi028.zkmzde (mgr.14120) 13 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi028", "addr": "172.21.15.28", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:24.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:24 smithi028 bash[18631]: cephadm 2024-04-24T17:10:23.209570+0000 mgr.smithi028.zkmzde (mgr.14120) 14 : cephadm [INF] Deploying cephadm binary to smithi028 2024-04-24T17:10:24.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:24 smithi028 bash[18631]: cephadm 2024-04-24T17:10:23.209570+0000 mgr.smithi028.zkmzde (mgr.14120) 14 : cephadm [INF] Deploying cephadm binary to smithi028 2024-04-24T17:10:28.872 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout Added host 'smithi028' with addr '172.21.15.28' 2024-04-24T17:10:28.872 INFO:teuthology.orchestra.run.smithi028.stdout:Deploying mon service with default placement... 2024-04-24T17:10:29.462 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:29 smithi028 bash[18631]: audit 2024-04-24T17:10:28.165724+0000 mon.smithi028 (mon.0) 65 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:29.462 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:29 smithi028 bash[18631]: audit 2024-04-24T17:10:28.165724+0000 mon.smithi028 (mon.0) 65 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:29.462 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:29 smithi028 bash[18631]: cephadm 2024-04-24T17:10:28.166129+0000 mgr.smithi028.zkmzde (mgr.14120) 15 : cephadm [INF] Added host smithi028 2024-04-24T17:10:29.462 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:29 smithi028 bash[18631]: cephadm 2024-04-24T17:10:28.166129+0000 mgr.smithi028.zkmzde (mgr.14120) 15 : cephadm [INF] Added host smithi028 2024-04-24T17:10:29.462 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:29 smithi028 bash[18631]: audit 2024-04-24T17:10:28.176249+0000 mon.smithi028 (mon.0) 66 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:10:29.462 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:29 smithi028 bash[18631]: audit 2024-04-24T17:10:28.176249+0000 mon.smithi028 (mon.0) 66 : audit [DBG] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:10:31.392 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-04-24T17:10:31.392 INFO:teuthology.orchestra.run.smithi028.stdout:Deploying mgr service with default placement... 2024-04-24T17:10:31.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:31 smithi028 bash[18631]: audit 2024-04-24T17:10:30.574817+0000 mgr.smithi028.zkmzde (mgr.14120) 16 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:31.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:31 smithi028 bash[18631]: audit 2024-04-24T17:10:30.574817+0000 mgr.smithi028.zkmzde (mgr.14120) 16 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:31.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:31 smithi028 bash[18631]: cephadm 2024-04-24T17:10:30.576097+0000 mgr.smithi028.zkmzde (mgr.14120) 17 : cephadm [INF] Saving service mon spec with placement count:5 2024-04-24T17:10:31.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:31 smithi028 bash[18631]: cephadm 2024-04-24T17:10:30.576097+0000 mgr.smithi028.zkmzde (mgr.14120) 17 : cephadm [INF] Saving service mon spec with placement count:5 2024-04-24T17:10:31.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:31 smithi028 bash[18631]: audit 2024-04-24T17:10:30.579781+0000 mon.smithi028 (mon.0) 67 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:31.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:31 smithi028 bash[18631]: audit 2024-04-24T17:10:30.579781+0000 mon.smithi028 (mon.0) 67 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:31.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:31 smithi028 bash[18631]: audit 2024-04-24T17:10:31.451047+0000 mon.smithi028 (mon.0) 68 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:31.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:31 smithi028 bash[18631]: audit 2024-04-24T17:10:31.451047+0000 mon.smithi028 (mon.0) 68 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:33.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:32 smithi028 bash[18631]: audit 2024-04-24T17:10:31.931935+0000 mon.smithi028 (mon.0) 69 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:33.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:32 smithi028 bash[18631]: audit 2024-04-24T17:10:31.931935+0000 mon.smithi028 (mon.0) 69 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:33.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:32 smithi028 bash[18631]: audit 2024-04-24T17:10:32.691187+0000 mon.smithi028 (mon.0) 70 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:33.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:32 smithi028 bash[18631]: audit 2024-04-24T17:10:32.691187+0000 mon.smithi028 (mon.0) 70 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:33.222 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-04-24T17:10:33.222 INFO:teuthology.orchestra.run.smithi028.stdout:Deploying crash service with default placement... 2024-04-24T17:10:34.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:33 smithi028 bash[18631]: cluster 2024-04-24T17:10:32.549723+0000 mgr.smithi028.zkmzde (mgr.14120) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:34.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:33 smithi028 bash[18631]: cluster 2024-04-24T17:10:32.549723+0000 mgr.smithi028.zkmzde (mgr.14120) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:34.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:33 smithi028 bash[18631]: audit 2024-04-24T17:10:32.684261+0000 mgr.smithi028.zkmzde (mgr.14120) 19 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:34.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:33 smithi028 bash[18631]: audit 2024-04-24T17:10:32.684261+0000 mgr.smithi028.zkmzde (mgr.14120) 19 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:34.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:33 smithi028 bash[18631]: cephadm 2024-04-24T17:10:32.686759+0000 mgr.smithi028.zkmzde (mgr.14120) 20 : cephadm [INF] Saving service mgr spec with placement count:2 2024-04-24T17:10:34.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:33 smithi028 bash[18631]: cephadm 2024-04-24T17:10:32.686759+0000 mgr.smithi028.zkmzde (mgr.14120) 20 : cephadm [INF] Saving service mgr spec with placement count:2 2024-04-24T17:10:35.086 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-04-24T17:10:35.087 INFO:teuthology.orchestra.run.smithi028.stdout:Deploying ceph-exporter service with default placement... 2024-04-24T17:10:35.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:35 smithi028 bash[18631]: audit 2024-04-24T17:10:34.522089+0000 mgr.smithi028.zkmzde (mgr.14120) 21 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:35.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:35 smithi028 bash[18631]: audit 2024-04-24T17:10:34.522089+0000 mgr.smithi028.zkmzde (mgr.14120) 21 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:35.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:35 smithi028 bash[18631]: cephadm 2024-04-24T17:10:34.524194+0000 mgr.smithi028.zkmzde (mgr.14120) 22 : cephadm [INF] Saving service crash spec with placement * 2024-04-24T17:10:35.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:35 smithi028 bash[18631]: cephadm 2024-04-24T17:10:34.524194+0000 mgr.smithi028.zkmzde (mgr.14120) 22 : cephadm [INF] Saving service crash spec with placement * 2024-04-24T17:10:35.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:35 smithi028 bash[18631]: audit 2024-04-24T17:10:34.529047+0000 mon.smithi028 (mon.0) 71 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:35.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:35 smithi028 bash[18631]: audit 2024-04-24T17:10:34.529047+0000 mon.smithi028 (mon.0) 71 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:35.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:35 smithi028 bash[18631]: cluster 2024-04-24T17:10:34.550021+0000 mgr.smithi028.zkmzde (mgr.14120) 23 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:35.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:35 smithi028 bash[18631]: cluster 2024-04-24T17:10:34.550021+0000 mgr.smithi028.zkmzde (mgr.14120) 23 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:36.859 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-04-24T17:10:36.859 INFO:teuthology.orchestra.run.smithi028.stdout:Deploying prometheus service with default placement... 2024-04-24T17:10:37.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:37 smithi028 bash[18631]: audit 2024-04-24T17:10:36.339616+0000 mgr.smithi028.zkmzde (mgr.14120) 24 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:37.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:37 smithi028 bash[18631]: audit 2024-04-24T17:10:36.339616+0000 mgr.smithi028.zkmzde (mgr.14120) 24 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:37.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:37 smithi028 bash[18631]: cephadm 2024-04-24T17:10:36.342826+0000 mgr.smithi028.zkmzde (mgr.14120) 25 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-04-24T17:10:37.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:37 smithi028 bash[18631]: cephadm 2024-04-24T17:10:36.342826+0000 mgr.smithi028.zkmzde (mgr.14120) 25 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-04-24T17:10:37.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:37 smithi028 bash[18631]: audit 2024-04-24T17:10:36.346606+0000 mon.smithi028 (mon.0) 72 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:37.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:37 smithi028 bash[18631]: audit 2024-04-24T17:10:36.346606+0000 mon.smithi028 (mon.0) 72 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:37.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:37 smithi028 bash[18631]: cluster 2024-04-24T17:10:36.550447+0000 mgr.smithi028.zkmzde (mgr.14120) 26 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:37.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:37 smithi028 bash[18631]: cluster 2024-04-24T17:10:36.550447+0000 mgr.smithi028.zkmzde (mgr.14120) 26 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:38.613 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-04-24T17:10:38.613 INFO:teuthology.orchestra.run.smithi028.stdout:Deploying grafana service with default placement... 2024-04-24T17:10:39.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:39 smithi028 bash[18631]: audit 2024-04-24T17:10:38.060299+0000 mgr.smithi028.zkmzde (mgr.14120) 27 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:39.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:39 smithi028 bash[18631]: audit 2024-04-24T17:10:38.060299+0000 mgr.smithi028.zkmzde (mgr.14120) 27 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:39.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:39 smithi028 bash[18631]: cephadm 2024-04-24T17:10:38.062942+0000 mgr.smithi028.zkmzde (mgr.14120) 28 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-04-24T17:10:39.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:39 smithi028 bash[18631]: cephadm 2024-04-24T17:10:38.062942+0000 mgr.smithi028.zkmzde (mgr.14120) 28 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-04-24T17:10:39.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:39 smithi028 bash[18631]: audit 2024-04-24T17:10:38.067757+0000 mon.smithi028 (mon.0) 73 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:39.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:39 smithi028 bash[18631]: audit 2024-04-24T17:10:38.067757+0000 mon.smithi028 (mon.0) 73 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:40.384 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-04-24T17:10:40.384 INFO:teuthology.orchestra.run.smithi028.stdout:Deploying node-exporter service with default placement... 2024-04-24T17:10:40.399 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:40 smithi028 bash[18631]: cluster 2024-04-24T17:10:38.550944+0000 mgr.smithi028.zkmzde (mgr.14120) 29 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:40.399 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:40 smithi028 bash[18631]: cluster 2024-04-24T17:10:38.550944+0000 mgr.smithi028.zkmzde (mgr.14120) 29 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:40.399 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:40 smithi028 bash[18631]: audit 2024-04-24T17:10:39.371105+0000 mon.smithi028 (mon.0) 74 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:40.399 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:40 smithi028 bash[18631]: audit 2024-04-24T17:10:39.371105+0000 mon.smithi028 (mon.0) 74 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:40.399 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:40 smithi028 bash[18631]: audit 2024-04-24T17:10:39.812919+0000 mon.smithi028 (mon.0) 75 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:40.399 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:40 smithi028 bash[18631]: audit 2024-04-24T17:10:39.812919+0000 mon.smithi028 (mon.0) 75 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:41.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:41 smithi028 bash[18631]: audit 2024-04-24T17:10:39.809161+0000 mgr.smithi028.zkmzde (mgr.14120) 30 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:41.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:41 smithi028 bash[18631]: audit 2024-04-24T17:10:39.809161+0000 mgr.smithi028.zkmzde (mgr.14120) 30 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:41.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:41 smithi028 bash[18631]: cephadm 2024-04-24T17:10:39.810501+0000 mgr.smithi028.zkmzde (mgr.14120) 31 : cephadm [INF] Saving service grafana spec with placement count:1 2024-04-24T17:10:41.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:41 smithi028 bash[18631]: cephadm 2024-04-24T17:10:39.810501+0000 mgr.smithi028.zkmzde (mgr.14120) 31 : cephadm [INF] Saving service grafana spec with placement count:1 2024-04-24T17:10:41.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:41 smithi028 bash[18631]: audit 2024-04-24T17:10:40.357547+0000 mon.smithi028 (mon.0) 76 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:41.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:41 smithi028 bash[18631]: audit 2024-04-24T17:10:40.357547+0000 mon.smithi028 (mon.0) 76 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:42.135 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-04-24T17:10:42.135 INFO:teuthology.orchestra.run.smithi028.stdout:Deploying alertmanager service with default placement... 2024-04-24T17:10:42.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:42 smithi028 bash[18631]: cluster 2024-04-24T17:10:40.551292+0000 mgr.smithi028.zkmzde (mgr.14120) 32 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:42.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:42 smithi028 bash[18631]: cluster 2024-04-24T17:10:40.551292+0000 mgr.smithi028.zkmzde (mgr.14120) 32 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:42.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:42 smithi028 bash[18631]: audit 2024-04-24T17:10:41.615452+0000 mon.smithi028 (mon.0) 77 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:42.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:42 smithi028 bash[18631]: audit 2024-04-24T17:10:41.615452+0000 mon.smithi028 (mon.0) 77 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:43.427 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:43 smithi028 bash[18631]: audit 2024-04-24T17:10:41.608988+0000 mgr.smithi028.zkmzde (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-24T17:10:43.427 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:43 smithi028 bash[18631]: audit 2024-04-24T17:10:41.608988+0000 mgr.smithi028.zkmzde (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-24T17:10:43.427 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:43 smithi028 bash[18631]: cephadm 2024-04-24T17:10:41.611915+0000 mgr.smithi028.zkmzde (mgr.14120) 34 : cephadm [INF] Saving service node-exporter spec with placement * 2024-04-24T17:10:43.427 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:43 smithi028 bash[18631]: cephadm 2024-04-24T17:10:41.611915+0000 mgr.smithi028.zkmzde (mgr.14120) 34 : cephadm [INF] Saving service node-exporter spec with placement * 2024-04-24T17:10:43.938 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-04-24T17:10:44.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:44 smithi028 bash[18631]: cluster 2024-04-24T17:10:42.551654+0000 mgr.smithi028.zkmzde (mgr.14120) 35 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:44.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:44 smithi028 bash[18631]: cluster 2024-04-24T17:10:42.551654+0000 mgr.smithi028.zkmzde (mgr.14120) 35 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:44.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:44 smithi028 bash[18631]: audit 2024-04-24T17:10:43.414734+0000 mon.smithi028 (mon.0) 78 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:44.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:44 smithi028 bash[18631]: audit 2024-04-24T17:10:43.414734+0000 mon.smithi028 (mon.0) 78 : audit [INF] from='mgr.14120 172.21.15.28:0/1215493196' entity='mgr.smithi028.zkmzde' 2024-04-24T17:10:45.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:45 smithi028 bash[18631]: audit 2024-04-24T17:10:43.407522+0000 mgr.smithi028.zkmzde (mgr.14120) 36 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:45.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:45 smithi028 bash[18631]: audit 2024-04-24T17:10:43.407522+0000 mgr.smithi028.zkmzde (mgr.14120) 36 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:10:45.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:45 smithi028 bash[18631]: cephadm 2024-04-24T17:10:43.409966+0000 mgr.smithi028.zkmzde (mgr.14120) 37 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-04-24T17:10:45.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:45 smithi028 bash[18631]: cephadm 2024-04-24T17:10:43.409966+0000 mgr.smithi028.zkmzde (mgr.14120) 37 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-04-24T17:10:46.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:46 smithi028 bash[18631]: cluster 2024-04-24T17:10:44.551953+0000 mgr.smithi028.zkmzde (mgr.14120) 38 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:46.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:46 smithi028 bash[18631]: cluster 2024-04-24T17:10:44.551953+0000 mgr.smithi028.zkmzde (mgr.14120) 38 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:46.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:46 smithi028 bash[18631]: audit 2024-04-24T17:10:45.148717+0000 mon.smithi028 (mon.0) 79 : audit [INF] from='client.? 172.21.15.28:0/2519733742' entity='client.admin' 2024-04-24T17:10:46.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:46 smithi028 bash[18631]: audit 2024-04-24T17:10:45.148717+0000 mon.smithi028 (mon.0) 79 : audit [INF] from='client.? 172.21.15.28:0/2519733742' entity='client.admin' 2024-04-24T17:10:47.433 INFO:teuthology.orchestra.run.smithi028.stdout:Enabling the dashboard module... 2024-04-24T17:10:48.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:47 smithi028 bash[18631]: cluster 2024-04-24T17:10:46.552380+0000 mgr.smithi028.zkmzde (mgr.14120) 39 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:48.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:47 smithi028 bash[18631]: cluster 2024-04-24T17:10:46.552380+0000 mgr.smithi028.zkmzde (mgr.14120) 39 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:48.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:47 smithi028 bash[18631]: audit 2024-04-24T17:10:46.891270+0000 mon.smithi028 (mon.0) 80 : audit [INF] from='client.? 172.21.15.28:0/2296731189' entity='client.admin' 2024-04-24T17:10:48.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:47 smithi028 bash[18631]: audit 2024-04-24T17:10:46.891270+0000 mon.smithi028 (mon.0) 80 : audit [INF] from='client.? 172.21.15.28:0/2296731189' entity='client.admin' 2024-04-24T17:10:50.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:49 smithi028 bash[18631]: cluster 2024-04-24T17:10:48.552772+0000 mgr.smithi028.zkmzde (mgr.14120) 40 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:50.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:49 smithi028 bash[18631]: cluster 2024-04-24T17:10:48.552772+0000 mgr.smithi028.zkmzde (mgr.14120) 40 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:10:50.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:49 smithi028 bash[18631]: audit 2024-04-24T17:10:49.129259+0000 mon.smithi028 (mon.0) 81 : audit [INF] from='client.? 172.21.15.28:0/2893169682' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-04-24T17:10:50.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:49 smithi028 bash[18631]: audit 2024-04-24T17:10:49.129259+0000 mon.smithi028 (mon.0) 81 : audit [INF] from='client.? 172.21.15.28:0/2893169682' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-04-24T17:10:51.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:50 smithi028 bash[18631]: audit 2024-04-24T17:10:49.896370+0000 mon.smithi028 (mon.0) 82 : audit [INF] from='client.? 172.21.15.28:0/2893169682' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-04-24T17:10:51.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:50 smithi028 bash[18631]: audit 2024-04-24T17:10:49.896370+0000 mon.smithi028 (mon.0) 82 : audit [INF] from='client.? 172.21.15.28:0/2893169682' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-04-24T17:10:51.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:50 smithi028 bash[18631]: cluster 2024-04-24T17:10:49.901587+0000 mon.smithi028 (mon.0) 83 : cluster [DBG] mgrmap e9: smithi028.zkmzde(active, since 37s) 2024-04-24T17:10:51.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:50 smithi028 bash[18631]: cluster 2024-04-24T17:10:49.901587+0000 mon.smithi028 (mon.0) 83 : cluster [DBG] mgrmap e9: smithi028.zkmzde(active, since 37s) 2024-04-24T17:10:52.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:51 smithi028 bash[18631]: audit 2024-04-24T17:10:51.794709+0000 mon.smithi028 (mon.0) 84 : audit [DBG] from='client.? 172.21.15.28:0/2689578601' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-24T17:10:52.012 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:51 smithi028 bash[18631]: audit 2024-04-24T17:10:51.794709+0000 mon.smithi028 (mon.0) 84 : audit [DBG] from='client.? 172.21.15.28:0/2689578601' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-24T17:10:52.373 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout { 2024-04-24T17:10:52.373 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-04-24T17:10:52.374 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-24T17:10:52.374 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "active_name": "smithi028.zkmzde", 2024-04-24T17:10:52.374 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-24T17:10:52.374 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout } 2024-04-24T17:10:52.374 INFO:teuthology.orchestra.run.smithi028.stdout:Waiting for the mgr to restart... 2024-04-24T17:10:52.374 INFO:teuthology.orchestra.run.smithi028.stdout:Waiting for mgr epoch 9... 2024-04-24T17:10:58.510 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: cluster 2024-04-24T17:10:58.395498+0000 mon.smithi028 (mon.0) 85 : cluster [INF] Active manager daemon smithi028.zkmzde restarted 2024-04-24T17:10:58.510 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: cluster 2024-04-24T17:10:58.395498+0000 mon.smithi028 (mon.0) 85 : cluster [INF] Active manager daemon smithi028.zkmzde restarted 2024-04-24T17:10:58.510 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: cluster 2024-04-24T17:10:58.396318+0000 mon.smithi028 (mon.0) 86 : cluster [INF] Activating manager daemon smithi028.zkmzde 2024-04-24T17:10:58.510 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: cluster 2024-04-24T17:10:58.396318+0000 mon.smithi028 (mon.0) 86 : cluster [INF] Activating manager daemon smithi028.zkmzde 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: cluster 2024-04-24T17:10:58.403791+0000 mon.smithi028 (mon.0) 87 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: cluster 2024-04-24T17:10:58.403791+0000 mon.smithi028 (mon.0) 87 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: cluster 2024-04-24T17:10:58.404048+0000 mon.smithi028 (mon.0) 88 : cluster [DBG] mgrmap e10: smithi028.zkmzde(active, starting, since 0.00809934s) 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: cluster 2024-04-24T17:10:58.404048+0000 mon.smithi028 (mon.0) 88 : cluster [DBG] mgrmap e10: smithi028.zkmzde(active, starting, since 0.00809934s) 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: audit 2024-04-24T17:10:58.406889+0000 mon.smithi028 (mon.0) 89 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi028"}]: dispatch 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: audit 2024-04-24T17:10:58.406889+0000 mon.smithi028 (mon.0) 89 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi028"}]: dispatch 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: audit 2024-04-24T17:10:58.408875+0000 mon.smithi028 (mon.0) 90 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr metadata", "who": "smithi028.zkmzde", "id": "smithi028.zkmzde"}]: dispatch 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: audit 2024-04-24T17:10:58.408875+0000 mon.smithi028 (mon.0) 90 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr metadata", "who": "smithi028.zkmzde", "id": "smithi028.zkmzde"}]: dispatch 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: audit 2024-04-24T17:10:58.409948+0000 mon.smithi028 (mon.0) 91 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: audit 2024-04-24T17:10:58.409948+0000 mon.smithi028 (mon.0) 91 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: audit 2024-04-24T17:10:58.410232+0000 mon.smithi028 (mon.0) 92 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: audit 2024-04-24T17:10:58.410232+0000 mon.smithi028 (mon.0) 92 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T17:10:58.511 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: audit 2024-04-24T17:10:58.410357+0000 mon.smithi028 (mon.0) 93 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T17:10:58.512 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: audit 2024-04-24T17:10:58.410357+0000 mon.smithi028 (mon.0) 93 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T17:10:58.512 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: cluster 2024-04-24T17:10:58.416721+0000 mon.smithi028 (mon.0) 94 : cluster [INF] Manager daemon smithi028.zkmzde is now available 2024-04-24T17:10:58.512 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: cluster 2024-04-24T17:10:58.416721+0000 mon.smithi028 (mon.0) 94 : cluster [INF] Manager daemon smithi028.zkmzde is now available 2024-04-24T17:10:58.512 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: audit 2024-04-24T17:10:58.440304+0000 mon.smithi028 (mon.0) 95 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:10:58.512 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:58 smithi028 bash[18631]: audit 2024-04-24T17:10:58.440304+0000 mon.smithi028 (mon.0) 95 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:10:59.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:59 smithi028 bash[18631]: audit 2024-04-24T17:10:58.464752+0000 mon.smithi028 (mon.0) 96 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/mirror_snapshot_schedule"}]: dispatch 2024-04-24T17:10:59.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:59 smithi028 bash[18631]: audit 2024-04-24T17:10:58.464752+0000 mon.smithi028 (mon.0) 96 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/mirror_snapshot_schedule"}]: dispatch 2024-04-24T17:10:59.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:59 smithi028 bash[18631]: audit 2024-04-24T17:10:58.468069+0000 mon.smithi028 (mon.0) 97 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/trash_purge_schedule"}]: dispatch 2024-04-24T17:10:59.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:59 smithi028 bash[18631]: audit 2024-04-24T17:10:58.468069+0000 mon.smithi028 (mon.0) 97 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/trash_purge_schedule"}]: dispatch 2024-04-24T17:10:59.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:59 smithi028 bash[18631]: cluster 2024-04-24T17:10:59.405541+0000 mon.smithi028 (mon.0) 98 : cluster [DBG] mgrmap e11: smithi028.zkmzde(active, since 1.0096s) 2024-04-24T17:10:59.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:10:59 smithi028 bash[18631]: cluster 2024-04-24T17:10:59.405541+0000 mon.smithi028 (mon.0) 98 : cluster [DBG] mgrmap e11: smithi028.zkmzde(active, since 1.0096s) 2024-04-24T17:11:00.003 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout { 2024-04-24T17:11:00.003 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-04-24T17:11:00.003 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-24T17:11:00.003 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout } 2024-04-24T17:11:00.003 INFO:teuthology.orchestra.run.smithi028.stdout:mgr epoch 9 is available 2024-04-24T17:11:00.003 INFO:teuthology.orchestra.run.smithi028.stdout:Generating a dashboard self-signed certificate... 2024-04-24T17:11:00.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:00 smithi028 bash[18631]: cephadm 2024-04-24T17:10:59.935062+0000 mgr.smithi028.zkmzde (mgr.14164) 3 : cephadm [INF] [24/Apr/2024:17:10:59] ENGINE Bus STARTING 2024-04-24T17:11:00.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:00 smithi028 bash[18631]: cephadm 2024-04-24T17:10:59.935062+0000 mgr.smithi028.zkmzde (mgr.14164) 3 : cephadm [INF] [24/Apr/2024:17:10:59] ENGINE Bus STARTING 2024-04-24T17:11:01.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:01 smithi028 bash[18631]: cephadm 2024-04-24T17:11:00.058486+0000 mgr.smithi028.zkmzde (mgr.14164) 4 : cephadm [INF] [24/Apr/2024:17:11:00] ENGINE Serving on https://172.21.15.28:7150 2024-04-24T17:11:01.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:01 smithi028 bash[18631]: cephadm 2024-04-24T17:11:00.058486+0000 mgr.smithi028.zkmzde (mgr.14164) 4 : cephadm [INF] [24/Apr/2024:17:11:00] ENGINE Serving on https://172.21.15.28:7150 2024-04-24T17:11:01.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:01 smithi028 bash[18631]: cephadm 2024-04-24T17:11:00.159935+0000 mgr.smithi028.zkmzde (mgr.14164) 5 : cephadm [INF] [24/Apr/2024:17:11:00] ENGINE Serving on http://172.21.15.28:8765 2024-04-24T17:11:01.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:01 smithi028 bash[18631]: cephadm 2024-04-24T17:11:00.159935+0000 mgr.smithi028.zkmzde (mgr.14164) 5 : cephadm [INF] [24/Apr/2024:17:11:00] ENGINE Serving on http://172.21.15.28:8765 2024-04-24T17:11:01.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:01 smithi028 bash[18631]: cephadm 2024-04-24T17:11:00.160179+0000 mgr.smithi028.zkmzde (mgr.14164) 6 : cephadm [INF] [24/Apr/2024:17:11:00] ENGINE Bus STARTED 2024-04-24T17:11:01.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:01 smithi028 bash[18631]: cephadm 2024-04-24T17:11:00.160179+0000 mgr.smithi028.zkmzde (mgr.14164) 6 : cephadm [INF] [24/Apr/2024:17:11:00] ENGINE Bus STARTED 2024-04-24T17:11:01.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:01 smithi028 bash[18631]: cluster 2024-04-24T17:11:00.461691+0000 mon.smithi028 (mon.0) 99 : cluster [DBG] mgrmap e12: smithi028.zkmzde(active, since 2s) 2024-04-24T17:11:01.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:01 smithi028 bash[18631]: cluster 2024-04-24T17:11:00.461691+0000 mon.smithi028 (mon.0) 99 : cluster [DBG] mgrmap e12: smithi028.zkmzde(active, since 2s) 2024-04-24T17:11:01.943 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-04-24T17:11:01.944 INFO:teuthology.orchestra.run.smithi028.stdout:Creating initial admin user... 2024-04-24T17:11:02.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:02 smithi028 bash[18631]: audit 2024-04-24T17:11:01.205690+0000 mgr.smithi028.zkmzde (mgr.14164) 7 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:11:02.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:02 smithi028 bash[18631]: audit 2024-04-24T17:11:01.205690+0000 mgr.smithi028.zkmzde (mgr.14164) 7 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:11:02.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:02 smithi028 bash[18631]: audit 2024-04-24T17:11:01.466253+0000 mon.smithi028 (mon.0) 100 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:02.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:02 smithi028 bash[18631]: audit 2024-04-24T17:11:01.466253+0000 mon.smithi028 (mon.0) 100 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:02.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:02 smithi028 bash[18631]: audit 2024-04-24T17:11:01.471471+0000 mon.smithi028 (mon.0) 101 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:02.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:02 smithi028 bash[18631]: audit 2024-04-24T17:11:01.471471+0000 mon.smithi028 (mon.0) 101 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:04.016 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$kh.pQ2lR.0Zo2Sc7hytkZ.edcjBpRcd7ifsdKO3ZpdPYq//pBXHm6", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1713978663, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-04-24T17:11:04.016 INFO:teuthology.orchestra.run.smithi028.stdout:Fetching dashboard port number... 2024-04-24T17:11:04.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:04 smithi028 bash[18631]: audit 2024-04-24T17:11:03.191368+0000 mgr.smithi028.zkmzde (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-24T17:11:04.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:04 smithi028 bash[18631]: audit 2024-04-24T17:11:03.191368+0000 mgr.smithi028.zkmzde (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-24T17:11:04.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:04 smithi028 bash[18631]: audit 2024-04-24T17:11:03.438673+0000 mon.smithi028 (mon.0) 102 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:04.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:04 smithi028 bash[18631]: audit 2024-04-24T17:11:03.438673+0000 mon.smithi028 (mon.0) 102 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:05.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:05 smithi028 bash[18631]: audit 2024-04-24T17:11:05.184969+0000 mon.smithi028 (mon.0) 103 : audit [DBG] from='client.? 172.21.15.28:0/3535507244' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-04-24T17:11:05.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:05 smithi028 bash[18631]: audit 2024-04-24T17:11:05.184969+0000 mon.smithi028 (mon.0) 103 : audit [DBG] from='client.? 172.21.15.28:0/3535507244' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-04-24T17:11:05.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:05 smithi028 bash[18631]: audit 2024-04-24T17:11:05.194110+0000 mon.smithi028 (mon.0) 104 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:05.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:05 smithi028 bash[18631]: audit 2024-04-24T17:11:05.194110+0000 mon.smithi028 (mon.0) 104 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:05.762 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stdout 8443 2024-04-24T17:11:05.762 INFO:teuthology.orchestra.run.smithi028.stdout:firewalld does not appear to be present 2024-04-24T17:11:05.762 INFO:teuthology.orchestra.run.smithi028.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-04-24T17:11:05.765 INFO:teuthology.orchestra.run.smithi028.stdout:Ceph Dashboard is now available at: 2024-04-24T17:11:05.765 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:11:05.765 INFO:teuthology.orchestra.run.smithi028.stdout: URL: https://smithi028.front.sepia.ceph.com:8443/ 2024-04-24T17:11:05.765 INFO:teuthology.orchestra.run.smithi028.stdout: User: admin 2024-04-24T17:11:05.765 INFO:teuthology.orchestra.run.smithi028.stdout: Password: adpnvh7etc 2024-04-24T17:11:05.765 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:11:05.766 INFO:teuthology.orchestra.run.smithi028.stdout:Saving cluster configuration to /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config directory 2024-04-24T17:11:05.766 INFO:teuthology.orchestra.run.smithi028.stdout:Enabling autotune for osd_memory_target 2024-04-24T17:11:06.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:06 smithi028 bash[18631]: cluster 2024-04-24T17:11:05.443987+0000 mon.smithi028 (mon.0) 105 : cluster [DBG] mgrmap e13: smithi028.zkmzde(active, since 7s) 2024-04-24T17:11:06.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:06 smithi028 bash[18631]: cluster 2024-04-24T17:11:05.443987+0000 mon.smithi028 (mon.0) 105 : cluster [DBG] mgrmap e13: smithi028.zkmzde(active, since 7s) 2024-04-24T17:11:06.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:06 smithi028 bash[18631]: audit 2024-04-24T17:11:06.186526+0000 mon.smithi028 (mon.0) 106 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:06.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:06 smithi028 bash[18631]: audit 2024-04-24T17:11:06.186526+0000 mon.smithi028 (mon.0) 106 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:09.441 INFO:teuthology.orchestra.run.smithi028.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-04-24T17:11:09.441 INFO:teuthology.orchestra.run.smithi028.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-04-24T17:11:09.441 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:11:09.441 INFO:teuthology.orchestra.run.smithi028.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 3d5e4290-025d-11ef-bc93-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-04-24T17:11:09.441 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:11:09.441 INFO:teuthology.orchestra.run.smithi028.stdout:Or, if you are only running a single cluster on this host: 2024-04-24T17:11:09.441 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:11:09.441 INFO:teuthology.orchestra.run.smithi028.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-04-24T17:11:09.441 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:11:09.441 INFO:teuthology.orchestra.run.smithi028.stdout:Please consider enabling telemetry to help improve Ceph: 2024-04-24T17:11:09.442 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:11:09.442 INFO:teuthology.orchestra.run.smithi028.stdout: ceph telemetry on 2024-04-24T17:11:09.442 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:11:09.442 INFO:teuthology.orchestra.run.smithi028.stdout:For more information see: 2024-04-24T17:11:09.442 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:11:09.442 INFO:teuthology.orchestra.run.smithi028.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-04-24T17:11:09.442 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:11:09.442 INFO:teuthology.orchestra.run.smithi028.stdout:Bootstrap complete. 2024-04-24T17:11:09.501 INFO:tasks.cephadm:Fetching config... 2024-04-24T17:11:09.501 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:11:09.501 DEBUG:teuthology.orchestra.run.smithi028:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-04-24T17:11:09.506 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-04-24T17:11:09.507 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:11:09.507 DEBUG:teuthology.orchestra.run.smithi028:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-04-24T17:11:09.554 INFO:tasks.cephadm:Fetching mon keyring... 2024-04-24T17:11:09.554 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:11:09.554 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd if=/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/keyring of=/dev/stdout 2024-04-24T17:11:09.606 INFO:tasks.cephadm:Fetching pub ssh key... 2024-04-24T17:11:09.606 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:11:09.606 DEBUG:teuthology.orchestra.run.smithi028:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-04-24T17:11:09.653 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-04-24T17:11:09.654 DEBUG:teuthology.orchestra.run.smithi028:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/LQOvSLaK9/6SBaCLxRphLz8N99R+MNip8ZU/8MKsNpDaIu18hCxFjdtmYr2J3tAU5MAwCmzUGVWBzPuphIxjkdc5nCimUcUrZLX6jpIKXf/sEG8fYaDzP/EXvUH0AyeU03I3o/mj+zP3xH0HyFfKN+H4p6Lf/fTFt2UaPBz8EVPgazePML62py6mRnIFQTbaoSSgA+MS/VM/kxmPNqC5KOmUnHK8F2EKYt9JYUM0m7WsMB7KMB7OKeDmAU1QQM2+ng87FR8wSPzFv5BOmV49TRo7NK4IFuMB4Bf5Nh/HKyjxoQej8btcRjcG/ZQpPr9gNrjOiklQw6ZHb+GdEuIK73Dx4d7vFEn5OVlBP2zPtybwuJ+Gmv7YOz3csWr3tmtvLwRN125fhqtaX+2MB8HZZGJedtdAI+vl3MPie7hYyK2wuDKU7qCqW8ux/vXuwTIqhn5A9XkiR2iX75ANtGxmBJc1qIlILwIDEho0ieVi9qhlb0upJPqkwGs5Z6NgAu0= ceph-3d5e4290-025d-11ef-bc93-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-24T17:11:09.719 INFO:teuthology.orchestra.run.smithi028.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/LQOvSLaK9/6SBaCLxRphLz8N99R+MNip8ZU/8MKsNpDaIu18hCxFjdtmYr2J3tAU5MAwCmzUGVWBzPuphIxjkdc5nCimUcUrZLX6jpIKXf/sEG8fYaDzP/EXvUH0AyeU03I3o/mj+zP3xH0HyFfKN+H4p6Lf/fTFt2UaPBz8EVPgazePML62py6mRnIFQTbaoSSgA+MS/VM/kxmPNqC5KOmUnHK8F2EKYt9JYUM0m7WsMB7KMB7OKeDmAU1QQM2+ng87FR8wSPzFv5BOmV49TRo7NK4IFuMB4Bf5Nh/HKyjxoQej8btcRjcG/ZQpPr9gNrjOiklQw6ZHb+GdEuIK73Dx4d7vFEn5OVlBP2zPtybwuJ+Gmv7YOz3csWr3tmtvLwRN125fhqtaX+2MB8HZZGJedtdAI+vl3MPie7hYyK2wuDKU7qCqW8ux/vXuwTIqhn5A9XkiR2iX75ANtGxmBJc1qIlILwIDEho0ieVi9qhlb0upJPqkwGs5Z6NgAu0= ceph-3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:11:09.728 DEBUG:teuthology.orchestra.run.smithi105:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/LQOvSLaK9/6SBaCLxRphLz8N99R+MNip8ZU/8MKsNpDaIu18hCxFjdtmYr2J3tAU5MAwCmzUGVWBzPuphIxjkdc5nCimUcUrZLX6jpIKXf/sEG8fYaDzP/EXvUH0AyeU03I3o/mj+zP3xH0HyFfKN+H4p6Lf/fTFt2UaPBz8EVPgazePML62py6mRnIFQTbaoSSgA+MS/VM/kxmPNqC5KOmUnHK8F2EKYt9JYUM0m7WsMB7KMB7OKeDmAU1QQM2+ng87FR8wSPzFv5BOmV49TRo7NK4IFuMB4Bf5Nh/HKyjxoQej8btcRjcG/ZQpPr9gNrjOiklQw6ZHb+GdEuIK73Dx4d7vFEn5OVlBP2zPtybwuJ+Gmv7YOz3csWr3tmtvLwRN125fhqtaX+2MB8HZZGJedtdAI+vl3MPie7hYyK2wuDKU7qCqW8ux/vXuwTIqhn5A9XkiR2iX75ANtGxmBJc1qIlILwIDEho0ieVi9qhlb0upJPqkwGs5Z6NgAu0= ceph-3d5e4290-025d-11ef-bc93-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-24T17:11:09.752 INFO:teuthology.orchestra.run.smithi105.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/LQOvSLaK9/6SBaCLxRphLz8N99R+MNip8ZU/8MKsNpDaIu18hCxFjdtmYr2J3tAU5MAwCmzUGVWBzPuphIxjkdc5nCimUcUrZLX6jpIKXf/sEG8fYaDzP/EXvUH0AyeU03I3o/mj+zP3xH0HyFfKN+H4p6Lf/fTFt2UaPBz8EVPgazePML62py6mRnIFQTbaoSSgA+MS/VM/kxmPNqC5KOmUnHK8F2EKYt9JYUM0m7WsMB7KMB7OKeDmAU1QQM2+ng87FR8wSPzFv5BOmV49TRo7NK4IFuMB4Bf5Nh/HKyjxoQej8btcRjcG/ZQpPr9gNrjOiklQw6ZHb+GdEuIK73Dx4d7vFEn5OVlBP2zPtybwuJ+Gmv7YOz3csWr3tmtvLwRN125fhqtaX+2MB8HZZGJedtdAI+vl3MPie7hYyK2wuDKU7qCqW8ux/vXuwTIqhn5A9XkiR2iX75ANtGxmBJc1qIlILwIDEho0ieVi9qhlb0upJPqkwGs5Z6NgAu0= ceph-3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:11:09.762 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-04-24T17:11:10.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:09 smithi028 bash[18631]: audit 2024-04-24T17:11:08.893511+0000 mon.smithi028 (mon.0) 107 : audit [INF] from='client.? 172.21.15.28:0/3881934327' entity='client.admin' 2024-04-24T17:11:10.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:09 smithi028 bash[18631]: audit 2024-04-24T17:11:08.893511+0000 mon.smithi028 (mon.0) 107 : audit [INF] from='client.? 172.21.15.28:0/3881934327' entity='client.admin' 2024-04-24T17:11:14.429 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:11:14.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:14 smithi028 bash[18631]: audit 2024-04-24T17:11:14.171447+0000 mon.smithi028 (mon.0) 108 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi028", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:11:14.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:14 smithi028 bash[18631]: audit 2024-04-24T17:11:14.171447+0000 mon.smithi028 (mon.0) 108 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi028", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:11:14.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:14 smithi028 bash[18631]: audit 2024-04-24T17:11:14.179774+0000 mon.smithi028 (mon.0) 109 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:14.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:14 smithi028 bash[18631]: audit 2024-04-24T17:11:14.179774+0000 mon.smithi028 (mon.0) 109 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:14.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:14 smithi028 bash[18631]: audit 2024-04-24T17:11:14.182983+0000 mon.smithi028 (mon.0) 110 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi028", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:11:14.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:14 smithi028 bash[18631]: audit 2024-04-24T17:11:14.182983+0000 mon.smithi028 (mon.0) 110 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi028", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:11:14.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:14 smithi028 bash[18631]: audit 2024-04-24T17:11:14.184616+0000 mon.smithi028 (mon.0) 111 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi028", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-24T17:11:14.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:14 smithi028 bash[18631]: audit 2024-04-24T17:11:14.184616+0000 mon.smithi028 (mon.0) 111 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi028", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-24T17:11:14.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:14 smithi028 bash[18631]: audit 2024-04-24T17:11:14.189193+0000 mon.smithi028 (mon.0) 112 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:11:14.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:14 smithi028 bash[18631]: audit 2024-04-24T17:11:14.189193+0000 mon.smithi028 (mon.0) 112 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:11:15.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:15 smithi028 bash[18631]: cephadm 2024-04-24T17:11:14.190903+0000 mgr.smithi028.zkmzde (mgr.14164) 9 : cephadm [INF] Deploying daemon ceph-exporter.smithi028 on smithi028 2024-04-24T17:11:15.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:15 smithi028 bash[18631]: cephadm 2024-04-24T17:11:14.190903+0000 mgr.smithi028.zkmzde (mgr.14164) 9 : cephadm [INF] Deploying daemon ceph-exporter.smithi028 on smithi028 2024-04-24T17:11:16.928 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-04-24T17:11:16.928 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-04-24T17:11:17.081 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:16 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:11:17.081 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:17 smithi028 bash[18631]: audit 2024-04-24T17:11:16.054511+0000 mon.smithi028 (mon.0) 113 : audit [INF] from='client.? 172.21.15.28:0/1386802968' entity='client.admin' 2024-04-24T17:11:17.081 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:17 smithi028 bash[18631]: audit 2024-04-24T17:11:16.054511+0000 mon.smithi028 (mon.0) 113 : audit [INF] from='client.? 172.21.15.28:0/1386802968' entity='client.admin' 2024-04-24T17:11:17.348 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:17 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:11:18.663 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: audit 2024-04-24T17:11:17.349485+0000 mon.smithi028 (mon.0) 114 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:18.663 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: audit 2024-04-24T17:11:17.349485+0000 mon.smithi028 (mon.0) 114 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:18.663 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: audit 2024-04-24T17:11:17.363982+0000 mon.smithi028 (mon.0) 115 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:18.663 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: audit 2024-04-24T17:11:17.363982+0000 mon.smithi028 (mon.0) 115 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:18.663 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: audit 2024-04-24T17:11:17.366221+0000 mon.smithi028 (mon.0) 116 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:18.663 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: audit 2024-04-24T17:11:17.366221+0000 mon.smithi028 (mon.0) 116 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:18.663 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: audit 2024-04-24T17:11:17.367664+0000 mon.smithi028 (mon.0) 117 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi028", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:11:18.663 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: audit 2024-04-24T17:11:17.367664+0000 mon.smithi028 (mon.0) 117 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi028", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:11:18.663 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: audit 2024-04-24T17:11:17.368251+0000 mon.smithi028 (mon.0) 118 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi028", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-24T17:11:18.663 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: audit 2024-04-24T17:11:17.368251+0000 mon.smithi028 (mon.0) 118 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi028", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-24T17:11:18.663 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: audit 2024-04-24T17:11:17.369897+0000 mon.smithi028 (mon.0) 119 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:11:18.664 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: audit 2024-04-24T17:11:17.369897+0000 mon.smithi028 (mon.0) 119 : audit [DBG] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:11:18.664 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: cephadm 2024-04-24T17:11:17.370773+0000 mgr.smithi028.zkmzde (mgr.14164) 10 : cephadm [INF] Deploying daemon crash.smithi028 on smithi028 2024-04-24T17:11:18.664 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:18 smithi028 bash[18631]: cephadm 2024-04-24T17:11:17.370773+0000 mgr.smithi028.zkmzde (mgr.14164) 10 : cephadm [INF] Deploying daemon crash.smithi028 on smithi028 2024-04-24T17:11:19.727 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:19 smithi028 bash[18631]: audit 2024-04-24T17:11:18.463668+0000 mon.smithi028 (mon.0) 120 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:19.727 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:19 smithi028 bash[18631]: audit 2024-04-24T17:11:18.463668+0000 mon.smithi028 (mon.0) 120 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:19.727 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:19 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:11:20.001 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:19 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:11:21.031 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:20 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:11:21.031 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:20 smithi028 bash[18631]: audit 2024-04-24T17:11:19.998014+0000 mon.smithi028 (mon.0) 121 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:21.031 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:20 smithi028 bash[18631]: audit 2024-04-24T17:11:19.998014+0000 mon.smithi028 (mon.0) 121 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:21.031 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:20 smithi028 bash[18631]: audit 2024-04-24T17:11:20.043299+0000 mon.smithi028 (mon.0) 122 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:21.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:20 smithi028 bash[18631]: audit 2024-04-24T17:11:20.043299+0000 mon.smithi028 (mon.0) 122 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:21.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:20 smithi028 bash[18631]: audit 2024-04-24T17:11:20.045797+0000 mon.smithi028 (mon.0) 123 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:21.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:20 smithi028 bash[18631]: audit 2024-04-24T17:11:20.045797+0000 mon.smithi028 (mon.0) 123 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:21.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:20 smithi028 bash[18631]: cephadm 2024-04-24T17:11:20.047234+0000 mgr.smithi028.zkmzde (mgr.14164) 11 : cephadm [INF] Deploying daemon node-exporter.smithi028 on smithi028 2024-04-24T17:11:21.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:20 smithi028 bash[18631]: cephadm 2024-04-24T17:11:20.047234+0000 mgr.smithi028.zkmzde (mgr.14164) 11 : cephadm [INF] Deploying daemon node-exporter.smithi028 on smithi028 2024-04-24T17:11:21.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:20 smithi028 bash[18631]: cluster 2024-04-24T17:11:20.174321+0000 mgr.smithi028.zkmzde (mgr.14164) 12 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:21.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:20 smithi028 bash[18631]: cluster 2024-04-24T17:11:20.174321+0000 mgr.smithi028.zkmzde (mgr.14164) 12 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:21.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:21 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:11:22.270 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:21 smithi028 bash[18631]: cluster 2024-04-24T17:11:21.044784+0000 mon.smithi028 (mon.0) 124 : cluster [WRN] Health check failed: failed to probe daemons or devices (CEPHADM_REFRESH_FAILED) 2024-04-24T17:11:22.270 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:21 smithi028 bash[18631]: cluster 2024-04-24T17:11:21.044784+0000 mon.smithi028 (mon.0) 124 : cluster [WRN] Health check failed: failed to probe daemons or devices (CEPHADM_REFRESH_FAILED) 2024-04-24T17:11:22.270 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:21 smithi028 bash[18631]: audit 2024-04-24T17:11:21.141590+0000 mon.smithi028 (mon.0) 125 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:22.270 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:21 smithi028 bash[18631]: audit 2024-04-24T17:11:21.141590+0000 mon.smithi028 (mon.0) 125 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:22.270 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:21 smithi028 bash[18631]: audit 2024-04-24T17:11:21.165627+0000 mon.smithi028 (mon.0) 126 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:22.270 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:21 smithi028 bash[18631]: audit 2024-04-24T17:11:21.165627+0000 mon.smithi028 (mon.0) 126 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:22.270 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:21 smithi028 bash[18631]: audit 2024-04-24T17:11:21.168009+0000 mon.smithi028 (mon.0) 127 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:22.270 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:21 smithi028 bash[18631]: audit 2024-04-24T17:11:21.168009+0000 mon.smithi028 (mon.0) 127 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:22.270 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:21 smithi028 bash[18631]: cephadm 2024-04-24T17:11:21.179821+0000 mgr.smithi028.zkmzde (mgr.14164) 13 : cephadm [INF] Deploying daemon alertmanager.smithi028 on smithi028 2024-04-24T17:11:22.270 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:21 smithi028 bash[18631]: cephadm 2024-04-24T17:11:21.179821+0000 mgr.smithi028.zkmzde (mgr.14164) 13 : cephadm [INF] Deploying daemon alertmanager.smithi028 on smithi028 2024-04-24T17:11:22.647 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:11:23.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:23 smithi028 bash[18631]: cluster 2024-04-24T17:11:22.174778+0000 mgr.smithi028.zkmzde (mgr.14164) 14 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:23.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:23 smithi028 bash[18631]: cluster 2024-04-24T17:11:22.174778+0000 mgr.smithi028.zkmzde (mgr.14164) 14 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:24.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:24 smithi028 bash[18631]: audit 2024-04-24T17:11:23.470632+0000 mon.smithi028 (mon.0) 128 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:24.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:24 smithi028 bash[18631]: audit 2024-04-24T17:11:23.470632+0000 mon.smithi028 (mon.0) 128 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:25.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:25 smithi028 bash[18631]: cluster 2024-04-24T17:11:24.175247+0000 mgr.smithi028.zkmzde (mgr.14164) 15 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:25.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:25 smithi028 bash[18631]: cluster 2024-04-24T17:11:24.175247+0000 mgr.smithi028.zkmzde (mgr.14164) 15 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:25.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:25 smithi028 bash[18631]: audit 2024-04-24T17:11:25.099315+0000 mon.smithi028 (mon.0) 129 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:25.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:25 smithi028 bash[18631]: audit 2024-04-24T17:11:25.099315+0000 mon.smithi028 (mon.0) 129 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:26.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:26 smithi028 bash[18631]: audit 2024-04-24T17:11:25.095071+0000 mgr.smithi028.zkmzde (mgr.14164) 16 : 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-24T17:11:26.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:26 smithi028 bash[18631]: audit 2024-04-24T17:11:25.095071+0000 mgr.smithi028.zkmzde (mgr.14164) 16 : 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-24T17:11:27.150 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi105 2024-04-24T17:11:27.150 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-24T17:11:27.151 DEBUG:teuthology.orchestra.run.smithi105:> dd of=/etc/ceph/ceph.conf 2024-04-24T17:11:27.157 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-24T17:11:27.157 DEBUG:teuthology.orchestra.run.smithi105:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-24T17:11:27.201 INFO:tasks.cephadm:Adding host smithi105 to orchestrator... 2024-04-24T17:11:27.202 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph orch host add smithi105 2024-04-24T17:11:27.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:27 smithi028 bash[18631]: cluster 2024-04-24T17:11:26.176100+0000 mgr.smithi028.zkmzde (mgr.14164) 17 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:27.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:27 smithi028 bash[18631]: cluster 2024-04-24T17:11:26.176100+0000 mgr.smithi028.zkmzde (mgr.14164) 17 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:29.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:29 smithi028 bash[18631]: cluster 2024-04-24T17:11:28.176839+0000 mgr.smithi028.zkmzde (mgr.14164) 18 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:29.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:29 smithi028 bash[18631]: cluster 2024-04-24T17:11:28.176839+0000 mgr.smithi028.zkmzde (mgr.14164) 18 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:31.188 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:31 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:11:31.466 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:31 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:11:31.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:31 smithi028 bash[18631]: cluster 2024-04-24T17:11:30.177650+0000 mgr.smithi028.zkmzde (mgr.14164) 19 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:31.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:31 smithi028 bash[18631]: cluster 2024-04-24T17:11:30.177650+0000 mgr.smithi028.zkmzde (mgr.14164) 19 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:31.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:31 smithi028 bash[18631]: audit 2024-04-24T17:11:31.470860+0000 mon.smithi028 (mon.0) 130 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:31.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:31 smithi028 bash[18631]: audit 2024-04-24T17:11:31.470860+0000 mon.smithi028 (mon.0) 130 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:31.953 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:11:32.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.518555+0000 mon.smithi028 (mon.0) 131 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.518555+0000 mon.smithi028 (mon.0) 131 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.520886+0000 mon.smithi028 (mon.0) 132 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.520886+0000 mon.smithi028 (mon.0) 132 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.523605+0000 mon.smithi028 (mon.0) 133 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.523605+0000 mon.smithi028 (mon.0) 133 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.525864+0000 mon.smithi028 (mon.0) 134 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.525864+0000 mon.smithi028 (mon.0) 134 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: cephadm 2024-04-24T17:11:31.536598+0000 mgr.smithi028.zkmzde (mgr.14164) 20 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-04-24T17:11:32.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: cephadm 2024-04-24T17:11:31.536598+0000 mgr.smithi028.zkmzde (mgr.14164) 20 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-04-24T17:11:32.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.578674+0000 mon.smithi028 (mon.0) 135 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.578674+0000 mon.smithi028 (mon.0) 135 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.583091+0000 mon.smithi028 (mon.0) 136 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.583091+0000 mon.smithi028 (mon.0) 136 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.854669+0000 mon.smithi028 (mon.0) 137 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-04-24T17:11:32.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.854669+0000 mon.smithi028 (mon.0) 137 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-04-24T17:11:32.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.855145+0000 mgr.smithi028.zkmzde (mgr.14164) 21 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-04-24T17:11:32.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.855145+0000 mgr.smithi028.zkmzde (mgr.14164) 21 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-04-24T17:11:32.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.859284+0000 mon.smithi028 (mon.0) 138 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: audit 2024-04-24T17:11:31.859284+0000 mon.smithi028 (mon.0) 138 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:32.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: cephadm 2024-04-24T17:11:31.878470+0000 mgr.smithi028.zkmzde (mgr.14164) 22 : cephadm [INF] Deploying daemon grafana.smithi028 on smithi028 2024-04-24T17:11:32.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:32 smithi028 bash[18631]: cephadm 2024-04-24T17:11:31.878470+0000 mgr.smithi028.zkmzde (mgr.14164) 22 : cephadm [INF] Deploying daemon grafana.smithi028 on smithi028 2024-04-24T17:11:34.031 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:33 smithi028 bash[18631]: cluster 2024-04-24T17:11:32.178359+0000 mgr.smithi028.zkmzde (mgr.14164) 23 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:34.031 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:33 smithi028 bash[18631]: cluster 2024-04-24T17:11:32.178359+0000 mgr.smithi028.zkmzde (mgr.14164) 23 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:34.031 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:33 smithi028 bash[18631]: audit 2024-04-24T17:11:33.474638+0000 mon.smithi028 (mon.0) 139 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:34.031 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:33 smithi028 bash[18631]: audit 2024-04-24T17:11:33.474638+0000 mon.smithi028 (mon.0) 139 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:35.131 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:34 smithi028 bash[18631]: audit 2024-04-24T17:11:33.707084+0000 mgr.smithi028.zkmzde (mgr.14164) 24 : audit [DBG] from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi105", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:11:35.131 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:34 smithi028 bash[18631]: audit 2024-04-24T17:11:33.707084+0000 mgr.smithi028.zkmzde (mgr.14164) 24 : audit [DBG] from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi105", "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:11:36.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:35 smithi028 bash[18631]: cluster 2024-04-24T17:11:34.178755+0000 mgr.smithi028.zkmzde (mgr.14164) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:36.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:35 smithi028 bash[18631]: cluster 2024-04-24T17:11:34.178755+0000 mgr.smithi028.zkmzde (mgr.14164) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:36.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:35 smithi028 bash[18631]: cephadm 2024-04-24T17:11:34.387824+0000 mgr.smithi028.zkmzde (mgr.14164) 26 : cephadm [INF] Deploying cephadm binary to smithi105 2024-04-24T17:11:36.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:35 smithi028 bash[18631]: cephadm 2024-04-24T17:11:34.387824+0000 mgr.smithi028.zkmzde (mgr.14164) 26 : cephadm [INF] Deploying cephadm binary to smithi105 2024-04-24T17:11:38.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:37 smithi028 bash[18631]: cluster 2024-04-24T17:11:36.179094+0000 mgr.smithi028.zkmzde (mgr.14164) 27 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:38.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:37 smithi028 bash[18631]: cluster 2024-04-24T17:11:36.179094+0000 mgr.smithi028.zkmzde (mgr.14164) 27 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:40.230 INFO:teuthology.orchestra.run.smithi028.stdout:Added host 'smithi105' with addr '172.21.15.105' 2024-04-24T17:11:40.246 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:39 smithi028 bash[18631]: cluster 2024-04-24T17:11:38.179679+0000 mgr.smithi028.zkmzde (mgr.14164) 28 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:40.246 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:39 smithi028 bash[18631]: cluster 2024-04-24T17:11:38.179679+0000 mgr.smithi028.zkmzde (mgr.14164) 28 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:41.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:41 smithi028 bash[18631]: cluster 2024-04-24T17:11:40.180500+0000 mgr.smithi028.zkmzde (mgr.14164) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:41.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:41 smithi028 bash[18631]: cluster 2024-04-24T17:11:40.180500+0000 mgr.smithi028.zkmzde (mgr.14164) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:41.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:41 smithi028 bash[18631]: audit 2024-04-24T17:11:40.232298+0000 mon.smithi028 (mon.0) 140 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:41.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:41 smithi028 bash[18631]: audit 2024-04-24T17:11:40.232298+0000 mon.smithi028 (mon.0) 140 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:41.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:41 smithi028 bash[18631]: cephadm 2024-04-24T17:11:40.233269+0000 mgr.smithi028.zkmzde (mgr.14164) 30 : cephadm [INF] Added host smithi105 2024-04-24T17:11:41.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:41 smithi028 bash[18631]: cephadm 2024-04-24T17:11:40.233269+0000 mgr.smithi028.zkmzde (mgr.14164) 30 : cephadm [INF] Added host smithi105 2024-04-24T17:11:42.241 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph orch host ls --format=json 2024-04-24T17:11:43.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:43 smithi028 bash[18631]: cluster 2024-04-24T17:11:42.181315+0000 mgr.smithi028.zkmzde (mgr.14164) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:43.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:43 smithi028 bash[18631]: cluster 2024-04-24T17:11:42.181315+0000 mgr.smithi028.zkmzde (mgr.14164) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:44.967 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:44 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:11:45.229 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:45 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:11:45.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:45 smithi028 bash[18631]: cluster 2024-04-24T17:11:44.182072+0000 mgr.smithi028.zkmzde (mgr.14164) 32 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:45.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:45 smithi028 bash[18631]: cluster 2024-04-24T17:11:44.182072+0000 mgr.smithi028.zkmzde (mgr.14164) 32 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:46.504 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.242659+0000 mon.smithi028 (mon.0) 141 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.504 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.242659+0000 mon.smithi028 (mon.0) 141 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.504 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.293023+0000 mon.smithi028 (mon.0) 142 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.504 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.293023+0000 mon.smithi028 (mon.0) 142 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.504 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.295825+0000 mon.smithi028 (mon.0) 143 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.504 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.295825+0000 mon.smithi028 (mon.0) 143 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.504 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.298792+0000 mon.smithi028 (mon.0) 144 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.504 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.298792+0000 mon.smithi028 (mon.0) 144 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.504 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.302538+0000 mon.smithi028 (mon.0) 145 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.504 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.302538+0000 mon.smithi028 (mon.0) 145 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.505 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.307224+0000 mon.smithi028 (mon.0) 146 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.505 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.307224+0000 mon.smithi028 (mon.0) 146 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.505 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.311112+0000 mon.smithi028 (mon.0) 147 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.505 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: audit 2024-04-24T17:11:45.311112+0000 mon.smithi028 (mon.0) 147 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:46.505 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: cephadm 2024-04-24T17:11:45.565021+0000 mgr.smithi028.zkmzde (mgr.14164) 33 : cephadm [INF] Deploying daemon prometheus.smithi028 on smithi028 2024-04-24T17:11:46.505 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:46 smithi028 bash[18631]: cephadm 2024-04-24T17:11:45.565021+0000 mgr.smithi028.zkmzde (mgr.14164) 33 : cephadm [INF] Deploying daemon prometheus.smithi028 on smithi028 2024-04-24T17:11:47.588 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:47 smithi028 bash[18631]: cluster 2024-04-24T17:11:46.182553+0000 mgr.smithi028.zkmzde (mgr.14164) 34 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:47.589 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:47 smithi028 bash[18631]: cluster 2024-04-24T17:11:46.182553+0000 mgr.smithi028.zkmzde (mgr.14164) 34 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:48.005 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:11:49.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:49 smithi028 bash[18631]: cluster 2024-04-24T17:11:48.182965+0000 mgr.smithi028.zkmzde (mgr.14164) 35 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:49.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:49 smithi028 bash[18631]: cluster 2024-04-24T17:11:48.182965+0000 mgr.smithi028.zkmzde (mgr.14164) 35 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:49.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:49 smithi028 bash[18631]: audit 2024-04-24T17:11:48.482949+0000 mon.smithi028 (mon.0) 148 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:49.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:49 smithi028 bash[18631]: audit 2024-04-24T17:11:48.482949+0000 mon.smithi028 (mon.0) 148 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:11:51.029 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:11:51.029 INFO:teuthology.orchestra.run.smithi028.stdout:[{"addr": "172.21.15.28", "hostname": "smithi028", "labels": [], "status": ""}, {"addr": "172.21.15.105", "hostname": "smithi105", "labels": [], "status": ""}] 2024-04-24T17:11:51.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:51 smithi028 bash[18631]: cluster 2024-04-24T17:11:50.183334+0000 mgr.smithi028.zkmzde (mgr.14164) 36 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:51.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:51 smithi028 bash[18631]: cluster 2024-04-24T17:11:50.183334+0000 mgr.smithi028.zkmzde (mgr.14164) 36 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:52.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:52 smithi028 bash[18631]: audit 2024-04-24T17:11:51.031536+0000 mgr.smithi028.zkmzde (mgr.14164) 37 : audit [DBG] from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-24T17:11:52.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:52 smithi028 bash[18631]: audit 2024-04-24T17:11:51.031536+0000 mgr.smithi028.zkmzde (mgr.14164) 37 : audit [DBG] from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-24T17:11:53.641 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:53 smithi028 bash[18631]: cluster 2024-04-24T17:11:52.184032+0000 mgr.smithi028.zkmzde (mgr.14164) 38 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:53.642 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:53 smithi028 bash[18631]: cluster 2024-04-24T17:11:52.184032+0000 mgr.smithi028.zkmzde (mgr.14164) 38 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:53.681 INFO:tasks.cephadm:Setting crush tunables to default 2024-04-24T17:11:53.681 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd crush tunables default 2024-04-24T17:11:55.605 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:55 smithi028 bash[18631]: cluster 2024-04-24T17:11:54.184919+0000 mgr.smithi028.zkmzde (mgr.14164) 39 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:55.605 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:55 smithi028 bash[18631]: cluster 2024-04-24T17:11:54.184919+0000 mgr.smithi028.zkmzde (mgr.14164) 39 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:57.709 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:57 smithi028 bash[18631]: cluster 2024-04-24T17:11:56.185710+0000 mgr.smithi028.zkmzde (mgr.14164) 40 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:57.709 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:57 smithi028 bash[18631]: cluster 2024-04-24T17:11:56.185710+0000 mgr.smithi028.zkmzde (mgr.14164) 40 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:59.263 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:11:59.714 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:59 smithi028 bash[18631]: cluster 2024-04-24T17:11:58.186432+0000 mgr.smithi028.zkmzde (mgr.14164) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:11:59.714 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:11:59 smithi028 bash[18631]: cluster 2024-04-24T17:11:58.186432+0000 mgr.smithi028.zkmzde (mgr.14164) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:01.495 INFO:teuthology.orchestra.run.smithi028.stderr:adjusted tunables profile to default 2024-04-24T17:12:01.757 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:01 smithi028 bash[18631]: cluster 2024-04-24T17:12:00.187212+0000 mgr.smithi028.zkmzde (mgr.14164) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:01.758 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:01 smithi028 bash[18631]: cluster 2024-04-24T17:12:00.187212+0000 mgr.smithi028.zkmzde (mgr.14164) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:01.758 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:01 smithi028 bash[18631]: audit 2024-04-24T17:12:01.351806+0000 mon.smithi028 (mon.0) 149 : audit [INF] from='client.? 172.21.15.28:0/1217213991' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-24T17:12:01.758 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:01 smithi028 bash[18631]: audit 2024-04-24T17:12:01.351806+0000 mon.smithi028 (mon.0) 149 : audit [INF] from='client.? 172.21.15.28:0/1217213991' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-24T17:12:02.724 INFO:tasks.cephadm:Adding mon.smithi028 on smithi028 2024-04-24T17:12:02.724 INFO:tasks.cephadm:Adding mon.smithi105 on smithi105 2024-04-24T17:12:02.724 DEBUG:teuthology.orchestra.run.smithi105:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph orch apply mon '2;smithi028:172.21.15.28=smithi028;smithi105:172.21.15.105=smithi105' 2024-04-24T17:12:02.753 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:02 smithi028 bash[18631]: audit 2024-04-24T17:12:01.494100+0000 mon.smithi028 (mon.0) 150 : audit [INF] from='client.? 172.21.15.28:0/1217213991' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-24T17:12:02.753 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:02 smithi028 bash[18631]: audit 2024-04-24T17:12:01.494100+0000 mon.smithi028 (mon.0) 150 : audit [INF] from='client.? 172.21.15.28:0/1217213991' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-24T17:12:02.753 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:02 smithi028 bash[18631]: cluster 2024-04-24T17:12:01.498208+0000 mon.smithi028 (mon.0) 151 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-24T17:12:02.753 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:02 smithi028 bash[18631]: cluster 2024-04-24T17:12:01.498208+0000 mon.smithi028 (mon.0) 151 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-04-24T17:12:02.753 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:02 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:12:03.019 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:02 smithi028 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:12:03.683 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:03 smithi028 bash[18631]: cluster 2024-04-24T17:12:02.187939+0000 mgr.smithi028.zkmzde (mgr.14164) 43 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:03.684 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:03 smithi028 bash[18631]: cluster 2024-04-24T17:12:02.187939+0000 mgr.smithi028.zkmzde (mgr.14164) 43 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:03.684 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:03 smithi028 bash[18631]: audit 2024-04-24T17:12:03.142875+0000 mon.smithi028 (mon.0) 152 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:03.684 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:03 smithi028 bash[18631]: audit 2024-04-24T17:12:03.142875+0000 mon.smithi028 (mon.0) 152 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:03.684 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:03 smithi028 bash[18631]: audit 2024-04-24T17:12:03.173577+0000 mon.smithi028 (mon.0) 153 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:03.684 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:03 smithi028 bash[18631]: audit 2024-04-24T17:12:03.173577+0000 mon.smithi028 (mon.0) 153 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:03.684 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:03 smithi028 bash[18631]: audit 2024-04-24T17:12:03.175858+0000 mon.smithi028 (mon.0) 154 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-04-24T17:12:03.684 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:03 smithi028 bash[18631]: audit 2024-04-24T17:12:03.175858+0000 mon.smithi028 (mon.0) 154 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-04-24T17:12:03.684 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:03 smithi028 bash[18631]: audit 2024-04-24T17:12:03.489951+0000 mon.smithi028 (mon.0) 155 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:03.684 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:03 smithi028 bash[18631]: audit 2024-04-24T17:12:03.489951+0000 mon.smithi028 (mon.0) 155 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:03.933 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T17:12:04.979 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T17:12:05.429 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:05 smithi028 bash[18631]: audit 2024-04-24T17:12:04.174245+0000 mon.smithi028 (mon.0) 156 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-04-24T17:12:05.429 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:05 smithi028 bash[18631]: audit 2024-04-24T17:12:04.174245+0000 mon.smithi028 (mon.0) 156 : audit [INF] from='mgr.14164 172.21.15.28:0/2654066017' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-04-24T17:12:05.430 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:05 smithi028 bash[18631]: cluster 2024-04-24T17:12:04.179723+0000 mon.smithi028 (mon.0) 157 : cluster [DBG] mgrmap e14: smithi028.zkmzde(active, since 65s) 2024-04-24T17:12:05.430 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:05 smithi028 bash[18631]: cluster 2024-04-24T17:12:04.179723+0000 mon.smithi028 (mon.0) 157 : cluster [DBG] mgrmap e14: smithi028.zkmzde(active, since 65s) 2024-04-24T17:12:12.893 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: cluster 2024-04-24T17:12:12.731271+0000 mon.smithi028 (mon.0) 158 : cluster [INF] Active manager daemon smithi028.zkmzde restarted 2024-04-24T17:12:12.893 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: cluster 2024-04-24T17:12:12.731271+0000 mon.smithi028 (mon.0) 158 : cluster [INF] Active manager daemon smithi028.zkmzde restarted 2024-04-24T17:12:12.893 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: cluster 2024-04-24T17:12:12.731952+0000 mon.smithi028 (mon.0) 159 : cluster [INF] Activating manager daemon smithi028.zkmzde 2024-04-24T17:12:12.893 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: cluster 2024-04-24T17:12:12.731952+0000 mon.smithi028 (mon.0) 159 : cluster [INF] Activating manager daemon smithi028.zkmzde 2024-04-24T17:12:12.893 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: cluster 2024-04-24T17:12:12.736745+0000 mon.smithi028 (mon.0) 160 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-04-24T17:12:12.893 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: cluster 2024-04-24T17:12:12.736745+0000 mon.smithi028 (mon.0) 160 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-04-24T17:12:12.893 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: cluster 2024-04-24T17:12:12.736968+0000 mon.smithi028 (mon.0) 161 : cluster [DBG] mgrmap e15: smithi028.zkmzde(active, starting, since 0.00524581s) 2024-04-24T17:12:12.893 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: cluster 2024-04-24T17:12:12.736968+0000 mon.smithi028 (mon.0) 161 : cluster [DBG] mgrmap e15: smithi028.zkmzde(active, starting, since 0.00524581s) 2024-04-24T17:12:12.893 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: audit 2024-04-24T17:12:12.738503+0000 mon.smithi028 (mon.0) 162 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi028"}]: dispatch 2024-04-24T17:12:12.893 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: audit 2024-04-24T17:12:12.738503+0000 mon.smithi028 (mon.0) 162 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi028"}]: dispatch 2024-04-24T17:12:12.893 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: audit 2024-04-24T17:12:12.739726+0000 mon.smithi028 (mon.0) 163 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr metadata", "who": "smithi028.zkmzde", "id": "smithi028.zkmzde"}]: dispatch 2024-04-24T17:12:12.894 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: audit 2024-04-24T17:12:12.739726+0000 mon.smithi028 (mon.0) 163 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr metadata", "who": "smithi028.zkmzde", "id": "smithi028.zkmzde"}]: dispatch 2024-04-24T17:12:12.894 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: audit 2024-04-24T17:12:12.740628+0000 mon.smithi028 (mon.0) 164 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T17:12:12.894 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: audit 2024-04-24T17:12:12.740628+0000 mon.smithi028 (mon.0) 164 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-24T17:12:12.894 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: audit 2024-04-24T17:12:12.740833+0000 mon.smithi028 (mon.0) 165 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T17:12:12.894 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: audit 2024-04-24T17:12:12.740833+0000 mon.smithi028 (mon.0) 165 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-24T17:12:12.894 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: audit 2024-04-24T17:12:12.741027+0000 mon.smithi028 (mon.0) 166 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T17:12:12.894 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: audit 2024-04-24T17:12:12.741027+0000 mon.smithi028 (mon.0) 166 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-24T17:12:12.894 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: cluster 2024-04-24T17:12:12.767725+0000 mon.smithi028 (mon.0) 167 : cluster [INF] Manager daemon smithi028.zkmzde is now available 2024-04-24T17:12:12.894 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:12 smithi028 bash[18631]: cluster 2024-04-24T17:12:12.767725+0000 mon.smithi028 (mon.0) 167 : cluster [INF] Manager daemon smithi028.zkmzde is now available 2024-04-24T17:12:13.752 INFO:teuthology.orchestra.run.smithi105.stdout:Scheduled mon update... 2024-04-24T17:12:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:12.794531+0000 mon.smithi028 (mon.0) 168 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:12:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:12.794531+0000 mon.smithi028 (mon.0) 168 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:12:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:12.812050+0000 mon.smithi028 (mon.0) 169 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:12.812050+0000 mon.smithi028 (mon.0) 169 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:14.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:12.817996+0000 mon.smithi028 (mon.0) 170 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:12.817996+0000 mon.smithi028 (mon.0) 170 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:12.819564+0000 mon.smithi028 (mon.0) 171 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:12.819564+0000 mon.smithi028 (mon.0) 171 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:12.820345+0000 mon.smithi028 (mon.0) 172 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/mirror_snapshot_schedule"}]: dispatch 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:12.820345+0000 mon.smithi028 (mon.0) 172 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/mirror_snapshot_schedule"}]: dispatch 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:12.834619+0000 mon.smithi028 (mon.0) 173 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/trash_purge_schedule"}]: dispatch 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:12.834619+0000 mon.smithi028 (mon.0) 173 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi028.zkmzde/trash_purge_schedule"}]: dispatch 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: cluster 2024-04-24T17:12:13.744127+0000 mon.smithi028 (mon.0) 174 : cluster [DBG] mgrmap e16: smithi028.zkmzde(active, since 1.0124s) 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: cluster 2024-04-24T17:12:13.744127+0000 mon.smithi028 (mon.0) 174 : cluster [DBG] mgrmap e16: smithi028.zkmzde(active, since 1.0124s) 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:13.751407+0000 mon.smithi028 (mon.0) 175 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:13.751407+0000 mon.smithi028 (mon.0) 175 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:13.754143+0000 mon.smithi028 (mon.0) 176 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:14.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:13 smithi028 bash[18631]: audit 2024-04-24T17:12:13.754143+0000 mon.smithi028 (mon.0) 176 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:14.392 DEBUG:teuthology.orchestra.run.smithi105:mon.smithi105> sudo journalctl -f -n 0 -u ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mon.smithi105.service 2024-04-24T17:12:14.394 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-24T17:12:14.394 DEBUG:teuthology.orchestra.run.smithi105:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-24T17:12:15.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:14 smithi028 bash[18631]: cephadm 2024-04-24T17:12:13.747233+0000 mgr.smithi028.zkmzde (mgr.14197) 2 : cephadm [INF] Saving service mon spec with placement smithi028:172.21.15.28=smithi028;smithi105:172.21.15.105=smithi105;count:2 2024-04-24T17:12:15.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:14 smithi028 bash[18631]: cephadm 2024-04-24T17:12:13.747233+0000 mgr.smithi028.zkmzde (mgr.14197) 2 : cephadm [INF] Saving service mon spec with placement smithi028:172.21.15.28=smithi028;smithi105:172.21.15.105=smithi105;count:2 2024-04-24T17:12:15.634 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T17:12:16.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:15 smithi028 bash[18631]: cephadm 2024-04-24T17:12:14.352253+0000 mgr.smithi028.zkmzde (mgr.14197) 3 : cephadm [INF] [24/Apr/2024:17:12:14] ENGINE Bus STARTING 2024-04-24T17:12:16.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:15 smithi028 bash[18631]: cephadm 2024-04-24T17:12:14.352253+0000 mgr.smithi028.zkmzde (mgr.14197) 3 : cephadm [INF] [24/Apr/2024:17:12:14] ENGINE Bus STARTING 2024-04-24T17:12:16.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:15 smithi028 bash[18631]: cephadm 2024-04-24T17:12:14.472362+0000 mgr.smithi028.zkmzde (mgr.14197) 4 : cephadm [INF] [24/Apr/2024:17:12:14] ENGINE Serving on https://172.21.15.28:7150 2024-04-24T17:12:16.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:15 smithi028 bash[18631]: cephadm 2024-04-24T17:12:14.472362+0000 mgr.smithi028.zkmzde (mgr.14197) 4 : cephadm [INF] [24/Apr/2024:17:12:14] ENGINE Serving on https://172.21.15.28:7150 2024-04-24T17:12:16.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:15 smithi028 bash[18631]: cephadm 2024-04-24T17:12:14.574100+0000 mgr.smithi028.zkmzde (mgr.14197) 5 : cephadm [INF] [24/Apr/2024:17:12:14] ENGINE Serving on http://172.21.15.28:8765 2024-04-24T17:12:16.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:15 smithi028 bash[18631]: cephadm 2024-04-24T17:12:14.574100+0000 mgr.smithi028.zkmzde (mgr.14197) 5 : cephadm [INF] [24/Apr/2024:17:12:14] ENGINE Serving on http://172.21.15.28:8765 2024-04-24T17:12:16.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:15 smithi028 bash[18631]: cephadm 2024-04-24T17:12:14.574262+0000 mgr.smithi028.zkmzde (mgr.14197) 6 : cephadm [INF] [24/Apr/2024:17:12:14] ENGINE Bus STARTED 2024-04-24T17:12:16.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:15 smithi028 bash[18631]: cephadm 2024-04-24T17:12:14.574262+0000 mgr.smithi028.zkmzde (mgr.14197) 6 : cephadm [INF] [24/Apr/2024:17:12:14] ENGINE Bus STARTED 2024-04-24T17:12:16.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:15 smithi028 bash[18631]: cluster 2024-04-24T17:12:14.797061+0000 mon.smithi028 (mon.0) 177 : cluster [DBG] mgrmap e17: smithi028.zkmzde(active, since 2s) 2024-04-24T17:12:16.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:15 smithi028 bash[18631]: cluster 2024-04-24T17:12:14.797061+0000 mon.smithi028 (mon.0) 177 : cluster [DBG] mgrmap e17: smithi028.zkmzde(active, since 2s) 2024-04-24T17:12:16.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:15 smithi028 bash[18631]: audit 2024-04-24T17:12:15.424675+0000 mon.smithi028 (mon.0) 178 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:16.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:15 smithi028 bash[18631]: audit 2024-04-24T17:12:15.424675+0000 mon.smithi028 (mon.0) 178 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:16.679 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T17:12:17.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:17 smithi028 bash[18631]: audit 2024-04-24T17:12:16.524935+0000 mon.smithi028 (mon.0) 179 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:17.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:17 smithi028 bash[18631]: audit 2024-04-24T17:12:16.524935+0000 mon.smithi028 (mon.0) 179 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:17.896 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-24T17:12:17.897 INFO:teuthology.orchestra.run.smithi105.stdout:{"epoch":1,"fsid":"3d5e4290-025d-11ef-bc93-c7b262605968","modified":"2024-04-24T17:09:37.036869Z","created":"2024-04-24T17:09:37.036869Z","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":"smithi028","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.28:3300","nonce":0},{"type":"v1","addr":"172.21.15.28:6789","nonce":0}]},"addr":"172.21.15.28:6789/0","public_addr":"172.21.15.28:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-24T17:12:17.899 INFO:teuthology.orchestra.run.smithi105.stderr:dumped monmap epoch 1 2024-04-24T17:12:18.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:18 smithi028 bash[18631]: audit 2024-04-24T17:12:17.898550+0000 mon.smithi028 (mon.0) 180 : audit [DBG] from='client.? 172.21.15.105:0/3482513591' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:18.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:18 smithi028 bash[18631]: audit 2024-04-24T17:12:17.898550+0000 mon.smithi028 (mon.0) 180 : audit [DBG] from='client.? 172.21.15.105:0/3482513591' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:19.788 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-24T17:12:19.788 DEBUG:teuthology.orchestra.run.smithi105:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-24T17:12:20.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:19 smithi028 bash[18631]: audit 2024-04-24T17:12:18.942285+0000 mon.smithi028 (mon.0) 181 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:20.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:19 smithi028 bash[18631]: audit 2024-04-24T17:12:18.942285+0000 mon.smithi028 (mon.0) 181 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:20.995 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T17:12:21.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:21 smithi028 bash[18631]: audit 2024-04-24T17:12:20.062144+0000 mon.smithi028 (mon.0) 182 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:21.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:21 smithi028 bash[18631]: audit 2024-04-24T17:12:20.062144+0000 mon.smithi028 (mon.0) 182 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:21.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:21 smithi028 bash[18631]: audit 2024-04-24T17:12:20.063444+0000 mon.smithi028 (mon.0) 183 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi105", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:12:21.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:21 smithi028 bash[18631]: audit 2024-04-24T17:12:20.063444+0000 mon.smithi028 (mon.0) 183 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi105", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:12:21.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:21 smithi028 bash[18631]: audit 2024-04-24T17:12:20.093248+0000 mon.smithi028 (mon.0) 184 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:21.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:21 smithi028 bash[18631]: audit 2024-04-24T17:12:20.093248+0000 mon.smithi028 (mon.0) 184 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:22.041 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T17:12:23.296 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-24T17:12:23.296 INFO:teuthology.orchestra.run.smithi105.stdout:{"epoch":1,"fsid":"3d5e4290-025d-11ef-bc93-c7b262605968","modified":"2024-04-24T17:09:37.036869Z","created":"2024-04-24T17:09:37.036869Z","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":"smithi028","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.28:3300","nonce":0},{"type":"v1","addr":"172.21.15.28:6789","nonce":0}]},"addr":"172.21.15.28:6789/0","public_addr":"172.21.15.28:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-24T17:12:23.299 INFO:teuthology.orchestra.run.smithi105.stderr:dumped monmap epoch 1 2024-04-24T17:12:23.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:23 smithi028 bash[18631]: audit 2024-04-24T17:12:23.297953+0000 mon.smithi028 (mon.0) 185 : audit [DBG] from='client.? 172.21.15.105:0/855575583' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:23.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:23 smithi028 bash[18631]: audit 2024-04-24T17:12:23.297953+0000 mon.smithi028 (mon.0) 185 : audit [DBG] from='client.? 172.21.15.105:0/855575583' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:24.867 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-24T17:12:24.867 DEBUG:teuthology.orchestra.run.smithi105:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-24T17:12:26.080 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T17:12:27.128 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-24T17:12:27.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:27 smithi028 bash[18631]: audit 2024-04-24T17:12:26.979224+0000 mon.smithi028 (mon.0) 186 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi028", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:12:27.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:27 smithi028 bash[18631]: audit 2024-04-24T17:12:26.979224+0000 mon.smithi028 (mon.0) 186 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi028", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:12:27.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:27 smithi028 bash[18631]: audit 2024-04-24T17:12:26.981008+0000 mon.smithi028 (mon.0) 187 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:27.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:27 smithi028 bash[18631]: audit 2024-04-24T17:12:26.981008+0000 mon.smithi028 (mon.0) 187 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:27.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:27 smithi028 bash[18631]: audit 2024-04-24T17:12:26.982536+0000 mon.smithi028 (mon.0) 188 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:12:27.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:27 smithi028 bash[18631]: audit 2024-04-24T17:12:26.982536+0000 mon.smithi028 (mon.0) 188 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:12:28.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:28 smithi028 bash[18631]: cephadm 2024-04-24T17:12:26.986548+0000 mgr.smithi028.zkmzde (mgr.14197) 7 : cephadm [INF] Updating smithi028:/etc/ceph/ceph.conf 2024-04-24T17:12:28.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:28 smithi028 bash[18631]: cephadm 2024-04-24T17:12:26.986548+0000 mgr.smithi028.zkmzde (mgr.14197) 7 : cephadm [INF] Updating smithi028:/etc/ceph/ceph.conf 2024-04-24T17:12:28.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:28 smithi028 bash[18631]: cephadm 2024-04-24T17:12:26.986982+0000 mgr.smithi028.zkmzde (mgr.14197) 8 : cephadm [INF] Updating smithi105:/etc/ceph/ceph.conf 2024-04-24T17:12:28.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:28 smithi028 bash[18631]: cephadm 2024-04-24T17:12:26.986982+0000 mgr.smithi028.zkmzde (mgr.14197) 8 : cephadm [INF] Updating smithi105:/etc/ceph/ceph.conf 2024-04-24T17:12:28.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:28 smithi028 bash[18631]: audit 2024-04-24T17:12:27.815306+0000 mon.smithi028 (mon.0) 189 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:12:28.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:28 smithi028 bash[18631]: audit 2024-04-24T17:12:27.815306+0000 mon.smithi028 (mon.0) 189 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:12:28.376 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-24T17:12:28.376 INFO:teuthology.orchestra.run.smithi105.stdout:{"epoch":1,"fsid":"3d5e4290-025d-11ef-bc93-c7b262605968","modified":"2024-04-24T17:09:37.036869Z","created":"2024-04-24T17:09:37.036869Z","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":"smithi028","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.28:3300","nonce":0},{"type":"v1","addr":"172.21.15.28:6789","nonce":0}]},"addr":"172.21.15.28:6789/0","public_addr":"172.21.15.28:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-24T17:12:28.379 INFO:teuthology.orchestra.run.smithi105.stderr:dumped monmap epoch 1 2024-04-24T17:12:29.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:27.535956+0000 mgr.smithi028.zkmzde (mgr.14197) 9 : cephadm [INF] Updating smithi028:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:29.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:27.535956+0000 mgr.smithi028.zkmzde (mgr.14197) 9 : cephadm [INF] Updating smithi028:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:29.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:27.536765+0000 mgr.smithi028.zkmzde (mgr.14197) 10 : cephadm [INF] Updating smithi105:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:29.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:27.536765+0000 mgr.smithi028.zkmzde (mgr.14197) 10 : cephadm [INF] Updating smithi105:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:29.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:27.700454+0000 mgr.smithi028.zkmzde (mgr.14197) 11 : cephadm [INF] Updating smithi028:/etc/ceph/ceph.client.admin.keyring 2024-04-24T17:12:29.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:27.700454+0000 mgr.smithi028.zkmzde (mgr.14197) 11 : cephadm [INF] Updating smithi028:/etc/ceph/ceph.client.admin.keyring 2024-04-24T17:12:29.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:27.701108+0000 mgr.smithi028.zkmzde (mgr.14197) 12 : cephadm [INF] Updating smithi105:/etc/ceph/ceph.client.admin.keyring 2024-04-24T17:12:29.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:27.701108+0000 mgr.smithi028.zkmzde (mgr.14197) 12 : cephadm [INF] Updating smithi105:/etc/ceph/ceph.client.admin.keyring 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:27.865277+0000 mgr.smithi028.zkmzde (mgr.14197) 13 : cephadm [INF] Updating smithi028:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:27.865277+0000 mgr.smithi028.zkmzde (mgr.14197) 13 : cephadm [INF] Updating smithi028:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:27.866147+0000 mgr.smithi028.zkmzde (mgr.14197) 14 : cephadm [INF] Updating smithi105:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:27.866147+0000 mgr.smithi028.zkmzde (mgr.14197) 14 : cephadm [INF] Updating smithi105:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.040549+0000 mon.smithi028 (mon.0) 190 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.040549+0000 mon.smithi028 (mon.0) 190 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.045176+0000 mon.smithi028 (mon.0) 191 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.045176+0000 mon.smithi028 (mon.0) 191 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.049804+0000 mon.smithi028 (mon.0) 192 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.049804+0000 mon.smithi028 (mon.0) 192 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.052212+0000 mon.smithi028 (mon.0) 193 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi105", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.052212+0000 mon.smithi028 (mon.0) 193 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi105", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:12:29.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.053586+0000 mon.smithi028 (mon.0) 194 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi105", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-24T17:12:29.286 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.053586+0000 mon.smithi028 (mon.0) 194 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi105", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-24T17:12:29.286 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.056235+0000 mon.smithi028 (mon.0) 195 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:29.286 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.056235+0000 mon.smithi028 (mon.0) 195 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:29.286 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:28.057972+0000 mgr.smithi028.zkmzde (mgr.14197) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi105 on smithi105 2024-04-24T17:12:29.286 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: cephadm 2024-04-24T17:12:28.057972+0000 mgr.smithi028.zkmzde (mgr.14197) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi105 on smithi105 2024-04-24T17:12:29.286 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.378039+0000 mon.smithi028 (mon.0) 196 : audit [DBG] from='client.? 172.21.15.105:0/1611093146' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:29.286 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:29 smithi028 bash[18631]: audit 2024-04-24T17:12:28.378039+0000 mon.smithi028 (mon.0) 196 : audit [DBG] from='client.? 172.21.15.105:0/1611093146' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:30.344 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-24T17:12:30.345 DEBUG:teuthology.orchestra.run.smithi105:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-24T17:12:31.545 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:32.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: audit 2024-04-24T17:12:31.460617+0000 mon.smithi028 (mon.0) 197 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: audit 2024-04-24T17:12:31.460617+0000 mon.smithi028 (mon.0) 197 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: audit 2024-04-24T17:12:31.486012+0000 mon.smithi028 (mon.0) 198 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: audit 2024-04-24T17:12:31.486012+0000 mon.smithi028 (mon.0) 198 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: audit 2024-04-24T17:12:31.491826+0000 mon.smithi028 (mon.0) 199 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: audit 2024-04-24T17:12:31.491826+0000 mon.smithi028 (mon.0) 199 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: audit 2024-04-24T17:12:31.494974+0000 mon.smithi028 (mon.0) 200 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi105", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: audit 2024-04-24T17:12:31.494974+0000 mon.smithi028 (mon.0) 200 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi105", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: audit 2024-04-24T17:12:31.496735+0000 mon.smithi028 (mon.0) 201 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi105", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: audit 2024-04-24T17:12:31.496735+0000 mon.smithi028 (mon.0) 201 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi105", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: audit 2024-04-24T17:12:31.501351+0000 mon.smithi028 (mon.0) 202 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: audit 2024-04-24T17:12:31.501351+0000 mon.smithi028 (mon.0) 202 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: cephadm 2024-04-24T17:12:31.503396+0000 mgr.smithi028.zkmzde (mgr.14197) 16 : cephadm [INF] Deploying daemon crash.smithi105 on smithi105 2024-04-24T17:12:32.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:32 smithi028 bash[18631]: cephadm 2024-04-24T17:12:31.503396+0000 mgr.smithi028.zkmzde (mgr.14197) 16 : cephadm [INF] Deploying daemon crash.smithi105 on smithi105 2024-04-24T17:12:33.760 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-24T17:12:33.761 INFO:teuthology.orchestra.run.smithi105.stdout:{"epoch":1,"fsid":"3d5e4290-025d-11ef-bc93-c7b262605968","modified":"2024-04-24T17:09:37.036869Z","created":"2024-04-24T17:09:37.036869Z","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":"smithi028","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.28:3300","nonce":0},{"type":"v1","addr":"172.21.15.28:6789","nonce":0}]},"addr":"172.21.15.28:6789/0","public_addr":"172.21.15.28:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-24T17:12:33.763 INFO:teuthology.orchestra.run.smithi105.stderr:dumped monmap epoch 1 2024-04-24T17:12:34.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:33 smithi028 bash[18631]: audit 2024-04-24T17:12:32.815833+0000 mon.smithi028 (mon.0) 203 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:34.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:33 smithi028 bash[18631]: audit 2024-04-24T17:12:32.815833+0000 mon.smithi028 (mon.0) 203 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:34.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:33 smithi028 bash[18631]: audit 2024-04-24T17:12:33.762440+0000 mon.smithi028 (mon.0) 204 : audit [DBG] from='client.? 172.21.15.105:0/920837064' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:34.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:33 smithi028 bash[18631]: audit 2024-04-24T17:12:33.762440+0000 mon.smithi028 (mon.0) 204 : audit [DBG] from='client.? 172.21.15.105:0/920837064' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:35.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:34 smithi028 bash[18631]: cluster 2024-04-24T17:12:34.047575+0000 mgr.smithi028.zkmzde (mgr.14197) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:35.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:34 smithi028 bash[18631]: cluster 2024-04-24T17:12:34.047575+0000 mgr.smithi028.zkmzde (mgr.14197) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:35.691 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-24T17:12:35.691 DEBUG:teuthology.orchestra.run.smithi105:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-24T17:12:36.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:36 smithi028 bash[18631]: audit 2024-04-24T17:12:35.086570+0000 mon.smithi028 (mon.0) 205 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:36.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:36 smithi028 bash[18631]: audit 2024-04-24T17:12:35.086570+0000 mon.smithi028 (mon.0) 205 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:36.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:36 smithi028 bash[18631]: audit 2024-04-24T17:12:35.132031+0000 mon.smithi028 (mon.0) 206 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:36.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:36 smithi028 bash[18631]: audit 2024-04-24T17:12:35.132031+0000 mon.smithi028 (mon.0) 206 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:36.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:36 smithi028 bash[18631]: audit 2024-04-24T17:12:35.137618+0000 mon.smithi028 (mon.0) 207 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:36.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:36 smithi028 bash[18631]: audit 2024-04-24T17:12:35.137618+0000 mon.smithi028 (mon.0) 207 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:36.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:36 smithi028 bash[18631]: cephadm 2024-04-24T17:12:35.140804+0000 mgr.smithi028.zkmzde (mgr.14197) 18 : cephadm [INF] Deploying daemon node-exporter.smithi105 on smithi105 2024-04-24T17:12:36.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:36 smithi028 bash[18631]: cephadm 2024-04-24T17:12:35.140804+0000 mgr.smithi028.zkmzde (mgr.14197) 18 : cephadm [INF] Deploying daemon node-exporter.smithi105 on smithi105 2024-04-24T17:12:37.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: cluster 2024-04-24T17:12:36.048547+0000 mgr.smithi028.zkmzde (mgr.14197) 19 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:37.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: cluster 2024-04-24T17:12:36.048547+0000 mgr.smithi028.zkmzde (mgr.14197) 19 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:37.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.246151+0000 mon.smithi028 (mon.0) 208 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:37.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.246151+0000 mon.smithi028 (mon.0) 208 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:37.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.263593+0000 mon.smithi028 (mon.0) 209 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:37.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.263593+0000 mon.smithi028 (mon.0) 209 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:37.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.269610+0000 mon.smithi028 (mon.0) 210 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:37.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.269610+0000 mon.smithi028 (mon.0) 210 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:37.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.274634+0000 mon.smithi028 (mon.0) 211 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi105.rmqzvz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T17:12:37.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.274634+0000 mon.smithi028 (mon.0) 211 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi105.rmqzvz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T17:12:37.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.276358+0000 mon.smithi028 (mon.0) 212 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi105.rmqzvz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-24T17:12:37.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.276358+0000 mon.smithi028 (mon.0) 212 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi105.rmqzvz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-24T17:12:37.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.280756+0000 mon.smithi028 (mon.0) 213 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T17:12:37.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.280756+0000 mon.smithi028 (mon.0) 213 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T17:12:37.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.282820+0000 mon.smithi028 (mon.0) 214 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:37.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:37 smithi028 bash[18631]: audit 2024-04-24T17:12:36.282820+0000 mon.smithi028 (mon.0) 214 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:38.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:38 smithi028 bash[18631]: cephadm 2024-04-24T17:12:36.285068+0000 mgr.smithi028.zkmzde (mgr.14197) 20 : cephadm [INF] Deploying daemon mgr.smithi105.rmqzvz on smithi105 2024-04-24T17:12:38.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:38 smithi028 bash[18631]: cephadm 2024-04-24T17:12:36.285068+0000 mgr.smithi028.zkmzde (mgr.14197) 20 : cephadm [INF] Deploying daemon mgr.smithi105.rmqzvz on smithi105 2024-04-24T17:12:38.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:38 smithi028 bash[18631]: audit 2024-04-24T17:12:37.822840+0000 mon.smithi028 (mon.0) 215 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:38.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:38 smithi028 bash[18631]: audit 2024-04-24T17:12:37.822840+0000 mon.smithi028 (mon.0) 215 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:39.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:39 smithi028 bash[18631]: cluster 2024-04-24T17:12:38.049534+0000 mgr.smithi028.zkmzde (mgr.14197) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:39.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:39 smithi028 bash[18631]: cluster 2024-04-24T17:12:38.049534+0000 mgr.smithi028.zkmzde (mgr.14197) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:40.337 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:39 smithi105 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:12:40.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: audit 2024-04-24T17:12:39.444923+0000 mon.smithi028 (mon.0) 216 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: audit 2024-04-24T17:12:39.444923+0000 mon.smithi028 (mon.0) 216 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: audit 2024-04-24T17:12:39.461947+0000 mon.smithi028 (mon.0) 217 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: audit 2024-04-24T17:12:39.461947+0000 mon.smithi028 (mon.0) 217 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: audit 2024-04-24T17:12:39.467534+0000 mon.smithi028 (mon.0) 218 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: audit 2024-04-24T17:12:39.467534+0000 mon.smithi028 (mon.0) 218 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: audit 2024-04-24T17:12:39.471122+0000 mon.smithi028 (mon.0) 219 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: audit 2024-04-24T17:12:39.471122+0000 mon.smithi028 (mon.0) 219 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: audit 2024-04-24T17:12:39.472839+0000 mon.smithi028 (mon.0) 220 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: audit 2024-04-24T17:12:39.472839+0000 mon.smithi028 (mon.0) 220 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: cephadm 2024-04-24T17:12:39.475080+0000 mgr.smithi028.zkmzde (mgr.14197) 22 : cephadm [INF] Deploying daemon mon.smithi105 on smithi105 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: cephadm 2024-04-24T17:12:39.475080+0000 mgr.smithi028.zkmzde (mgr.14197) 22 : cephadm [INF] Deploying daemon mon.smithi105 on smithi105 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: cluster 2024-04-24T17:12:40.050470+0000 mgr.smithi028.zkmzde (mgr.14197) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:40 smithi028 bash[18631]: cluster 2024-04-24T17:12:40.050470+0000 mgr.smithi028.zkmzde (mgr.14197) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:42.838 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:43 smithi028 bash[18631]: cluster 2024-04-24T17:12:42.051398+0000 mgr.smithi028.zkmzde (mgr.14197) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:43 smithi028 bash[18631]: cluster 2024-04-24T17:12:42.051398+0000 mgr.smithi028.zkmzde (mgr.14197) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:43 smithi028 bash[18631]: audit 2024-04-24T17:12:42.816710+0000 mon.smithi028 (mon.0) 221 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:12:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:43 smithi028 bash[18631]: audit 2024-04-24T17:12:42.816710+0000 mon.smithi028 (mon.0) 221 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:12:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:43 smithi028 bash[18631]: audit 2024-04-24T17:12:42.831683+0000 mon.smithi028 (mon.0) 222 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:43 smithi028 bash[18631]: audit 2024-04-24T17:12:42.831683+0000 mon.smithi028 (mon.0) 222 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:44.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:43 smithi105 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:12:44.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:43 smithi105 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:12:44.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:43 smithi105 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:12:44.360 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-24T17:12:44.360 INFO:teuthology.orchestra.run.smithi105.stdout:{"epoch":1,"fsid":"3d5e4290-025d-11ef-bc93-c7b262605968","modified":"2024-04-24T17:09:37.036869Z","created":"2024-04-24T17:09:37.036869Z","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":"smithi028","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.28:3300","nonce":0},{"type":"v1","addr":"172.21.15.28:6789","nonce":0}]},"addr":"172.21.15.28:6789/0","public_addr":"172.21.15.28:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-24T17:12:44.362 INFO:teuthology.orchestra.run.smithi105.stderr:dumped monmap epoch 1 2024-04-24T17:12:44.366 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:44 smithi105 systemd[1]: /etc/systemd/system/ceph-3d5e4290-025d-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-24T17:12:44.366 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:44 smithi105 systemd[1]: Started Ceph mon.smithi105 for 3d5e4290-025d-11ef-bc93-c7b262605968. 2024-04-24T17:12:45.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: cluster 2024-04-24T17:12:44.052366+0000 mgr.smithi028.zkmzde (mgr.14197) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: cluster 2024-04-24T17:12:44.052366+0000 mgr.smithi028.zkmzde (mgr.14197) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: audit 2024-04-24T17:12:44.190267+0000 mon.smithi028 (mon.0) 223 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: audit 2024-04-24T17:12:44.190267+0000 mon.smithi028 (mon.0) 223 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: audit 2024-04-24T17:12:44.206972+0000 mon.smithi028 (mon.0) 224 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: audit 2024-04-24T17:12:44.206972+0000 mon.smithi028 (mon.0) 224 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: audit 2024-04-24T17:12:44.213117+0000 mon.smithi028 (mon.0) 225 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: audit 2024-04-24T17:12:44.213117+0000 mon.smithi028 (mon.0) 225 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: audit 2024-04-24T17:12:44.222906+0000 mon.smithi028 (mon.0) 226 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: audit 2024-04-24T17:12:44.222906+0000 mon.smithi028 (mon.0) 226 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: audit 2024-04-24T17:12:44.289088+0000 mon.smithi028 (mon.0) 227 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:12:45.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: audit 2024-04-24T17:12:44.289088+0000 mon.smithi028 (mon.0) 227 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:12:45.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: audit 2024-04-24T17:12:44.362000+0000 mon.smithi028 (mon.0) 228 : audit [DBG] from='client.? 172.21.15.105:0/1093713318' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:45.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:45 smithi028 bash[18631]: audit 2024-04-24T17:12:44.362000+0000 mon.smithi028 (mon.0) 228 : audit [DBG] from='client.? 172.21.15.105:0/1093713318' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:45.588 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.568+0000 7f6f1a5d7c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-04-24T17:12:45.588 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.568+0000 7f6f1a5d7c80 0 ceph version 19.0.0-3285-g5904d294 (5904d29475f5be602879d9fb26280e89b808d5cc) squid (dev), process ceph-mon, pid 7 2024-04-24T17:12:45.588 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.572+0000 7f6f1a5d7c80 0 pidfile_write: ignore empty --pid-file 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 0 load: jerasure load: lrc 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: RocksDB version: 7.9.2 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Git sha 0 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Compile date 2024-04-24 13:56:12 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: DB SUMMARY 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: DB Session ID: 5OV85GLWDGGYO8XUV1VK 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: CURRENT file: CURRENT 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: IDENTITY file: IDENTITY 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi105/store.db dir, Total Num: 0, files: 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi105/store.db: 000004.log size: 511 ; 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.error_if_exists: 0 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.create_if_missing: 0 2024-04-24T17:12:45.589 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.paranoid_checks: 1 2024-04-24T17:12:45.590 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-04-24T17:12:45.590 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-24T17:12:45.590 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-24T17:12:45.590 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.env: 0x562981504cc0 2024-04-24T17:12:45.590 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.fs: PosixFileSystem 2024-04-24T17:12:45.590 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.info_log: 0x562982053ca0 2024-04-24T17:12:45.590 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-04-24T17:12:45.590 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.statistics: (nil) 2024-04-24T17:12:45.590 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.use_fsync: 0 2024-04-24T17:12:45.590 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_log_file_size: 0 2024-04-24T17:12:45.591 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-24T17:12:45.591 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-04-24T17:12:45.591 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-04-24T17:12:45.591 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-04-24T17:12:45.591 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.allow_fallocate: 1 2024-04-24T17:12:45.592 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-04-24T17:12:45.592 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-04-24T17:12:45.592 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.use_direct_reads: 0 2024-04-24T17:12:45.592 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-24T17:12:45.592 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.create_missing_column_families: 0 2024-04-24T17:12:45.592 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.db_log_dir: 2024-04-24T17:12:45.592 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.wal_dir: 2024-04-24T17:12:45.592 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-04-24T17:12:45.592 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-04-24T17:12:45.592 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-04-24T17:12:45.592 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-24T17:12:45.592 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.advise_random_on_open: 1 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.write_buffer_manager: 0x5629820250e0 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.rate_limiter: (nil) 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-04-24T17:12:45.593 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.unordered_write: 0 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.row_cache: None 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.wal_filter: None 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.two_write_queues: 0 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.manual_wal_flush: 0 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.wal_compression: 0 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.atomic_flush: 0 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-24T17:12:45.594 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.log_readahead_size: 0 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_background_jobs: 2 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_background_compactions: -1 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_subcompactions: 1 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-24T17:12:45.595 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_total_wal_size: 0 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_open_files: -1 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bytes_per_sync: 0 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_background_flushes: -1 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Compression algorithms supported: 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-24T17:12:45.596 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: kZSTD supported: 0 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: kXpressCompression supported: 0 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: kZlibCompression supported: 1 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: kSnappyCompression supported: 1 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: kLZ4Compression supported: 1 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: kBZip2Compression supported: 0 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi105/store.db/MANIFEST-000005 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.merge_operator: 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_filter: None 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_filter_factory: None 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-04-24T17:12:45.597 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x562982053e60) 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cache_index_and_filter_blocks: 1 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: pin_top_level_index_and_filter: 1 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: index_type: 0 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: data_block_index_type: 0 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: index_shortening: 1 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: data_block_hash_table_util_ratio: 0.750000 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: checksum: 4 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: no_block_cache: 0 2024-04-24T17:12:45.598 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: block_cache: 0x5629820551f0 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: block_cache_name: BinnedLRUCache 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: block_cache_options: 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: capacity : 536870912 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: num_shard_bits : 4 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: strict_capacity_limit : 0 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: high_pri_pool_ratio: 0.000 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: block_cache_compressed: (nil) 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: persistent_cache: (nil) 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: block_size: 4096 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: block_size_deviation: 10 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: block_restart_interval: 16 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: index_block_restart_interval: 1 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: metadata_block_size: 4096 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: partition_filters: 0 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: use_delta_encoding: 1 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: filter_policy: bloomfilter 2024-04-24T17:12:45.599 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: whole_key_filtering: 1 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: verify_compression: 0 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: read_amp_bytes_per_bit: 0 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: format_version: 5 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: enable_index_compression: 1 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: block_align: 0 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: max_auto_readahead_size: 262144 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: prepopulate_block_cache: 0 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: initial_auto_readahead_size: 8192 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: num_file_reads_for_auto_readahead: 2 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compression: NoCompression 2024-04-24T17:12:45.600 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.num_levels: 7 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-24T17:12:45.601 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-24T17:12:45.602 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-04-24T17:12:45.602 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compression_opts.level: 32767 2024-04-24T17:12:45.602 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-04-24T17:12:45.602 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-24T17:12:45.602 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-24T17:12:45.602 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-24T17:12:45.602 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-24T17:12:45.602 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compression_opts.enabled: false 2024-04-24T17:12:45.602 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-24T17:12:45.603 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-24T17:12:45.603 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-24T17:12:45.603 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-24T17:12:45.603 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-04-24T17:12:45.603 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-24T17:12:45.604 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.arena_block_size: 1048576 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-24T17:12:45.605 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.inplace_update_support: 0 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.bloom_locality: 0 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.max_successive_merges: 0 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.force_consistency_checks: 1 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.ttl: 2592000 2024-04-24T17:12:45.606 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.enable_blob_files: false 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.min_blob_size: 0 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.blob_file_size: 268435456 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi105/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-04-24T17:12:45.607 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 5d63d175-c558-43c4-9083-7bb2dbec71f2 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713978765579206, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.576+0000 7f6f1a5d7c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.580+0000 7f6f1a5d7c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713978765581925, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1713978765, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "5d63d175-c558-43c4-9083-7bb2dbec71f2", "db_session_id": "5OV85GLWDGGYO8XUV1VK", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.580+0000 7f6f1a5d7c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1713978765582090, "job": 1, "event": "recovery_finished"} 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.580+0000 7f6f1a5d7c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.580+0000 7f6f1a5d7c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi105/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.580+0000 7f6f1a5d7c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x562982176000 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.580+0000 7f6f1a5d7c80 4 rocksdb: DB pointer 0x562982160000 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.580+0000 7f6f08d2f700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.580+0000 7f6f08d2f700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: ** DB Stats ** 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-24T17:12:45.608 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: 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-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: 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-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: ** Compaction Stats [default] ** 2024-04-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: 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-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.6 0.00 0.00 1 0.003 0 0 0.0 0.0 2024-04-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.6 0.00 0.00 1 0.003 0 0 0.0 0.0 2024-04-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.6 0.00 0.00 1 0.003 0 0 0.0 0.0 2024-04-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: ** Compaction Stats [default] ** 2024-04-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: 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-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-24T17:12:45.609 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6 0.00 0.00 1 0.003 0 0 0.0 0.0 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Uptime(secs): 0.0 total, 0.0 interval 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Flush(GB): cumulative 0.000, interval 0.000 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: AddFile(Total Files): cumulative 0, interval 0 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: AddFile(L0 Files): cumulative 0, interval 0 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: AddFile(Keys): cumulative 0, interval 0 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Cumulative compaction: 0.00 GB write, 0.27 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Interval compaction: 0.00 GB write, 0.27 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: 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-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: Block cache BinnedLRUCache@0x5629820551f0#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.2e-05 secs_since: 0 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: 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-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: ** File Read Latency Histogram By Level [default] ** 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.580+0000 7f6f1a5d7c80 0 mon.smithi105 does not exist in monmap, will attempt to join an existing cluster 2024-04-24T17:12:45.610 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.580+0000 7f6f1a5d7c80 0 using public_addr v2:172.21.15.105:0/0 -> [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] 2024-04-24T17:12:45.611 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.580+0000 7f6f1a5d7c80 0 starting mon.smithi105 rank -1 at public addrs [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] at bind addrs [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi105 fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:12:45.611 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.584+0000 7f6f1a5d7c80 1 mon.smithi105@-1(???) e0 preinit fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:12:45.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 0 mon.smithi105@-1(synchronizing).mds e1 new map 2024-04-24T17:12:45.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 0 mon.smithi105@-1(synchronizing).mds e1 print_map 2024-04-24T17:12:45.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: e1 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: enable_multiple, ever_enabled_multiple: 1,1 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: 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-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: legacy client fscid: -1 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: No filesystems configured 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 1 mon.smithi105@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 1 mon.smithi105@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 1 mon.smithi105@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 1 mon.smithi105@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 1 mon.smithi105@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 1 mon.smithi105@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 1 mon.smithi105@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 0 mon.smithi105@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 0 mon.smithi105@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-04-24T17:12:45.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 0 mon.smithi105@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.608+0000 7f6f0bd35700 0 mon.smithi105@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:27.535956+0000 mgr.smithi028.zkmzde (mgr.14197) 9 : cephadm [INF] Updating smithi028:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:27.535956+0000 mgr.smithi028.zkmzde (mgr.14197) 9 : cephadm [INF] Updating smithi028:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:27.536765+0000 mgr.smithi028.zkmzde (mgr.14197) 10 : cephadm [INF] Updating smithi105:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:27.536765+0000 mgr.smithi028.zkmzde (mgr.14197) 10 : cephadm [INF] Updating smithi105:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:27.700454+0000 mgr.smithi028.zkmzde (mgr.14197) 11 : cephadm [INF] Updating smithi028:/etc/ceph/ceph.client.admin.keyring 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:27.700454+0000 mgr.smithi028.zkmzde (mgr.14197) 11 : cephadm [INF] Updating smithi028:/etc/ceph/ceph.client.admin.keyring 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:27.701108+0000 mgr.smithi028.zkmzde (mgr.14197) 12 : cephadm [INF] Updating smithi105:/etc/ceph/ceph.client.admin.keyring 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:27.701108+0000 mgr.smithi028.zkmzde (mgr.14197) 12 : cephadm [INF] Updating smithi105:/etc/ceph/ceph.client.admin.keyring 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:27.865277+0000 mgr.smithi028.zkmzde (mgr.14197) 13 : cephadm [INF] Updating smithi028:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:27.865277+0000 mgr.smithi028.zkmzde (mgr.14197) 13 : cephadm [INF] Updating smithi028:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:27.866147+0000 mgr.smithi028.zkmzde (mgr.14197) 14 : cephadm [INF] Updating smithi105:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:27.866147+0000 mgr.smithi028.zkmzde (mgr.14197) 14 : cephadm [INF] Updating smithi105:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.client.admin.keyring 2024-04-24T17:12:45.773 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.040549+0000 mon.smithi028 (mon.0) 190 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.774 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.040549+0000 mon.smithi028 (mon.0) 190 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.774 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.045176+0000 mon.smithi028 (mon.0) 191 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.774 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.045176+0000 mon.smithi028 (mon.0) 191 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.774 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.049804+0000 mon.smithi028 (mon.0) 192 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.774 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.049804+0000 mon.smithi028 (mon.0) 192 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.774 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.052212+0000 mon.smithi028 (mon.0) 193 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi105", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:12:45.774 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.052212+0000 mon.smithi028 (mon.0) 193 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi105", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:12:45.774 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.053586+0000 mon.smithi028 (mon.0) 194 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi105", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-24T17:12:45.774 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.053586+0000 mon.smithi028 (mon.0) 194 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi105", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-04-24T17:12:45.775 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.056235+0000 mon.smithi028 (mon.0) 195 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:45.775 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.056235+0000 mon.smithi028 (mon.0) 195 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:45.775 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:28.057972+0000 mgr.smithi028.zkmzde (mgr.14197) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi105 on smithi105 2024-04-24T17:12:45.775 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:28.057972+0000 mgr.smithi028.zkmzde (mgr.14197) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi105 on smithi105 2024-04-24T17:12:45.775 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.378039+0000 mon.smithi028 (mon.0) 196 : audit [DBG] from='client.? 172.21.15.105:0/1611093146' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:45.775 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:28.378039+0000 mon.smithi028 (mon.0) 196 : audit [DBG] from='client.? 172.21.15.105:0/1611093146' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:31.460617+0000 mon.smithi028 (mon.0) 197 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:31.460617+0000 mon.smithi028 (mon.0) 197 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:31.486012+0000 mon.smithi028 (mon.0) 198 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:31.486012+0000 mon.smithi028 (mon.0) 198 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:31.491826+0000 mon.smithi028 (mon.0) 199 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:31.491826+0000 mon.smithi028 (mon.0) 199 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:31.494974+0000 mon.smithi028 (mon.0) 200 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi105", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:31.494974+0000 mon.smithi028 (mon.0) 200 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi105", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:31.496735+0000 mon.smithi028 (mon.0) 201 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi105", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:31.496735+0000 mon.smithi028 (mon.0) 201 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi105", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:31.501351+0000 mon.smithi028 (mon.0) 202 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:31.501351+0000 mon.smithi028 (mon.0) 202 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:31.503396+0000 mgr.smithi028.zkmzde (mgr.14197) 16 : cephadm [INF] Deploying daemon crash.smithi105 on smithi105 2024-04-24T17:12:45.776 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:31.503396+0000 mgr.smithi028.zkmzde (mgr.14197) 16 : cephadm [INF] Deploying daemon crash.smithi105 on smithi105 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:32.815833+0000 mon.smithi028 (mon.0) 203 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:32.815833+0000 mon.smithi028 (mon.0) 203 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:33.762440+0000 mon.smithi028 (mon.0) 204 : audit [DBG] from='client.? 172.21.15.105:0/920837064' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:33.762440+0000 mon.smithi028 (mon.0) 204 : audit [DBG] from='client.? 172.21.15.105:0/920837064' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cluster 2024-04-24T17:12:34.047575+0000 mgr.smithi028.zkmzde (mgr.14197) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cluster 2024-04-24T17:12:34.047575+0000 mgr.smithi028.zkmzde (mgr.14197) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:35.086570+0000 mon.smithi028 (mon.0) 205 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:35.086570+0000 mon.smithi028 (mon.0) 205 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:35.132031+0000 mon.smithi028 (mon.0) 206 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:35.132031+0000 mon.smithi028 (mon.0) 206 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:35.137618+0000 mon.smithi028 (mon.0) 207 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:35.137618+0000 mon.smithi028 (mon.0) 207 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:35.140804+0000 mgr.smithi028.zkmzde (mgr.14197) 18 : cephadm [INF] Deploying daemon node-exporter.smithi105 on smithi105 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:35.140804+0000 mgr.smithi028.zkmzde (mgr.14197) 18 : cephadm [INF] Deploying daemon node-exporter.smithi105 on smithi105 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cluster 2024-04-24T17:12:36.048547+0000 mgr.smithi028.zkmzde (mgr.14197) 19 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.777 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cluster 2024-04-24T17:12:36.048547+0000 mgr.smithi028.zkmzde (mgr.14197) 19 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.246151+0000 mon.smithi028 (mon.0) 208 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.246151+0000 mon.smithi028 (mon.0) 208 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.263593+0000 mon.smithi028 (mon.0) 209 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.263593+0000 mon.smithi028 (mon.0) 209 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.269610+0000 mon.smithi028 (mon.0) 210 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.269610+0000 mon.smithi028 (mon.0) 210 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.274634+0000 mon.smithi028 (mon.0) 211 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi105.rmqzvz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.274634+0000 mon.smithi028 (mon.0) 211 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi105.rmqzvz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.276358+0000 mon.smithi028 (mon.0) 212 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi105.rmqzvz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.276358+0000 mon.smithi028 (mon.0) 212 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi105.rmqzvz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.280756+0000 mon.smithi028 (mon.0) 213 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.280756+0000 mon.smithi028 (mon.0) 213 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.282820+0000 mon.smithi028 (mon.0) 214 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:36.282820+0000 mon.smithi028 (mon.0) 214 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:36.285068+0000 mgr.smithi028.zkmzde (mgr.14197) 20 : cephadm [INF] Deploying daemon mgr.smithi105.rmqzvz on smithi105 2024-04-24T17:12:45.778 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:36.285068+0000 mgr.smithi028.zkmzde (mgr.14197) 20 : cephadm [INF] Deploying daemon mgr.smithi105.rmqzvz on smithi105 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:37.822840+0000 mon.smithi028 (mon.0) 215 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:37.822840+0000 mon.smithi028 (mon.0) 215 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cluster 2024-04-24T17:12:38.049534+0000 mgr.smithi028.zkmzde (mgr.14197) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cluster 2024-04-24T17:12:38.049534+0000 mgr.smithi028.zkmzde (mgr.14197) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:39.444923+0000 mon.smithi028 (mon.0) 216 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:39.444923+0000 mon.smithi028 (mon.0) 216 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:39.461947+0000 mon.smithi028 (mon.0) 217 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:39.461947+0000 mon.smithi028 (mon.0) 217 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:39.467534+0000 mon.smithi028 (mon.0) 218 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:39.467534+0000 mon.smithi028 (mon.0) 218 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:39.471122+0000 mon.smithi028 (mon.0) 219 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:39.471122+0000 mon.smithi028 (mon.0) 219 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:39.472839+0000 mon.smithi028 (mon.0) 220 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:39.472839+0000 mon.smithi028 (mon.0) 220 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:39.475080+0000 mgr.smithi028.zkmzde (mgr.14197) 22 : cephadm [INF] Deploying daemon mon.smithi105 on smithi105 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cephadm 2024-04-24T17:12:39.475080+0000 mgr.smithi028.zkmzde (mgr.14197) 22 : cephadm [INF] Deploying daemon mon.smithi105 on smithi105 2024-04-24T17:12:45.779 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cluster 2024-04-24T17:12:40.050470+0000 mgr.smithi028.zkmzde (mgr.14197) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cluster 2024-04-24T17:12:40.050470+0000 mgr.smithi028.zkmzde (mgr.14197) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cluster 2024-04-24T17:12:42.051398+0000 mgr.smithi028.zkmzde (mgr.14197) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cluster 2024-04-24T17:12:42.051398+0000 mgr.smithi028.zkmzde (mgr.14197) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:42.816710+0000 mon.smithi028 (mon.0) 221 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:42.816710+0000 mon.smithi028 (mon.0) 221 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:42.831683+0000 mon.smithi028 (mon.0) 222 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:42.831683+0000 mon.smithi028 (mon.0) 222 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cluster 2024-04-24T17:12:44.052366+0000 mgr.smithi028.zkmzde (mgr.14197) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: cluster 2024-04-24T17:12:44.052366+0000 mgr.smithi028.zkmzde (mgr.14197) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:44.190267+0000 mon.smithi028 (mon.0) 223 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:44.190267+0000 mon.smithi028 (mon.0) 223 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:44.206972+0000 mon.smithi028 (mon.0) 224 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:44.206972+0000 mon.smithi028 (mon.0) 224 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:44.213117+0000 mon.smithi028 (mon.0) 225 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:44.213117+0000 mon.smithi028 (mon.0) 225 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.780 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:44.222906+0000 mon.smithi028 (mon.0) 226 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.781 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:44.222906+0000 mon.smithi028 (mon.0) 226 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:45.781 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:44.289088+0000 mon.smithi028 (mon.0) 227 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:12:45.781 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:44.289088+0000 mon.smithi028 (mon.0) 227 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:12:45.781 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:44.362000+0000 mon.smithi028 (mon.0) 228 : audit [DBG] from='client.? 172.21.15.105:0/1093713318' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:45.781 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: audit 2024-04-24T17:12:44.362000+0000 mon.smithi028 (mon.0) 228 : audit [DBG] from='client.? 172.21.15.105:0/1093713318' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:45.781 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:45 smithi105 bash[20254]: debug 2024-04-24T17:12:45.612+0000 7f6f0bd35700 1 mon.smithi105@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-04-24T17:12:46.461 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-04-24T17:12:46.462 DEBUG:teuthology.orchestra.run.smithi105:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph mon dump -f json 2024-04-24T17:12:50.302 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi105/config 2024-04-24T17:12:51.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:45.621916+0000 mon.smithi028 (mon.0) 229 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:45.621916+0000 mon.smithi028 (mon.0) 229 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.022 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:45.626887+0000 mon.smithi028 (mon.0) 230 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi028"}]: dispatch 2024-04-24T17:12:51.022 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:45.626887+0000 mon.smithi028 (mon.0) 230 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi028"}]: dispatch 2024-04-24T17:12:51.022 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:45.627236+0000 mon.smithi028 (mon.0) 231 : cluster [INF] mon.smithi028 calling monitor election 2024-04-24T17:12:51.022 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:45.627236+0000 mon.smithi028 (mon.0) 231 : cluster [INF] mon.smithi028 calling monitor election 2024-04-24T17:12:51.022 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:45.650692+0000 mon.smithi028 (mon.0) 232 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.022 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:45.650692+0000 mon.smithi028 (mon.0) 232 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.022 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:46.053363+0000 mgr.smithi028.zkmzde (mgr.14197) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:51.022 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:46.053363+0000 mgr.smithi028.zkmzde (mgr.14197) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:51.022 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:46.621624+0000 mon.smithi028 (mon.0) 233 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.022 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:46.621624+0000 mon.smithi028 (mon.0) 233 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.022 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:47.621960+0000 mon.smithi028 (mon.0) 234 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.023 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:47.621960+0000 mon.smithi028 (mon.0) 234 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.023 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:47.622494+0000 mon.smithi105 (mon.1) 1 : cluster [INF] mon.smithi105 calling monitor election 2024-04-24T17:12:51.023 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:47.622494+0000 mon.smithi105 (mon.1) 1 : cluster [INF] mon.smithi105 calling monitor election 2024-04-24T17:12:51.023 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:48.054274+0000 mgr.smithi028.zkmzde (mgr.14197) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:51.023 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:48.054274+0000 mgr.smithi028.zkmzde (mgr.14197) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:51.023 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:48.621757+0000 mon.smithi028 (mon.0) 235 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.023 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:48.621757+0000 mon.smithi028 (mon.0) 235 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.023 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:49.346510+0000 mon.smithi028 (mon.0) 236 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi105.rmqzvz/crt"}]: dispatch 2024-04-24T17:12:51.023 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:49.346510+0000 mon.smithi028 (mon.0) 236 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi105.rmqzvz/crt"}]: dispatch 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:49.621622+0000 mon.smithi028 (mon.0) 237 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:49.621622+0000 mon.smithi028 (mon.0) 237 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.054875+0000 mgr.smithi028.zkmzde (mgr.14197) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.054875+0000 mgr.smithi028.zkmzde (mgr.14197) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:50.621891+0000 mon.smithi028 (mon.0) 238 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:50.621891+0000 mon.smithi028 (mon.0) 238 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.671123+0000 mon.smithi028 (mon.0) 239 : cluster [INF] mon.smithi028 is new leader, mons smithi028,smithi105 in quorum (ranks 0,1) 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.671123+0000 mon.smithi028 (mon.0) 239 : cluster [INF] mon.smithi028 is new leader, mons smithi028,smithi105 in quorum (ranks 0,1) 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677831+0000 mon.smithi028 (mon.0) 240 : cluster [DBG] monmap epoch 2 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677831+0000 mon.smithi028 (mon.0) 240 : cluster [DBG] monmap epoch 2 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677856+0000 mon.smithi028 (mon.0) 241 : cluster [DBG] fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677856+0000 mon.smithi028 (mon.0) 241 : cluster [DBG] fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677868+0000 mon.smithi028 (mon.0) 242 : cluster [DBG] last_changed 2024-04-24T17:12:45.621255+0000 2024-04-24T17:12:51.024 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677868+0000 mon.smithi028 (mon.0) 242 : cluster [DBG] last_changed 2024-04-24T17:12:45.621255+0000 2024-04-24T17:12:51.025 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677879+0000 mon.smithi028 (mon.0) 243 : cluster [DBG] created 2024-04-24T17:09:37.036869+0000 2024-04-24T17:12:51.025 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677879+0000 mon.smithi028 (mon.0) 243 : cluster [DBG] created 2024-04-24T17:09:37.036869+0000 2024-04-24T17:12:51.025 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677888+0000 mon.smithi028 (mon.0) 244 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T17:12:51.026 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677888+0000 mon.smithi028 (mon.0) 244 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T17:12:51.026 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677915+0000 mon.smithi028 (mon.0) 245 : cluster [DBG] election_strategy: 1 2024-04-24T17:12:51.026 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677915+0000 mon.smithi028 (mon.0) 245 : cluster [DBG] election_strategy: 1 2024-04-24T17:12:51.026 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677931+0000 mon.smithi028 (mon.0) 246 : cluster [DBG] 0: [v2:172.21.15.28:3300/0,v1:172.21.15.28:6789/0] mon.smithi028 2024-04-24T17:12:51.026 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677931+0000 mon.smithi028 (mon.0) 246 : cluster [DBG] 0: [v2:172.21.15.28:3300/0,v1:172.21.15.28:6789/0] mon.smithi028 2024-04-24T17:12:51.026 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677942+0000 mon.smithi028 (mon.0) 247 : cluster [DBG] 1: [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] mon.smithi105 2024-04-24T17:12:51.026 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.677942+0000 mon.smithi028 (mon.0) 247 : cluster [DBG] 1: [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] mon.smithi105 2024-04-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702015+0000 mon.smithi028 (mon.0) 248 : cluster [DBG] fsmap 2024-04-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702015+0000 mon.smithi028 (mon.0) 248 : cluster [DBG] fsmap 2024-04-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702051+0000 mon.smithi028 (mon.0) 249 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-04-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702051+0000 mon.smithi028 (mon.0) 249 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-04-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702259+0000 mon.smithi028 (mon.0) 250 : cluster [DBG] mgrmap e17: smithi028.zkmzde(active, since 37s) 2024-04-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702259+0000 mon.smithi028 (mon.0) 250 : cluster [DBG] mgrmap e17: smithi028.zkmzde(active, since 37s) 2024-04-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702447+0000 mon.smithi028 (mon.0) 251 : cluster [WRN] Health detail: HEALTH_WARN failed to probe daemons or devices 2024-04-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702447+0000 mon.smithi028 (mon.0) 251 : cluster [WRN] Health detail: HEALTH_WARN failed to probe daemons or devices 2024-04-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702473+0000 mon.smithi028 (mon.0) 252 : cluster [WRN] [WRN] CEPHADM_REFRESH_FAILED: failed to probe daemons or devices 2024-04-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702473+0000 mon.smithi028 (mon.0) 252 : cluster [WRN] [WRN] CEPHADM_REFRESH_FAILED: failed to probe daemons or devices 2024-04-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702495+0000 mon.smithi028 (mon.0) 253 : cluster [WRN] host smithi105 `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=smithi105 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/3d5e4290-025d-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-tmps_nto37x:/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-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702495+0000 mon.smithi028 (mon.0) 253 : cluster [WRN] host smithi105 `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=smithi105 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/3d5e4290-025d-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-tmps_nto37x:/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-24T17:12:51.027 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702509+0000 mon.smithi028 (mon.0) 254 : 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-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702509+0000 mon.smithi028 (mon.0) 254 : 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-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702527+0000 mon.smithi028 (mon.0) 255 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702527+0000 mon.smithi028 (mon.0) 255 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702538+0000 mon.smithi028 (mon.0) 256 : cluster [WRN] Traceback (most recent call last): 2024-04-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702538+0000 mon.smithi028 (mon.0) 256 : cluster [WRN] Traceback (most recent call last): 2024-04-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702552+0000 mon.smithi028 (mon.0) 257 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702552+0000 mon.smithi028 (mon.0) 257 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702570+0000 mon.smithi028 (mon.0) 258 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702570+0000 mon.smithi028 (mon.0) 258 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702586+0000 mon.smithi028 (mon.0) 259 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702586+0000 mon.smithi028 (mon.0) 259 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702600+0000 mon.smithi028 (mon.0) 260 : cluster [WRN] exec(code, run_globals) 2024-04-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702600+0000 mon.smithi028 (mon.0) 260 : cluster [WRN] exec(code, run_globals) 2024-04-24T17:12:51.028 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702615+0000 mon.smithi028 (mon.0) 261 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702615+0000 mon.smithi028 (mon.0) 261 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702631+0000 mon.smithi028 (mon.0) 262 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702631+0000 mon.smithi028 (mon.0) 262 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702648+0000 mon.smithi028 (mon.0) 263 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702648+0000 mon.smithi028 (mon.0) 263 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702662+0000 mon.smithi028 (mon.0) 264 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702662+0000 mon.smithi028 (mon.0) 264 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702674+0000 mon.smithi028 (mon.0) 265 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702674+0000 mon.smithi028 (mon.0) 265 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702690+0000 mon.smithi028 (mon.0) 266 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702690+0000 mon.smithi028 (mon.0) 266 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702705+0000 mon.smithi028 (mon.0) 267 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702705+0000 mon.smithi028 (mon.0) 267 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T17:12:51.029 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702721+0000 mon.smithi028 (mon.0) 268 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T17:12:51.030 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702721+0000 mon.smithi028 (mon.0) 268 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T17:12:51.030 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702738+0000 mon.smithi028 (mon.0) 269 : 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=smithi105 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/3d5e4290-025d-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-tmps_nto37x:/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-24T17:12:51.030 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702738+0000 mon.smithi028 (mon.0) 269 : 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=smithi105 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/3d5e4290-025d-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-tmps_nto37x:/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-24T17:12:51.030 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702752+0000 mon.smithi028 (mon.0) 270 : cluster [WRN] See 'docker run --help'. 2024-04-24T17:12:51.030 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702752+0000 mon.smithi028 (mon.0) 270 : cluster [WRN] See 'docker run --help'. 2024-04-24T17:12:51.030 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702767+0000 mon.smithi028 (mon.0) 271 : cluster [WRN] host smithi028 `cephadm ceph-volume` failed: cephadm exited with an error code: 1, stderr: Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:12:51.030 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702767+0000 mon.smithi028 (mon.0) 271 : cluster [WRN] host smithi028 `cephadm ceph-volume` failed: cephadm exited with an error code: 1, stderr: Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:12:51.030 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702781+0000 mon.smithi028 (mon.0) 272 : 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=smithi028 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/3d5e4290-025d-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-tmpde137u2y:/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-24T17:12:51.030 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702781+0000 mon.smithi028 (mon.0) 272 : 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=smithi028 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/3d5e4290-025d-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-tmpde137u2y:/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-24T17:12:51.030 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702796+0000 mon.smithi028 (mon.0) 273 : 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-24T17:12:51.030 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702796+0000 mon.smithi028 (mon.0) 273 : 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-24T17:12:51.030 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702811+0000 mon.smithi028 (mon.0) 274 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702811+0000 mon.smithi028 (mon.0) 274 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702825+0000 mon.smithi028 (mon.0) 275 : cluster [WRN] Traceback (most recent call last): 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702825+0000 mon.smithi028 (mon.0) 275 : cluster [WRN] Traceback (most recent call last): 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702835+0000 mon.smithi028 (mon.0) 276 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702835+0000 mon.smithi028 (mon.0) 276 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702850+0000 mon.smithi028 (mon.0) 277 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702850+0000 mon.smithi028 (mon.0) 277 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702864+0000 mon.smithi028 (mon.0) 278 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702864+0000 mon.smithi028 (mon.0) 278 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702879+0000 mon.smithi028 (mon.0) 279 : cluster [WRN] exec(code, run_globals) 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702879+0000 mon.smithi028 (mon.0) 279 : cluster [WRN] exec(code, run_globals) 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702895+0000 mon.smithi028 (mon.0) 280 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T17:12:51.031 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702895+0000 mon.smithi028 (mon.0) 280 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702910+0000 mon.smithi028 (mon.0) 281 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702910+0000 mon.smithi028 (mon.0) 281 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702924+0000 mon.smithi028 (mon.0) 282 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702924+0000 mon.smithi028 (mon.0) 282 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702940+0000 mon.smithi028 (mon.0) 283 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702940+0000 mon.smithi028 (mon.0) 283 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702953+0000 mon.smithi028 (mon.0) 284 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702953+0000 mon.smithi028 (mon.0) 284 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702969+0000 mon.smithi028 (mon.0) 285 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702969+0000 mon.smithi028 (mon.0) 285 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702982+0000 mon.smithi028 (mon.0) 286 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.702982+0000 mon.smithi028 (mon.0) 286 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.703018+0000 mon.smithi028 (mon.0) 287 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T17:12:51.032 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.703018+0000 mon.smithi028 (mon.0) 287 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T17:12:51.033 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.703032+0000 mon.smithi028 (mon.0) 288 : 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=smithi028 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/3d5e4290-025d-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-tmpde137u2y:/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-24T17:12:51.033 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.703032+0000 mon.smithi028 (mon.0) 288 : 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=smithi028 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/3d5e4290-025d-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-tmpde137u2y:/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-24T17:12:51.033 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.703047+0000 mon.smithi028 (mon.0) 289 : cluster [WRN] See 'docker run --help'. 2024-04-24T17:12:51.033 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.703047+0000 mon.smithi028 (mon.0) 289 : cluster [WRN] See 'docker run --help'. 2024-04-24T17:12:51.033 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.704887+0000 mon.smithi028 (mon.0) 290 : cluster [DBG] Standby manager daemon smithi105.rmqzvz started 2024-04-24T17:12:51.033 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.704887+0000 mon.smithi028 (mon.0) 290 : cluster [DBG] Standby manager daemon smithi105.rmqzvz started 2024-04-24T17:12:51.033 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:50.709989+0000 mon.smithi028 (mon.0) 291 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:51.033 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:50.709989+0000 mon.smithi028 (mon.0) 291 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:51.033 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:50.713845+0000 mon.smithi028 (mon.0) 292 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:51.033 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:50.713845+0000 mon.smithi028 (mon.0) 292 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:51.033 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:50.716312+0000 mon.smithi028 (mon.0) 293 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-24T17:12:51.033 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:50.716312+0000 mon.smithi028 (mon.0) 293 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-24T17:12:51.034 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:50.732743+0000 mon.smithi028 (mon.0) 294 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi105.rmqzvz/key"}]: dispatch 2024-04-24T17:12:51.034 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:50.732743+0000 mon.smithi028 (mon.0) 294 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi105.rmqzvz/key"}]: dispatch 2024-04-24T17:12:51.034 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:50.733593+0000 mon.smithi028 (mon.0) 295 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-24T17:12:51.034 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:50 smithi105 bash[20254]: audit 2024-04-24T17:12:50.733593+0000 mon.smithi028 (mon.0) 295 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-24T17:12:51.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:45.621916+0000 mon.smithi028 (mon.0) 229 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:45.621916+0000 mon.smithi028 (mon.0) 229 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:45.626887+0000 mon.smithi028 (mon.0) 230 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi028"}]: dispatch 2024-04-24T17:12:51.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:45.626887+0000 mon.smithi028 (mon.0) 230 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi028"}]: dispatch 2024-04-24T17:12:51.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:45.627236+0000 mon.smithi028 (mon.0) 231 : cluster [INF] mon.smithi028 calling monitor election 2024-04-24T17:12:51.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:45.627236+0000 mon.smithi028 (mon.0) 231 : cluster [INF] mon.smithi028 calling monitor election 2024-04-24T17:12:51.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:45.650692+0000 mon.smithi028 (mon.0) 232 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:45.650692+0000 mon.smithi028 (mon.0) 232 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:46.053363+0000 mgr.smithi028.zkmzde (mgr.14197) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:51.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:46.053363+0000 mgr.smithi028.zkmzde (mgr.14197) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:51.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:46.621624+0000 mon.smithi028 (mon.0) 233 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:46.621624+0000 mon.smithi028 (mon.0) 233 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:47.621960+0000 mon.smithi028 (mon.0) 234 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:47.621960+0000 mon.smithi028 (mon.0) 234 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:47.622494+0000 mon.smithi105 (mon.1) 1 : cluster [INF] mon.smithi105 calling monitor election 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:47.622494+0000 mon.smithi105 (mon.1) 1 : cluster [INF] mon.smithi105 calling monitor election 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:48.054274+0000 mgr.smithi028.zkmzde (mgr.14197) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:48.054274+0000 mgr.smithi028.zkmzde (mgr.14197) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:48.621757+0000 mon.smithi028 (mon.0) 235 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:48.621757+0000 mon.smithi028 (mon.0) 235 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:49.346510+0000 mon.smithi028 (mon.0) 236 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi105.rmqzvz/crt"}]: dispatch 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:49.346510+0000 mon.smithi028 (mon.0) 236 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi105.rmqzvz/crt"}]: dispatch 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:49.621622+0000 mon.smithi028 (mon.0) 237 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:49.621622+0000 mon.smithi028 (mon.0) 237 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.036 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.054875+0000 mgr.smithi028.zkmzde (mgr.14197) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.054875+0000 mgr.smithi028.zkmzde (mgr.14197) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:50.621891+0000 mon.smithi028 (mon.0) 238 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:50.621891+0000 mon.smithi028 (mon.0) 238 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.671123+0000 mon.smithi028 (mon.0) 239 : cluster [INF] mon.smithi028 is new leader, mons smithi028,smithi105 in quorum (ranks 0,1) 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.671123+0000 mon.smithi028 (mon.0) 239 : cluster [INF] mon.smithi028 is new leader, mons smithi028,smithi105 in quorum (ranks 0,1) 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677831+0000 mon.smithi028 (mon.0) 240 : cluster [DBG] monmap epoch 2 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677831+0000 mon.smithi028 (mon.0) 240 : cluster [DBG] monmap epoch 2 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677856+0000 mon.smithi028 (mon.0) 241 : cluster [DBG] fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677856+0000 mon.smithi028 (mon.0) 241 : cluster [DBG] fsid 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677868+0000 mon.smithi028 (mon.0) 242 : cluster [DBG] last_changed 2024-04-24T17:12:45.621255+0000 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677868+0000 mon.smithi028 (mon.0) 242 : cluster [DBG] last_changed 2024-04-24T17:12:45.621255+0000 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677879+0000 mon.smithi028 (mon.0) 243 : cluster [DBG] created 2024-04-24T17:09:37.036869+0000 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677879+0000 mon.smithi028 (mon.0) 243 : cluster [DBG] created 2024-04-24T17:09:37.036869+0000 2024-04-24T17:12:51.037 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677888+0000 mon.smithi028 (mon.0) 244 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T17:12:51.039 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677888+0000 mon.smithi028 (mon.0) 244 : cluster [DBG] min_mon_release 19 (squid) 2024-04-24T17:12:51.039 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677915+0000 mon.smithi028 (mon.0) 245 : cluster [DBG] election_strategy: 1 2024-04-24T17:12:51.039 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677915+0000 mon.smithi028 (mon.0) 245 : cluster [DBG] election_strategy: 1 2024-04-24T17:12:51.039 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677931+0000 mon.smithi028 (mon.0) 246 : cluster [DBG] 0: [v2:172.21.15.28:3300/0,v1:172.21.15.28:6789/0] mon.smithi028 2024-04-24T17:12:51.039 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677931+0000 mon.smithi028 (mon.0) 246 : cluster [DBG] 0: [v2:172.21.15.28:3300/0,v1:172.21.15.28:6789/0] mon.smithi028 2024-04-24T17:12:51.040 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677942+0000 mon.smithi028 (mon.0) 247 : cluster [DBG] 1: [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] mon.smithi105 2024-04-24T17:12:51.040 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.677942+0000 mon.smithi028 (mon.0) 247 : cluster [DBG] 1: [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] mon.smithi105 2024-04-24T17:12:51.040 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702015+0000 mon.smithi028 (mon.0) 248 : cluster [DBG] fsmap 2024-04-24T17:12:51.040 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702015+0000 mon.smithi028 (mon.0) 248 : cluster [DBG] fsmap 2024-04-24T17:12:51.040 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702051+0000 mon.smithi028 (mon.0) 249 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-04-24T17:12:51.040 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702051+0000 mon.smithi028 (mon.0) 249 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-04-24T17:12:51.040 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702259+0000 mon.smithi028 (mon.0) 250 : cluster [DBG] mgrmap e17: smithi028.zkmzde(active, since 37s) 2024-04-24T17:12:51.040 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702259+0000 mon.smithi028 (mon.0) 250 : cluster [DBG] mgrmap e17: smithi028.zkmzde(active, since 37s) 2024-04-24T17:12:51.040 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702447+0000 mon.smithi028 (mon.0) 251 : cluster [WRN] Health detail: HEALTH_WARN failed to probe daemons or devices 2024-04-24T17:12:51.040 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702447+0000 mon.smithi028 (mon.0) 251 : cluster [WRN] Health detail: HEALTH_WARN failed to probe daemons or devices 2024-04-24T17:12:51.040 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702473+0000 mon.smithi028 (mon.0) 252 : cluster [WRN] [WRN] CEPHADM_REFRESH_FAILED: failed to probe daemons or devices 2024-04-24T17:12:51.040 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702473+0000 mon.smithi028 (mon.0) 252 : cluster [WRN] [WRN] CEPHADM_REFRESH_FAILED: failed to probe daemons or devices 2024-04-24T17:12:51.041 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702495+0000 mon.smithi028 (mon.0) 253 : cluster [WRN] host smithi105 `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=smithi105 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/3d5e4290-025d-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-tmps_nto37x:/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-24T17:12:51.041 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702495+0000 mon.smithi028 (mon.0) 253 : cluster [WRN] host smithi105 `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=smithi105 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/3d5e4290-025d-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-tmps_nto37x:/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-24T17:12:51.041 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702509+0000 mon.smithi028 (mon.0) 254 : 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-24T17:12:51.041 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702509+0000 mon.smithi028 (mon.0) 254 : 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-24T17:12:51.041 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702527+0000 mon.smithi028 (mon.0) 255 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T17:12:51.041 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702527+0000 mon.smithi028 (mon.0) 255 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T17:12:51.041 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702538+0000 mon.smithi028 (mon.0) 256 : cluster [WRN] Traceback (most recent call last): 2024-04-24T17:12:51.041 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702538+0000 mon.smithi028 (mon.0) 256 : cluster [WRN] Traceback (most recent call last): 2024-04-24T17:12:51.041 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702552+0000 mon.smithi028 (mon.0) 257 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T17:12:51.041 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702552+0000 mon.smithi028 (mon.0) 257 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T17:12:51.041 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702570+0000 mon.smithi028 (mon.0) 258 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T17:12:51.041 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702570+0000 mon.smithi028 (mon.0) 258 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702586+0000 mon.smithi028 (mon.0) 259 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702586+0000 mon.smithi028 (mon.0) 259 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702600+0000 mon.smithi028 (mon.0) 260 : cluster [WRN] exec(code, run_globals) 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702600+0000 mon.smithi028 (mon.0) 260 : cluster [WRN] exec(code, run_globals) 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702615+0000 mon.smithi028 (mon.0) 261 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702615+0000 mon.smithi028 (mon.0) 261 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702631+0000 mon.smithi028 (mon.0) 262 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702631+0000 mon.smithi028 (mon.0) 262 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702648+0000 mon.smithi028 (mon.0) 263 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702648+0000 mon.smithi028 (mon.0) 263 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702662+0000 mon.smithi028 (mon.0) 264 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702662+0000 mon.smithi028 (mon.0) 264 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T17:12:51.042 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702674+0000 mon.smithi028 (mon.0) 265 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702674+0000 mon.smithi028 (mon.0) 265 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702690+0000 mon.smithi028 (mon.0) 266 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702690+0000 mon.smithi028 (mon.0) 266 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702705+0000 mon.smithi028 (mon.0) 267 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702705+0000 mon.smithi028 (mon.0) 267 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702721+0000 mon.smithi028 (mon.0) 268 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702721+0000 mon.smithi028 (mon.0) 268 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702738+0000 mon.smithi028 (mon.0) 269 : 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=smithi105 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/3d5e4290-025d-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-tmps_nto37x:/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-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702738+0000 mon.smithi028 (mon.0) 269 : 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=smithi105 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/log/ceph/3d5e4290-025d-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-tmps_nto37x:/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-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702752+0000 mon.smithi028 (mon.0) 270 : cluster [WRN] See 'docker run --help'. 2024-04-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702752+0000 mon.smithi028 (mon.0) 270 : cluster [WRN] See 'docker run --help'. 2024-04-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702767+0000 mon.smithi028 (mon.0) 271 : cluster [WRN] host smithi028 `cephadm ceph-volume` failed: cephadm exited with an error code: 1, stderr: Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702767+0000 mon.smithi028 (mon.0) 271 : cluster [WRN] host smithi028 `cephadm ceph-volume` failed: cephadm exited with an error code: 1, stderr: Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:12:51.043 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702781+0000 mon.smithi028 (mon.0) 272 : 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=smithi028 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/3d5e4290-025d-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-tmpde137u2y:/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-24T17:12:51.044 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702781+0000 mon.smithi028 (mon.0) 272 : 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=smithi028 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/3d5e4290-025d-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-tmpde137u2y:/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-24T17:12:51.044 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702796+0000 mon.smithi028 (mon.0) 273 : 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-24T17:12:51.044 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702796+0000 mon.smithi028 (mon.0) 273 : 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-24T17:12:51.044 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702811+0000 mon.smithi028 (mon.0) 274 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T17:12:51.044 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702811+0000 mon.smithi028 (mon.0) 274 : cluster [WRN] /usr/bin/docker: stderr See 'docker run --help'. 2024-04-24T17:12:51.044 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702825+0000 mon.smithi028 (mon.0) 275 : cluster [WRN] Traceback (most recent call last): 2024-04-24T17:12:51.044 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702825+0000 mon.smithi028 (mon.0) 275 : cluster [WRN] Traceback (most recent call last): 2024-04-24T17:12:51.044 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702835+0000 mon.smithi028 (mon.0) 276 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T17:12:51.044 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702835+0000 mon.smithi028 (mon.0) 276 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main 2024-04-24T17:12:51.044 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702850+0000 mon.smithi028 (mon.0) 277 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702850+0000 mon.smithi028 (mon.0) 277 : cluster [WRN] return _run_code(code, main_globals, None, 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702864+0000 mon.smithi028 (mon.0) 278 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702864+0000 mon.smithi028 (mon.0) 278 : cluster [WRN] File "/usr/lib/python3.10/runpy.py", line 86, in _run_code 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702879+0000 mon.smithi028 (mon.0) 279 : cluster [WRN] exec(code, run_globals) 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702879+0000 mon.smithi028 (mon.0) 279 : cluster [WRN] exec(code, run_globals) 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702895+0000 mon.smithi028 (mon.0) 280 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702895+0000 mon.smithi028 (mon.0) 280 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5642, in 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702910+0000 mon.smithi028 (mon.0) 281 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702910+0000 mon.smithi028 (mon.0) 281 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 5630, in main 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702924+0000 mon.smithi028 (mon.0) 282 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702924+0000 mon.smithi028 (mon.0) 282 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 408, in _infer_config 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702940+0000 mon.smithi028 (mon.0) 283 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702940+0000 mon.smithi028 (mon.0) 283 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 323, in _infer_fsid 2024-04-24T17:12:51.045 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702953+0000 mon.smithi028 (mon.0) 284 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T17:12:51.046 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702953+0000 mon.smithi028 (mon.0) 284 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 436, in _infer_image 2024-04-24T17:12:51.046 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702969+0000 mon.smithi028 (mon.0) 285 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T17:12:51.046 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702969+0000 mon.smithi028 (mon.0) 285 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 310, in _validate_fsid 2024-04-24T17:12:51.046 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702982+0000 mon.smithi028 (mon.0) 286 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T17:12:51.046 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.702982+0000 mon.smithi028 (mon.0) 286 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/__main__.py", line 3380, in command_ceph_volume 2024-04-24T17:12:51.046 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.703018+0000 mon.smithi028 (mon.0) 287 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T17:12:51.046 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.703018+0000 mon.smithi028 (mon.0) 287 : cluster [WRN] File "/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/cephadm.1f08c70ed1be73eb5430d661f765904c2335d752edef06817644566059cdce9e/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-24T17:12:51.047 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.703032+0000 mon.smithi028 (mon.0) 288 : 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=smithi028 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/3d5e4290-025d-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-tmpde137u2y:/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-24T17:12:51.047 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.703032+0000 mon.smithi028 (mon.0) 288 : 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=smithi028 -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/run/ceph:z -v /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968:/var/log/ceph:z -v /var/lib/ceph/3d5e4290-025d-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-tmpde137u2y:/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-24T17:12:51.047 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.703047+0000 mon.smithi028 (mon.0) 289 : cluster [WRN] See 'docker run --help'. 2024-04-24T17:12:51.047 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.703047+0000 mon.smithi028 (mon.0) 289 : cluster [WRN] See 'docker run --help'. 2024-04-24T17:12:51.047 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.704887+0000 mon.smithi028 (mon.0) 290 : cluster [DBG] Standby manager daemon smithi105.rmqzvz started 2024-04-24T17:12:51.047 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.704887+0000 mon.smithi028 (mon.0) 290 : cluster [DBG] Standby manager daemon smithi105.rmqzvz started 2024-04-24T17:12:51.047 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:50.709989+0000 mon.smithi028 (mon.0) 291 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:51.047 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:50.709989+0000 mon.smithi028 (mon.0) 291 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:51.047 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:50.713845+0000 mon.smithi028 (mon.0) 292 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:51.048 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:50.713845+0000 mon.smithi028 (mon.0) 292 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:51.048 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:50.716312+0000 mon.smithi028 (mon.0) 293 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-24T17:12:51.048 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:50.716312+0000 mon.smithi028 (mon.0) 293 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-24T17:12:51.048 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:50.732743+0000 mon.smithi028 (mon.0) 294 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi105.rmqzvz/key"}]: dispatch 2024-04-24T17:12:51.048 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:50.732743+0000 mon.smithi028 (mon.0) 294 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi105.rmqzvz/key"}]: dispatch 2024-04-24T17:12:51.048 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:50.733593+0000 mon.smithi028 (mon.0) 295 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-24T17:12:51.048 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:50 smithi028 bash[18631]: audit 2024-04-24T17:12:50.733593+0000 mon.smithi028 (mon.0) 295 : audit [DBG] from='mgr.? 172.21.15.105:0/1760875696' entity='mgr.smithi105.rmqzvz' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-24T17:12:51.818 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-24T17:12:51.819 INFO:teuthology.orchestra.run.smithi105.stdout:{"epoch":2,"fsid":"3d5e4290-025d-11ef-bc93-c7b262605968","modified":"2024-04-24T17:12:45.621255Z","created":"2024-04-24T17:09:37.036869Z","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":"smithi028","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.28:3300","nonce":0},{"type":"v1","addr":"172.21.15.28:6789","nonce":0}]},"addr":"172.21.15.28:6789/0","public_addr":"172.21.15.28:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi105","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:3300","nonce":0},{"type":"v1","addr":"172.21.15.105:6789","nonce":0}]},"addr":"172.21.15.105:6789/0","public_addr":"172.21.15.105:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-04-24T17:12:51.822 INFO:teuthology.orchestra.run.smithi105.stderr:dumped monmap epoch 2 2024-04-24T17:12:52.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:51 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.778134+0000 mon.smithi028 (mon.0) 296 : cluster [DBG] mgrmap e18: smithi028.zkmzde(active, since 38s), standbys: smithi105.rmqzvz 2024-04-24T17:12:52.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:51 smithi028 bash[18631]: cluster 2024-04-24T17:12:50.778134+0000 mon.smithi028 (mon.0) 296 : cluster [DBG] mgrmap e18: smithi028.zkmzde(active, since 38s), standbys: smithi105.rmqzvz 2024-04-24T17:12:52.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:51 smithi028 bash[18631]: audit 2024-04-24T17:12:50.778453+0000 mon.smithi028 (mon.0) 297 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr metadata", "who": "smithi105.rmqzvz", "id": "smithi105.rmqzvz"}]: dispatch 2024-04-24T17:12:52.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:51 smithi028 bash[18631]: audit 2024-04-24T17:12:50.778453+0000 mon.smithi028 (mon.0) 297 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr metadata", "who": "smithi105.rmqzvz", "id": "smithi105.rmqzvz"}]: dispatch 2024-04-24T17:12:52.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:51 smithi028 bash[18631]: audit 2024-04-24T17:12:51.621936+0000 mon.smithi028 (mon.0) 298 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:52.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:51 smithi028 bash[18631]: audit 2024-04-24T17:12:51.621936+0000 mon.smithi028 (mon.0) 298 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:52.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:51 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.778134+0000 mon.smithi028 (mon.0) 296 : cluster [DBG] mgrmap e18: smithi028.zkmzde(active, since 38s), standbys: smithi105.rmqzvz 2024-04-24T17:12:52.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:51 smithi105 bash[20254]: cluster 2024-04-24T17:12:50.778134+0000 mon.smithi028 (mon.0) 296 : cluster [DBG] mgrmap e18: smithi028.zkmzde(active, since 38s), standbys: smithi105.rmqzvz 2024-04-24T17:12:52.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:51 smithi105 bash[20254]: audit 2024-04-24T17:12:50.778453+0000 mon.smithi028 (mon.0) 297 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr metadata", "who": "smithi105.rmqzvz", "id": "smithi105.rmqzvz"}]: dispatch 2024-04-24T17:12:52.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:51 smithi105 bash[20254]: audit 2024-04-24T17:12:50.778453+0000 mon.smithi028 (mon.0) 297 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr metadata", "who": "smithi105.rmqzvz", "id": "smithi105.rmqzvz"}]: dispatch 2024-04-24T17:12:52.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:51 smithi105 bash[20254]: audit 2024-04-24T17:12:51.621936+0000 mon.smithi028 (mon.0) 298 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:52.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:51 smithi105 bash[20254]: audit 2024-04-24T17:12:51.621936+0000 mon.smithi028 (mon.0) 298 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mon metadata", "id": "smithi105"}]: dispatch 2024-04-24T17:12:52.497 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-04-24T17:12:52.497 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph config generate-minimal-conf 2024-04-24T17:12:53.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:52 smithi028 bash[18631]: audit 2024-04-24T17:12:51.819913+0000 mon.smithi028 (mon.0) 299 : audit [DBG] from='client.? 172.21.15.105:0/876855683' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:53.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:52 smithi028 bash[18631]: audit 2024-04-24T17:12:51.819913+0000 mon.smithi028 (mon.0) 299 : audit [DBG] from='client.? 172.21.15.105:0/876855683' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:53.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:52 smithi028 bash[18631]: cluster 2024-04-24T17:12:52.055860+0000 mgr.smithi028.zkmzde (mgr.14197) 29 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:53.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:52 smithi028 bash[18631]: cluster 2024-04-24T17:12:52.055860+0000 mgr.smithi028.zkmzde (mgr.14197) 29 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:53.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:52 smithi105 bash[20254]: audit 2024-04-24T17:12:51.819913+0000 mon.smithi028 (mon.0) 299 : audit [DBG] from='client.? 172.21.15.105:0/876855683' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:53.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:52 smithi105 bash[20254]: audit 2024-04-24T17:12:51.819913+0000 mon.smithi028 (mon.0) 299 : audit [DBG] from='client.? 172.21.15.105:0/876855683' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-24T17:12:53.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:52 smithi105 bash[20254]: cluster 2024-04-24T17:12:52.055860+0000 mgr.smithi028.zkmzde (mgr.14197) 29 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:53.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:52 smithi105 bash[20254]: cluster 2024-04-24T17:12:52.055860+0000 mgr.smithi028.zkmzde (mgr.14197) 29 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:55.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:55 smithi105 bash[20254]: cluster 2024-04-24T17:12:54.056907+0000 mgr.smithi028.zkmzde (mgr.14197) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:55.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:55 smithi105 bash[20254]: cluster 2024-04-24T17:12:54.056907+0000 mgr.smithi028.zkmzde (mgr.14197) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:55.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:55 smithi028 bash[18631]: cluster 2024-04-24T17:12:54.056907+0000 mgr.smithi028.zkmzde (mgr.14197) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:55.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:55 smithi028 bash[18631]: cluster 2024-04-24T17:12:54.056907+0000 mgr.smithi028.zkmzde (mgr.14197) 30 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:56.887 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:56 smithi105 bash[20254]: cluster 2024-04-24T17:12:56.057906+0000 mgr.smithi028.zkmzde (mgr.14197) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:56.888 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:56 smithi105 bash[20254]: cluster 2024-04-24T17:12:56.057906+0000 mgr.smithi028.zkmzde (mgr.14197) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:57.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:56 smithi028 bash[18631]: cluster 2024-04-24T17:12:56.057906+0000 mgr.smithi028.zkmzde (mgr.14197) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:57.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:56 smithi028 bash[18631]: cluster 2024-04-24T17:12:56.057906+0000 mgr.smithi028.zkmzde (mgr.14197) 31 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:57.274 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:12:58.098 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:57 smithi028 bash[18631]: audit 2024-04-24T17:12:57.753815+0000 mon.smithi028 (mon.0) 300 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:58.099 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:57 smithi028 bash[18631]: audit 2024-04-24T17:12:57.753815+0000 mon.smithi028 (mon.0) 300 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:58.099 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:57 smithi028 bash[18631]: audit 2024-04-24T17:12:57.758335+0000 mon.smithi028 (mon.0) 301 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:12:58.099 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:57 smithi028 bash[18631]: audit 2024-04-24T17:12:57.758335+0000 mon.smithi028 (mon.0) 301 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:12:58.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:57 smithi105 bash[20254]: audit 2024-04-24T17:12:57.753815+0000 mon.smithi028 (mon.0) 300 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:58.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:57 smithi105 bash[20254]: audit 2024-04-24T17:12:57.753815+0000 mon.smithi028 (mon.0) 300 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:58.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:57 smithi105 bash[20254]: audit 2024-04-24T17:12:57.758335+0000 mon.smithi028 (mon.0) 301 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:12:58.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:57 smithi105 bash[20254]: audit 2024-04-24T17:12:57.758335+0000 mon.smithi028 (mon.0) 301 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:12:58.502 INFO:teuthology.orchestra.run.smithi028.stdout:# minimal ceph.conf for 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:12:58.502 INFO:teuthology.orchestra.run.smithi028.stdout:[global] 2024-04-24T17:12:58.502 INFO:teuthology.orchestra.run.smithi028.stdout: fsid = 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:12:58.502 INFO:teuthology.orchestra.run.smithi028.stdout: mon_host = [v2:172.21.15.28:3300/0,v1:172.21.15.28:6789/0] [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] 2024-04-24T17:12:59.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cephadm 2024-04-24T17:12:57.760910+0000 mgr.smithi028.zkmzde (mgr.14197) 32 : cephadm [INF] Updating smithi028:/etc/ceph/ceph.conf 2024-04-24T17:12:59.273 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cephadm 2024-04-24T17:12:57.760910+0000 mgr.smithi028.zkmzde (mgr.14197) 32 : cephadm [INF] Updating smithi028:/etc/ceph/ceph.conf 2024-04-24T17:12:59.274 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cephadm 2024-04-24T17:12:57.761403+0000 mgr.smithi028.zkmzde (mgr.14197) 33 : cephadm [INF] Updating smithi105:/etc/ceph/ceph.conf 2024-04-24T17:12:59.274 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cephadm 2024-04-24T17:12:57.761403+0000 mgr.smithi028.zkmzde (mgr.14197) 33 : cephadm [INF] Updating smithi105:/etc/ceph/ceph.conf 2024-04-24T17:12:59.274 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:57.817676+0000 mon.smithi028 (mon.0) 302 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:12:59.274 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:57.817676+0000 mon.smithi028 (mon.0) 302 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:12:59.274 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cephadm 2024-04-24T17:12:57.979340+0000 mgr.smithi028.zkmzde (mgr.14197) 34 : cephadm [INF] Updating smithi028:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:59.274 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cephadm 2024-04-24T17:12:57.979340+0000 mgr.smithi028.zkmzde (mgr.14197) 34 : cephadm [INF] Updating smithi028:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:59.275 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cephadm 2024-04-24T17:12:58.031082+0000 mgr.smithi028.zkmzde (mgr.14197) 35 : cephadm [INF] Updating smithi105:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:59.275 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cephadm 2024-04-24T17:12:58.031082+0000 mgr.smithi028.zkmzde (mgr.14197) 35 : cephadm [INF] Updating smithi105:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:59.275 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cluster 2024-04-24T17:12:58.058482+0000 mgr.smithi028.zkmzde (mgr.14197) 36 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:59.275 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cluster 2024-04-24T17:12:58.058482+0000 mgr.smithi028.zkmzde (mgr.14197) 36 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:59.275 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.149567+0000 mon.smithi028 (mon.0) 303 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:59.275 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.149567+0000 mon.smithi028 (mon.0) 303 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:59.276 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.201668+0000 mon.smithi028 (mon.0) 304 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:59.276 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.201668+0000 mon.smithi028 (mon.0) 304 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:59.276 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cluster 2024-04-24T17:12:58.202552+0000 mgr.smithi028.zkmzde (mgr.14197) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:59.276 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cluster 2024-04-24T17:12:58.202552+0000 mgr.smithi028.zkmzde (mgr.14197) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:59.276 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cluster 2024-04-24T17:12:58.203000+0000 mgr.smithi028.zkmzde (mgr.14197) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:59.277 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: cluster 2024-04-24T17:12:58.203000+0000 mgr.smithi028.zkmzde (mgr.14197) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:59.277 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.206576+0000 mon.smithi028 (mon.0) 305 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:59.277 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.206576+0000 mon.smithi028 (mon.0) 305 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:59.277 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.259005+0000 mon.smithi028 (mon.0) 306 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T17:12:59.277 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.259005+0000 mon.smithi028 (mon.0) 306 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T17:12:59.277 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.259980+0000 mon.smithi028 (mon.0) 307 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T17:12:59.277 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.259980+0000 mon.smithi028 (mon.0) 307 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T17:12:59.277 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.260865+0000 mon.smithi028 (mon.0) 308 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:59.277 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.260865+0000 mon.smithi028 (mon.0) 308 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:59.278 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.503069+0000 mon.smithi028 (mon.0) 309 : audit [DBG] from='client.? 172.21.15.28:0/1605881097' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:59.278 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:58 smithi105 bash[20254]: audit 2024-04-24T17:12:58.503069+0000 mon.smithi028 (mon.0) 309 : audit [DBG] from='client.? 172.21.15.28:0/1605881097' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:59.286 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cephadm 2024-04-24T17:12:57.760910+0000 mgr.smithi028.zkmzde (mgr.14197) 32 : cephadm [INF] Updating smithi028:/etc/ceph/ceph.conf 2024-04-24T17:12:59.286 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cephadm 2024-04-24T17:12:57.760910+0000 mgr.smithi028.zkmzde (mgr.14197) 32 : cephadm [INF] Updating smithi028:/etc/ceph/ceph.conf 2024-04-24T17:12:59.286 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cephadm 2024-04-24T17:12:57.761403+0000 mgr.smithi028.zkmzde (mgr.14197) 33 : cephadm [INF] Updating smithi105:/etc/ceph/ceph.conf 2024-04-24T17:12:59.286 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cephadm 2024-04-24T17:12:57.761403+0000 mgr.smithi028.zkmzde (mgr.14197) 33 : cephadm [INF] Updating smithi105:/etc/ceph/ceph.conf 2024-04-24T17:12:59.286 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:57.817676+0000 mon.smithi028 (mon.0) 302 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:12:59.287 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:57.817676+0000 mon.smithi028 (mon.0) 302 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:12:59.287 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cephadm 2024-04-24T17:12:57.979340+0000 mgr.smithi028.zkmzde (mgr.14197) 34 : cephadm [INF] Updating smithi028:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:59.287 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cephadm 2024-04-24T17:12:57.979340+0000 mgr.smithi028.zkmzde (mgr.14197) 34 : cephadm [INF] Updating smithi028:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:59.287 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cephadm 2024-04-24T17:12:58.031082+0000 mgr.smithi028.zkmzde (mgr.14197) 35 : cephadm [INF] Updating smithi105:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:59.287 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cephadm 2024-04-24T17:12:58.031082+0000 mgr.smithi028.zkmzde (mgr.14197) 35 : cephadm [INF] Updating smithi105:/var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/config/ceph.conf 2024-04-24T17:12:59.287 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cluster 2024-04-24T17:12:58.058482+0000 mgr.smithi028.zkmzde (mgr.14197) 36 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:59.287 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cluster 2024-04-24T17:12:58.058482+0000 mgr.smithi028.zkmzde (mgr.14197) 36 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:59.287 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.149567+0000 mon.smithi028 (mon.0) 303 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:59.288 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.149567+0000 mon.smithi028 (mon.0) 303 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:59.288 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.201668+0000 mon.smithi028 (mon.0) 304 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:59.288 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.201668+0000 mon.smithi028 (mon.0) 304 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:59.288 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cluster 2024-04-24T17:12:58.202552+0000 mgr.smithi028.zkmzde (mgr.14197) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:59.288 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cluster 2024-04-24T17:12:58.202552+0000 mgr.smithi028.zkmzde (mgr.14197) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:59.288 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cluster 2024-04-24T17:12:58.203000+0000 mgr.smithi028.zkmzde (mgr.14197) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:59.289 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: cluster 2024-04-24T17:12:58.203000+0000 mgr.smithi028.zkmzde (mgr.14197) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:12:59.289 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.206576+0000 mon.smithi028 (mon.0) 305 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:59.289 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.206576+0000 mon.smithi028 (mon.0) 305 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:12:59.289 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.259005+0000 mon.smithi028 (mon.0) 306 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T17:12:59.289 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.259005+0000 mon.smithi028 (mon.0) 306 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T17:12:59.290 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.259980+0000 mon.smithi028 (mon.0) 307 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T17:12:59.290 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.259980+0000 mon.smithi028 (mon.0) 307 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T17:12:59.290 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.260865+0000 mon.smithi028 (mon.0) 308 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:59.290 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.260865+0000 mon.smithi028 (mon.0) 308 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:59.290 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.503069+0000 mon.smithi028 (mon.0) 309 : audit [DBG] from='client.? 172.21.15.28:0/1605881097' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:59.290 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:58 smithi028 bash[18631]: audit 2024-04-24T17:12:58.503069+0000 mon.smithi028 (mon.0) 309 : audit [DBG] from='client.? 172.21.15.28:0/1605881097' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:12:59.551 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-04-24T17:12:59.551 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:12:59.552 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd of=/etc/ceph/ceph.conf 2024-04-24T17:12:59.565 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:12:59.565 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-24T17:12:59.619 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-24T17:12:59.619 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/etc/ceph/ceph.conf 2024-04-24T17:12:59.633 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-24T17:12:59.633 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-24T17:12:59.687 INFO:tasks.cephadm:Deploying OSDs... 2024-04-24T17:12:59.687 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:12:59.687 DEBUG:teuthology.orchestra.run.smithi028:> dd if=/scratch_devs of=/dev/stdout 2024-04-24T17:12:59.693 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-24T17:12:59.693 DEBUG:teuthology.orchestra.run.smithi028:> stat /dev/nvme1n1 2024-04-24T17:12:59.740 INFO:teuthology.orchestra.run.smithi028.stdout: File: /dev/nvme1n1 2024-04-24T17:12:59.740 INFO:teuthology.orchestra.run.smithi028.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T17:12:59.741 INFO:teuthology.orchestra.run.smithi028.stdout:Device: 5h/5d Inode: 969 Links: 1 Device type: 103,2 2024-04-24T17:12:59.741 INFO:teuthology.orchestra.run.smithi028.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T17:12:59.741 INFO:teuthology.orchestra.run.smithi028.stdout:Access: 2024-04-24 17:08:13.883568994 +0000 2024-04-24T17:12:59.741 INFO:teuthology.orchestra.run.smithi028.stdout:Modify: 2024-04-24 17:08:13.883568994 +0000 2024-04-24T17:12:59.741 INFO:teuthology.orchestra.run.smithi028.stdout:Change: 2024-04-24 17:08:13.883568994 +0000 2024-04-24T17:12:59.741 INFO:teuthology.orchestra.run.smithi028.stdout: Birth: - 2024-04-24T17:12:59.741 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-04-24T17:12:59.795 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records in 2024-04-24T17:12:59.795 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records out 2024-04-24T17:12:59.795 INFO:teuthology.orchestra.run.smithi028.stderr:512 bytes copied, 0.000246963 s, 2.1 MB/s 2024-04-24T17:12:59.797 DEBUG:teuthology.orchestra.run.smithi028:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-04-24T17:12:59.845 DEBUG:teuthology.orchestra.run.smithi028:> stat /dev/nvme2n1 2024-04-24T17:12:59.891 INFO:teuthology.orchestra.run.smithi028.stdout: File: /dev/nvme2n1 2024-04-24T17:12:59.891 INFO:teuthology.orchestra.run.smithi028.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T17:12:59.891 INFO:teuthology.orchestra.run.smithi028.stdout:Device: 5h/5d Inode: 978 Links: 1 Device type: 103,4 2024-04-24T17:12:59.891 INFO:teuthology.orchestra.run.smithi028.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T17:12:59.892 INFO:teuthology.orchestra.run.smithi028.stdout:Access: 2024-04-24 17:08:13.979520136 +0000 2024-04-24T17:12:59.892 INFO:teuthology.orchestra.run.smithi028.stdout:Modify: 2024-04-24 17:08:13.979520136 +0000 2024-04-24T17:12:59.892 INFO:teuthology.orchestra.run.smithi028.stdout:Change: 2024-04-24 17:08:13.979520136 +0000 2024-04-24T17:12:59.892 INFO:teuthology.orchestra.run.smithi028.stdout: Birth: - 2024-04-24T17:12:59.892 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-04-24T17:12:59.943 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records in 2024-04-24T17:12:59.944 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records out 2024-04-24T17:12:59.944 INFO:teuthology.orchestra.run.smithi028.stderr:512 bytes copied, 0.000169891 s, 3.0 MB/s 2024-04-24T17:12:59.945 DEBUG:teuthology.orchestra.run.smithi028:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-04-24T17:12:59.992 DEBUG:teuthology.orchestra.run.smithi028:> stat /dev/nvme3n1 2024-04-24T17:13:00.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:59 smithi105 bash[20254]: cephadm 2024-04-24T17:12:58.258555+0000 mgr.smithi028.zkmzde (mgr.14197) 39 : cephadm [INF] Reconfiguring mon.smithi028 (unknown last config time)... 2024-04-24T17:13:00.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:59 smithi105 bash[20254]: cephadm 2024-04-24T17:12:58.258555+0000 mgr.smithi028.zkmzde (mgr.14197) 39 : cephadm [INF] Reconfiguring mon.smithi028 (unknown last config time)... 2024-04-24T17:13:00.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:59 smithi105 bash[20254]: cephadm 2024-04-24T17:12:58.261859+0000 mgr.smithi028.zkmzde (mgr.14197) 40 : cephadm [INF] Reconfiguring daemon mon.smithi028 on smithi028 2024-04-24T17:13:00.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:12:59 smithi105 bash[20254]: cephadm 2024-04-24T17:12:58.261859+0000 mgr.smithi028.zkmzde (mgr.14197) 40 : cephadm [INF] Reconfiguring daemon mon.smithi028 on smithi028 2024-04-24T17:13:00.039 INFO:teuthology.orchestra.run.smithi028.stdout: File: /dev/nvme3n1 2024-04-24T17:13:00.039 INFO:teuthology.orchestra.run.smithi028.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T17:13:00.039 INFO:teuthology.orchestra.run.smithi028.stdout:Device: 5h/5d Inode: 987 Links: 1 Device type: 103,6 2024-04-24T17:13:00.039 INFO:teuthology.orchestra.run.smithi028.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T17:13:00.039 INFO:teuthology.orchestra.run.smithi028.stdout:Access: 2024-04-24 17:08:14.079469244 +0000 2024-04-24T17:13:00.039 INFO:teuthology.orchestra.run.smithi028.stdout:Modify: 2024-04-24 17:08:14.079469244 +0000 2024-04-24T17:13:00.040 INFO:teuthology.orchestra.run.smithi028.stdout:Change: 2024-04-24 17:08:14.079469244 +0000 2024-04-24T17:13:00.040 INFO:teuthology.orchestra.run.smithi028.stdout: Birth: - 2024-04-24T17:13:00.040 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-04-24T17:13:00.090 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:59 smithi028 bash[18631]: cephadm 2024-04-24T17:12:58.258555+0000 mgr.smithi028.zkmzde (mgr.14197) 39 : cephadm [INF] Reconfiguring mon.smithi028 (unknown last config time)... 2024-04-24T17:13:00.090 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:59 smithi028 bash[18631]: cephadm 2024-04-24T17:12:58.258555+0000 mgr.smithi028.zkmzde (mgr.14197) 39 : cephadm [INF] Reconfiguring mon.smithi028 (unknown last config time)... 2024-04-24T17:13:00.090 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:59 smithi028 bash[18631]: cephadm 2024-04-24T17:12:58.261859+0000 mgr.smithi028.zkmzde (mgr.14197) 40 : cephadm [INF] Reconfiguring daemon mon.smithi028 on smithi028 2024-04-24T17:13:00.090 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:12:59 smithi028 bash[18631]: cephadm 2024-04-24T17:12:58.261859+0000 mgr.smithi028.zkmzde (mgr.14197) 40 : cephadm [INF] Reconfiguring daemon mon.smithi028 on smithi028 2024-04-24T17:13:00.092 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records in 2024-04-24T17:13:00.092 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records out 2024-04-24T17:13:00.092 INFO:teuthology.orchestra.run.smithi028.stderr:512 bytes copied, 0.00029712 s, 1.7 MB/s 2024-04-24T17:13:00.093 DEBUG:teuthology.orchestra.run.smithi028:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-04-24T17:13:00.145 DEBUG:teuthology.orchestra.run.smithi028:> stat /dev/nvme4n1 2024-04-24T17:13:00.191 INFO:teuthology.orchestra.run.smithi028.stdout: File: /dev/nvme4n1 2024-04-24T17:13:00.192 INFO:teuthology.orchestra.run.smithi028.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T17:13:00.192 INFO:teuthology.orchestra.run.smithi028.stdout:Device: 5h/5d Inode: 996 Links: 1 Device type: 103,8 2024-04-24T17:13:00.192 INFO:teuthology.orchestra.run.smithi028.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T17:13:00.192 INFO:teuthology.orchestra.run.smithi028.stdout:Access: 2024-04-24 17:08:14.171422421 +0000 2024-04-24T17:13:00.192 INFO:teuthology.orchestra.run.smithi028.stdout:Modify: 2024-04-24 17:08:14.171422421 +0000 2024-04-24T17:13:00.192 INFO:teuthology.orchestra.run.smithi028.stdout:Change: 2024-04-24 17:08:14.171422421 +0000 2024-04-24T17:13:00.192 INFO:teuthology.orchestra.run.smithi028.stdout: Birth: - 2024-04-24T17:13:00.192 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-04-24T17:13:00.246 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records in 2024-04-24T17:13:00.246 INFO:teuthology.orchestra.run.smithi028.stderr:1+0 records out 2024-04-24T17:13:00.246 INFO:teuthology.orchestra.run.smithi028.stderr:512 bytes copied, 0.000371421 s, 1.4 MB/s 2024-04-24T17:13:00.247 DEBUG:teuthology.orchestra.run.smithi028:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-04-24T17:13:00.302 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-24T17:13:00.302 DEBUG:teuthology.orchestra.run.smithi105:> dd if=/scratch_devs of=/dev/stdout 2024-04-24T17:13:00.308 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-04-24T17:13:00.308 DEBUG:teuthology.orchestra.run.smithi105:> stat /dev/nvme1n1 2024-04-24T17:13:00.356 INFO:teuthology.orchestra.run.smithi105.stdout: File: /dev/nvme1n1 2024-04-24T17:13:00.356 INFO:teuthology.orchestra.run.smithi105.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T17:13:00.356 INFO:teuthology.orchestra.run.smithi105.stdout:Device: 5h/5d Inode: 969 Links: 1 Device type: 103,2 2024-04-24T17:13:00.356 INFO:teuthology.orchestra.run.smithi105.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T17:13:00.356 INFO:teuthology.orchestra.run.smithi105.stdout:Access: 2024-04-24 17:08:15.129196344 +0000 2024-04-24T17:13:00.356 INFO:teuthology.orchestra.run.smithi105.stdout:Modify: 2024-04-24 17:08:15.129196344 +0000 2024-04-24T17:13:00.357 INFO:teuthology.orchestra.run.smithi105.stdout:Change: 2024-04-24 17:08:15.129196344 +0000 2024-04-24T17:13:00.357 INFO:teuthology.orchestra.run.smithi105.stdout: Birth: - 2024-04-24T17:13:00.357 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-04-24T17:13:00.410 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records in 2024-04-24T17:13:00.410 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records out 2024-04-24T17:13:00.410 INFO:teuthology.orchestra.run.smithi105.stderr:512 bytes copied, 0.000510354 s, 1.0 MB/s 2024-04-24T17:13:00.412 DEBUG:teuthology.orchestra.run.smithi105:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-04-24T17:13:00.461 DEBUG:teuthology.orchestra.run.smithi105:> stat /dev/nvme2n1 2024-04-24T17:13:00.507 INFO:teuthology.orchestra.run.smithi105.stdout: File: /dev/nvme2n1 2024-04-24T17:13:00.508 INFO:teuthology.orchestra.run.smithi105.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T17:13:00.508 INFO:teuthology.orchestra.run.smithi105.stdout:Device: 5h/5d Inode: 978 Links: 1 Device type: 103,4 2024-04-24T17:13:00.508 INFO:teuthology.orchestra.run.smithi105.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T17:13:00.508 INFO:teuthology.orchestra.run.smithi105.stdout:Access: 2024-04-24 17:08:15.221190185 +0000 2024-04-24T17:13:00.508 INFO:teuthology.orchestra.run.smithi105.stdout:Modify: 2024-04-24 17:08:15.221190185 +0000 2024-04-24T17:13:00.508 INFO:teuthology.orchestra.run.smithi105.stdout:Change: 2024-04-24 17:08:15.221190185 +0000 2024-04-24T17:13:00.508 INFO:teuthology.orchestra.run.smithi105.stdout: Birth: - 2024-04-24T17:13:00.508 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-04-24T17:13:00.562 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records in 2024-04-24T17:13:00.562 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records out 2024-04-24T17:13:00.562 INFO:teuthology.orchestra.run.smithi105.stderr:512 bytes copied, 0.000512089 s, 1000 kB/s 2024-04-24T17:13:00.563 DEBUG:teuthology.orchestra.run.smithi105:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-04-24T17:13:00.613 DEBUG:teuthology.orchestra.run.smithi105:> stat /dev/nvme3n1 2024-04-24T17:13:00.659 INFO:teuthology.orchestra.run.smithi105.stdout: File: /dev/nvme3n1 2024-04-24T17:13:00.660 INFO:teuthology.orchestra.run.smithi105.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T17:13:00.660 INFO:teuthology.orchestra.run.smithi105.stdout:Device: 5h/5d Inode: 987 Links: 1 Device type: 103,6 2024-04-24T17:13:00.660 INFO:teuthology.orchestra.run.smithi105.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T17:13:00.660 INFO:teuthology.orchestra.run.smithi105.stdout:Access: 2024-04-24 17:08:15.313184027 +0000 2024-04-24T17:13:00.660 INFO:teuthology.orchestra.run.smithi105.stdout:Modify: 2024-04-24 17:08:15.313184027 +0000 2024-04-24T17:13:00.660 INFO:teuthology.orchestra.run.smithi105.stdout:Change: 2024-04-24 17:08:15.313184027 +0000 2024-04-24T17:13:00.660 INFO:teuthology.orchestra.run.smithi105.stdout: Birth: - 2024-04-24T17:13:00.660 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-04-24T17:13:00.714 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records in 2024-04-24T17:13:00.714 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records out 2024-04-24T17:13:00.714 INFO:teuthology.orchestra.run.smithi105.stderr:512 bytes copied, 0.00042478 s, 1.2 MB/s 2024-04-24T17:13:00.715 DEBUG:teuthology.orchestra.run.smithi105:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-04-24T17:13:00.765 DEBUG:teuthology.orchestra.run.smithi105:> stat /dev/nvme4n1 2024-04-24T17:13:00.815 INFO:teuthology.orchestra.run.smithi105.stdout: File: /dev/nvme4n1 2024-04-24T17:13:00.815 INFO:teuthology.orchestra.run.smithi105.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-04-24T17:13:00.816 INFO:teuthology.orchestra.run.smithi105.stdout:Device: 5h/5d Inode: 996 Links: 1 Device type: 103,8 2024-04-24T17:13:00.816 INFO:teuthology.orchestra.run.smithi105.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-04-24T17:13:00.816 INFO:teuthology.orchestra.run.smithi105.stdout:Access: 2024-04-24 17:08:15.405177871 +0000 2024-04-24T17:13:00.816 INFO:teuthology.orchestra.run.smithi105.stdout:Modify: 2024-04-24 17:08:15.405177871 +0000 2024-04-24T17:13:00.816 INFO:teuthology.orchestra.run.smithi105.stdout:Change: 2024-04-24 17:08:15.405177871 +0000 2024-04-24T17:13:00.816 INFO:teuthology.orchestra.run.smithi105.stdout: Birth: - 2024-04-24T17:13:00.816 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-04-24T17:13:00.870 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records in 2024-04-24T17:13:00.870 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records out 2024-04-24T17:13:00.870 INFO:teuthology.orchestra.run.smithi105.stderr:512 bytes copied, 0.000476844 s, 1.1 MB/s 2024-04-24T17:13:00.871 DEBUG:teuthology.orchestra.run.smithi105:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-04-24T17:13:00.921 DEBUG:teuthology.orchestra.run.smithi105:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-04-24T17:13:00.972 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:00 smithi105 bash[20254]: cluster 2024-04-24T17:13:00.203654+0000 mgr.smithi028.zkmzde (mgr.14197) 41 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:00.972 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:00 smithi105 bash[20254]: cluster 2024-04-24T17:13:00.203654+0000 mgr.smithi028.zkmzde (mgr.14197) 41 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:00.972 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:00 smithi105 bash[20254]: audit 2024-04-24T17:13:00.679055+0000 mon.smithi028 (mon.0) 310 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:00.972 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:00 smithi105 bash[20254]: audit 2024-04-24T17:13:00.679055+0000 mon.smithi028 (mon.0) 310 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:00.972 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:00 smithi105 bash[20254]: audit 2024-04-24T17:13:00.731529+0000 mon.smithi028 (mon.0) 311 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi028.zkmzde", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T17:13:00.972 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:00 smithi105 bash[20254]: audit 2024-04-24T17:13:00.731529+0000 mon.smithi028 (mon.0) 311 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi028.zkmzde", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T17:13:00.972 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:00 smithi105 bash[20254]: audit 2024-04-24T17:13:00.733664+0000 mon.smithi028 (mon.0) 312 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T17:13:00.972 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:00 smithi105 bash[20254]: audit 2024-04-24T17:13:00.733664+0000 mon.smithi028 (mon.0) 312 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T17:13:00.972 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:00 smithi105 bash[20254]: audit 2024-04-24T17:13:00.735436+0000 mon.smithi028 (mon.0) 313 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:00.972 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:00 smithi105 bash[20254]: audit 2024-04-24T17:13:00.735436+0000 mon.smithi028 (mon.0) 313 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:01.182 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:00 smithi028 bash[18631]: cluster 2024-04-24T17:13:00.203654+0000 mgr.smithi028.zkmzde (mgr.14197) 41 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:01.182 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:00 smithi028 bash[18631]: cluster 2024-04-24T17:13:00.203654+0000 mgr.smithi028.zkmzde (mgr.14197) 41 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:01.182 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:00 smithi028 bash[18631]: audit 2024-04-24T17:13:00.679055+0000 mon.smithi028 (mon.0) 310 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:01.182 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:00 smithi028 bash[18631]: audit 2024-04-24T17:13:00.679055+0000 mon.smithi028 (mon.0) 310 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:01.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:00 smithi028 bash[18631]: audit 2024-04-24T17:13:00.731529+0000 mon.smithi028 (mon.0) 311 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi028.zkmzde", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T17:13:01.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:00 smithi028 bash[18631]: audit 2024-04-24T17:13:00.731529+0000 mon.smithi028 (mon.0) 311 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi028.zkmzde", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T17:13:01.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:00 smithi028 bash[18631]: audit 2024-04-24T17:13:00.733664+0000 mon.smithi028 (mon.0) 312 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T17:13:01.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:00 smithi028 bash[18631]: audit 2024-04-24T17:13:00.733664+0000 mon.smithi028 (mon.0) 312 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T17:13:01.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:00 smithi028 bash[18631]: audit 2024-04-24T17:13:00.735436+0000 mon.smithi028 (mon.0) 313 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:01.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:00 smithi028 bash[18631]: audit 2024-04-24T17:13:00.735436+0000 mon.smithi028 (mon.0) 313 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:02.228 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:01 smithi028 bash[18631]: cephadm 2024-04-24T17:13:00.730858+0000 mgr.smithi028.zkmzde (mgr.14197) 42 : cephadm [INF] Reconfiguring mgr.smithi028.zkmzde (unknown last config time)... 2024-04-24T17:13:02.228 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:01 smithi028 bash[18631]: cephadm 2024-04-24T17:13:00.730858+0000 mgr.smithi028.zkmzde (mgr.14197) 42 : cephadm [INF] Reconfiguring mgr.smithi028.zkmzde (unknown last config time)... 2024-04-24T17:13:02.228 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:01 smithi028 bash[18631]: cephadm 2024-04-24T17:13:00.737486+0000 mgr.smithi028.zkmzde (mgr.14197) 43 : cephadm [INF] Reconfiguring daemon mgr.smithi028.zkmzde on smithi028 2024-04-24T17:13:02.228 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:01 smithi028 bash[18631]: cephadm 2024-04-24T17:13:00.737486+0000 mgr.smithi028.zkmzde (mgr.14197) 43 : cephadm [INF] Reconfiguring daemon mgr.smithi028.zkmzde on smithi028 2024-04-24T17:13:02.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:01 smithi105 bash[20254]: cephadm 2024-04-24T17:13:00.730858+0000 mgr.smithi028.zkmzde (mgr.14197) 42 : cephadm [INF] Reconfiguring mgr.smithi028.zkmzde (unknown last config time)... 2024-04-24T17:13:02.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:01 smithi105 bash[20254]: cephadm 2024-04-24T17:13:00.730858+0000 mgr.smithi028.zkmzde (mgr.14197) 42 : cephadm [INF] Reconfiguring mgr.smithi028.zkmzde (unknown last config time)... 2024-04-24T17:13:02.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:01 smithi105 bash[20254]: cephadm 2024-04-24T17:13:00.737486+0000 mgr.smithi028.zkmzde (mgr.14197) 43 : cephadm [INF] Reconfiguring daemon mgr.smithi028.zkmzde on smithi028 2024-04-24T17:13:02.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:01 smithi105 bash[20254]: cephadm 2024-04-24T17:13:00.737486+0000 mgr.smithi028.zkmzde (mgr.14197) 43 : cephadm [INF] Reconfiguring daemon mgr.smithi028.zkmzde on smithi028 2024-04-24T17:13:03.093 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:02 smithi028 bash[18631]: cluster 2024-04-24T17:13:02.204668+0000 mgr.smithi028.zkmzde (mgr.14197) 44 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:03.094 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:02 smithi028 bash[18631]: cluster 2024-04-24T17:13:02.204668+0000 mgr.smithi028.zkmzde (mgr.14197) 44 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:03.094 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:02 smithi028 bash[18631]: audit 2024-04-24T17:13:02.642252+0000 mon.smithi028 (mon.0) 314 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:03.094 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:02 smithi028 bash[18631]: audit 2024-04-24T17:13:02.642252+0000 mon.smithi028 (mon.0) 314 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:03.094 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:02 smithi028 bash[18631]: audit 2024-04-24T17:13:02.658070+0000 mon.smithi028 (mon.0) 315 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi028", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:13:03.094 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:02 smithi028 bash[18631]: audit 2024-04-24T17:13:02.658070+0000 mon.smithi028 (mon.0) 315 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi028", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:13:03.094 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:02 smithi028 bash[18631]: audit 2024-04-24T17:13:02.660011+0000 mon.smithi028 (mon.0) 316 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:03.094 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:02 smithi028 bash[18631]: audit 2024-04-24T17:13:02.660011+0000 mon.smithi028 (mon.0) 316 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:03.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:02 smithi105 bash[20254]: cluster 2024-04-24T17:13:02.204668+0000 mgr.smithi028.zkmzde (mgr.14197) 44 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:03.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:02 smithi105 bash[20254]: cluster 2024-04-24T17:13:02.204668+0000 mgr.smithi028.zkmzde (mgr.14197) 44 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:03.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:02 smithi105 bash[20254]: audit 2024-04-24T17:13:02.642252+0000 mon.smithi028 (mon.0) 314 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:03.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:02 smithi105 bash[20254]: audit 2024-04-24T17:13:02.642252+0000 mon.smithi028 (mon.0) 314 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:03.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:02 smithi105 bash[20254]: audit 2024-04-24T17:13:02.658070+0000 mon.smithi028 (mon.0) 315 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi028", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:13:03.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:02 smithi105 bash[20254]: audit 2024-04-24T17:13:02.658070+0000 mon.smithi028 (mon.0) 315 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi028", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:13:03.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:02 smithi105 bash[20254]: audit 2024-04-24T17:13:02.660011+0000 mon.smithi028 (mon.0) 316 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:03.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:02 smithi105 bash[20254]: audit 2024-04-24T17:13:02.660011+0000 mon.smithi028 (mon.0) 316 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:04.267 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:03 smithi028 bash[18631]: cephadm 2024-04-24T17:13:02.657329+0000 mgr.smithi028.zkmzde (mgr.14197) 45 : cephadm [INF] Reconfiguring ceph-exporter.smithi028 (monmap changed)... 2024-04-24T17:13:04.267 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:03 smithi028 bash[18631]: cephadm 2024-04-24T17:13:02.657329+0000 mgr.smithi028.zkmzde (mgr.14197) 45 : cephadm [INF] Reconfiguring ceph-exporter.smithi028 (monmap changed)... 2024-04-24T17:13:04.267 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:03 smithi028 bash[18631]: cephadm 2024-04-24T17:13:02.661716+0000 mgr.smithi028.zkmzde (mgr.14197) 46 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi028 on smithi028 2024-04-24T17:13:04.267 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:03 smithi028 bash[18631]: cephadm 2024-04-24T17:13:02.661716+0000 mgr.smithi028.zkmzde (mgr.14197) 46 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi028 on smithi028 2024-04-24T17:13:04.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:03 smithi105 bash[20254]: cephadm 2024-04-24T17:13:02.657329+0000 mgr.smithi028.zkmzde (mgr.14197) 45 : cephadm [INF] Reconfiguring ceph-exporter.smithi028 (monmap changed)... 2024-04-24T17:13:04.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:03 smithi105 bash[20254]: cephadm 2024-04-24T17:13:02.657329+0000 mgr.smithi028.zkmzde (mgr.14197) 45 : cephadm [INF] Reconfiguring ceph-exporter.smithi028 (monmap changed)... 2024-04-24T17:13:04.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:03 smithi105 bash[20254]: cephadm 2024-04-24T17:13:02.661716+0000 mgr.smithi028.zkmzde (mgr.14197) 46 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi028 on smithi028 2024-04-24T17:13:04.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:03 smithi105 bash[20254]: cephadm 2024-04-24T17:13:02.661716+0000 mgr.smithi028.zkmzde (mgr.14197) 46 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi028 on smithi028 2024-04-24T17:13:05.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:04 smithi105 bash[20254]: cluster 2024-04-24T17:13:04.205735+0000 mgr.smithi028.zkmzde (mgr.14197) 47 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:05.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:04 smithi105 bash[20254]: cluster 2024-04-24T17:13:04.205735+0000 mgr.smithi028.zkmzde (mgr.14197) 47 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:05.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:04 smithi105 bash[20254]: audit 2024-04-24T17:13:04.575602+0000 mon.smithi028 (mon.0) 317 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:05.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:04 smithi105 bash[20254]: audit 2024-04-24T17:13:04.575602+0000 mon.smithi028 (mon.0) 317 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:05.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:04 smithi105 bash[20254]: audit 2024-04-24T17:13:04.580645+0000 mon.smithi028 (mon.0) 318 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi028", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:13:05.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:04 smithi105 bash[20254]: audit 2024-04-24T17:13:04.580645+0000 mon.smithi028 (mon.0) 318 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi028", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:13:05.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:04 smithi105 bash[20254]: audit 2024-04-24T17:13:04.582156+0000 mon.smithi028 (mon.0) 319 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:05.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:04 smithi105 bash[20254]: audit 2024-04-24T17:13:04.582156+0000 mon.smithi028 (mon.0) 319 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:05.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:04 smithi028 bash[18631]: cluster 2024-04-24T17:13:04.205735+0000 mgr.smithi028.zkmzde (mgr.14197) 47 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:05.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:04 smithi028 bash[18631]: cluster 2024-04-24T17:13:04.205735+0000 mgr.smithi028.zkmzde (mgr.14197) 47 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:05.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:04 smithi028 bash[18631]: audit 2024-04-24T17:13:04.575602+0000 mon.smithi028 (mon.0) 317 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:05.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:04 smithi028 bash[18631]: audit 2024-04-24T17:13:04.575602+0000 mon.smithi028 (mon.0) 317 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:05.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:04 smithi028 bash[18631]: audit 2024-04-24T17:13:04.580645+0000 mon.smithi028 (mon.0) 318 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi028", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:13:05.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:04 smithi028 bash[18631]: audit 2024-04-24T17:13:04.580645+0000 mon.smithi028 (mon.0) 318 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi028", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:13:05.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:04 smithi028 bash[18631]: audit 2024-04-24T17:13:04.582156+0000 mon.smithi028 (mon.0) 319 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:05.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:04 smithi028 bash[18631]: audit 2024-04-24T17:13:04.582156+0000 mon.smithi028 (mon.0) 319 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:05.702 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi105/config 2024-04-24T17:13:06.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:05 smithi105 bash[20254]: cephadm 2024-04-24T17:13:04.580125+0000 mgr.smithi028.zkmzde (mgr.14197) 48 : cephadm [INF] Reconfiguring crash.smithi028 (monmap changed)... 2024-04-24T17:13:06.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:05 smithi105 bash[20254]: cephadm 2024-04-24T17:13:04.580125+0000 mgr.smithi028.zkmzde (mgr.14197) 48 : cephadm [INF] Reconfiguring crash.smithi028 (monmap changed)... 2024-04-24T17:13:06.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:05 smithi105 bash[20254]: cephadm 2024-04-24T17:13:04.583811+0000 mgr.smithi028.zkmzde (mgr.14197) 49 : cephadm [INF] Reconfiguring daemon crash.smithi028 on smithi028 2024-04-24T17:13:06.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:05 smithi105 bash[20254]: cephadm 2024-04-24T17:13:04.583811+0000 mgr.smithi028.zkmzde (mgr.14197) 49 : cephadm [INF] Reconfiguring daemon crash.smithi028 on smithi028 2024-04-24T17:13:06.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:05 smithi028 bash[18631]: cephadm 2024-04-24T17:13:04.580125+0000 mgr.smithi028.zkmzde (mgr.14197) 48 : cephadm [INF] Reconfiguring crash.smithi028 (monmap changed)... 2024-04-24T17:13:06.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:05 smithi028 bash[18631]: cephadm 2024-04-24T17:13:04.580125+0000 mgr.smithi028.zkmzde (mgr.14197) 48 : cephadm [INF] Reconfiguring crash.smithi028 (monmap changed)... 2024-04-24T17:13:06.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:05 smithi028 bash[18631]: cephadm 2024-04-24T17:13:04.583811+0000 mgr.smithi028.zkmzde (mgr.14197) 49 : cephadm [INF] Reconfiguring daemon crash.smithi028 on smithi028 2024-04-24T17:13:06.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:05 smithi028 bash[18631]: cephadm 2024-04-24T17:13:04.583811+0000 mgr.smithi028.zkmzde (mgr.14197) 49 : cephadm [INF] Reconfiguring daemon crash.smithi028 on smithi028 2024-04-24T17:13:07.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:06 smithi105 bash[20254]: cluster 2024-04-24T17:13:06.206745+0000 mgr.smithi028.zkmzde (mgr.14197) 50 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:07.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:06 smithi105 bash[20254]: cluster 2024-04-24T17:13:06.206745+0000 mgr.smithi028.zkmzde (mgr.14197) 50 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:07.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:06 smithi105 bash[20254]: audit 2024-04-24T17:13:06.487181+0000 mon.smithi028 (mon.0) 320 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:07.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:06 smithi105 bash[20254]: audit 2024-04-24T17:13:06.487181+0000 mon.smithi028 (mon.0) 320 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:07.051 INFO:teuthology.orchestra.run.smithi105.stdout:Scheduled osd.all-available-devices update... 2024-04-24T17:13:07.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:06 smithi028 bash[18631]: cluster 2024-04-24T17:13:06.206745+0000 mgr.smithi028.zkmzde (mgr.14197) 50 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:07.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:06 smithi028 bash[18631]: cluster 2024-04-24T17:13:06.206745+0000 mgr.smithi028.zkmzde (mgr.14197) 50 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:07.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:06 smithi028 bash[18631]: audit 2024-04-24T17:13:06.487181+0000 mon.smithi028 (mon.0) 320 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:07.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:06 smithi028 bash[18631]: audit 2024-04-24T17:13:06.487181+0000 mon.smithi028 (mon.0) 320 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:07.693 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-04-24T17:13:07.694 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:13:08.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: cephadm 2024-04-24T17:13:06.503712+0000 mgr.smithi028.zkmzde (mgr.14197) 51 : cephadm [INF] Reconfiguring alertmanager.smithi028 (dependencies changed)... 2024-04-24T17:13:08.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: cephadm 2024-04-24T17:13:06.503712+0000 mgr.smithi028.zkmzde (mgr.14197) 51 : cephadm [INF] Reconfiguring alertmanager.smithi028 (dependencies changed)... 2024-04-24T17:13:08.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: cephadm 2024-04-24T17:13:06.520311+0000 mgr.smithi028.zkmzde (mgr.14197) 52 : cephadm [INF] Reconfiguring daemon alertmanager.smithi028 on smithi028 2024-04-24T17:13:08.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: cephadm 2024-04-24T17:13:06.520311+0000 mgr.smithi028.zkmzde (mgr.14197) 52 : cephadm [INF] Reconfiguring daemon alertmanager.smithi028 on smithi028 2024-04-24T17:13:08.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: audit 2024-04-24T17:13:07.042195+0000 mgr.smithi028.zkmzde (mgr.14197) 53 : audit [DBG] from='client.14230 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:13:08.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: audit 2024-04-24T17:13:07.042195+0000 mgr.smithi028.zkmzde (mgr.14197) 53 : audit [DBG] from='client.14230 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:13:08.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: cephadm 2024-04-24T17:13:07.044212+0000 mgr.smithi028.zkmzde (mgr.14197) 54 : cephadm [INF] Marking host: smithi028 for OSDSpec preview refresh. 2024-04-24T17:13:08.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: cephadm 2024-04-24T17:13:07.044212+0000 mgr.smithi028.zkmzde (mgr.14197) 54 : cephadm [INF] Marking host: smithi028 for OSDSpec preview refresh. 2024-04-24T17:13:08.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: cephadm 2024-04-24T17:13:07.044280+0000 mgr.smithi028.zkmzde (mgr.14197) 55 : cephadm [INF] Marking host: smithi105 for OSDSpec preview refresh. 2024-04-24T17:13:08.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: cephadm 2024-04-24T17:13:07.044280+0000 mgr.smithi028.zkmzde (mgr.14197) 55 : cephadm [INF] Marking host: smithi105 for OSDSpec preview refresh. 2024-04-24T17:13:08.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: cephadm 2024-04-24T17:13:07.044627+0000 mgr.smithi028.zkmzde (mgr.14197) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-04-24T17:13:08.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: cephadm 2024-04-24T17:13:07.044627+0000 mgr.smithi028.zkmzde (mgr.14197) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-04-24T17:13:08.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: audit 2024-04-24T17:13:07.051856+0000 mon.smithi028 (mon.0) 321 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:08.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:08 smithi105 bash[20254]: audit 2024-04-24T17:13:07.051856+0000 mon.smithi028 (mon.0) 321 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:08.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: cephadm 2024-04-24T17:13:06.503712+0000 mgr.smithi028.zkmzde (mgr.14197) 51 : cephadm [INF] Reconfiguring alertmanager.smithi028 (dependencies changed)... 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: cephadm 2024-04-24T17:13:06.503712+0000 mgr.smithi028.zkmzde (mgr.14197) 51 : cephadm [INF] Reconfiguring alertmanager.smithi028 (dependencies changed)... 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: cephadm 2024-04-24T17:13:06.520311+0000 mgr.smithi028.zkmzde (mgr.14197) 52 : cephadm [INF] Reconfiguring daemon alertmanager.smithi028 on smithi028 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: cephadm 2024-04-24T17:13:06.520311+0000 mgr.smithi028.zkmzde (mgr.14197) 52 : cephadm [INF] Reconfiguring daemon alertmanager.smithi028 on smithi028 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: audit 2024-04-24T17:13:07.042195+0000 mgr.smithi028.zkmzde (mgr.14197) 53 : audit [DBG] from='client.14230 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: audit 2024-04-24T17:13:07.042195+0000 mgr.smithi028.zkmzde (mgr.14197) 53 : audit [DBG] from='client.14230 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: cephadm 2024-04-24T17:13:07.044212+0000 mgr.smithi028.zkmzde (mgr.14197) 54 : cephadm [INF] Marking host: smithi028 for OSDSpec preview refresh. 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: cephadm 2024-04-24T17:13:07.044212+0000 mgr.smithi028.zkmzde (mgr.14197) 54 : cephadm [INF] Marking host: smithi028 for OSDSpec preview refresh. 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: cephadm 2024-04-24T17:13:07.044280+0000 mgr.smithi028.zkmzde (mgr.14197) 55 : cephadm [INF] Marking host: smithi105 for OSDSpec preview refresh. 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: cephadm 2024-04-24T17:13:07.044280+0000 mgr.smithi028.zkmzde (mgr.14197) 55 : cephadm [INF] Marking host: smithi105 for OSDSpec preview refresh. 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: cephadm 2024-04-24T17:13:07.044627+0000 mgr.smithi028.zkmzde (mgr.14197) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: cephadm 2024-04-24T17:13:07.044627+0000 mgr.smithi028.zkmzde (mgr.14197) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: audit 2024-04-24T17:13:07.051856+0000 mon.smithi028 (mon.0) 321 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:08.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:08 smithi028 bash[18631]: audit 2024-04-24T17:13:07.051856+0000 mon.smithi028 (mon.0) 321 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:09.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:09 smithi028 bash[18631]: cluster 2024-04-24T17:13:08.207728+0000 mgr.smithi028.zkmzde (mgr.14197) 57 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:09.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:09 smithi028 bash[18631]: cluster 2024-04-24T17:13:08.207728+0000 mgr.smithi028.zkmzde (mgr.14197) 57 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:09.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:09 smithi105 bash[20254]: cluster 2024-04-24T17:13:08.207728+0000 mgr.smithi028.zkmzde (mgr.14197) 57 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:09.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:09 smithi105 bash[20254]: cluster 2024-04-24T17:13:08.207728+0000 mgr.smithi028.zkmzde (mgr.14197) 57 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:10.577 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:10 smithi028 bash[18631]: cluster 2024-04-24T17:13:10.208314+0000 mgr.smithi028.zkmzde (mgr.14197) 58 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:10.577 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:10 smithi028 bash[18631]: cluster 2024-04-24T17:13:10.208314+0000 mgr.smithi028.zkmzde (mgr.14197) 58 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:10.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:10 smithi105 bash[20254]: cluster 2024-04-24T17:13:10.208314+0000 mgr.smithi028.zkmzde (mgr.14197) 58 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:10.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:10 smithi105 bash[20254]: cluster 2024-04-24T17:13:10.208314+0000 mgr.smithi028.zkmzde (mgr.14197) 58 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:12.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:11 smithi105 bash[20254]: audit 2024-04-24T17:13:10.822232+0000 mon.smithi028 (mon.0) 322 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:12.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:11 smithi105 bash[20254]: audit 2024-04-24T17:13:10.822232+0000 mon.smithi028 (mon.0) 322 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:12.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:11 smithi105 bash[20254]: cephadm 2024-04-24T17:13:10.846227+0000 mgr.smithi028.zkmzde (mgr.14197) 59 : cephadm [INF] Reconfiguring grafana.smithi028 (dependencies changed)... 2024-04-24T17:13:12.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:11 smithi105 bash[20254]: cephadm 2024-04-24T17:13:10.846227+0000 mgr.smithi028.zkmzde (mgr.14197) 59 : cephadm [INF] Reconfiguring grafana.smithi028 (dependencies changed)... 2024-04-24T17:13:12.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:11 smithi105 bash[20254]: cephadm 2024-04-24T17:13:10.863440+0000 mgr.smithi028.zkmzde (mgr.14197) 60 : cephadm [INF] Reconfiguring daemon grafana.smithi028 on smithi028 2024-04-24T17:13:12.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:11 smithi105 bash[20254]: cephadm 2024-04-24T17:13:10.863440+0000 mgr.smithi028.zkmzde (mgr.14197) 60 : cephadm [INF] Reconfiguring daemon grafana.smithi028 on smithi028 2024-04-24T17:13:12.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:11 smithi028 bash[18631]: audit 2024-04-24T17:13:10.822232+0000 mon.smithi028 (mon.0) 322 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:12.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:11 smithi028 bash[18631]: audit 2024-04-24T17:13:10.822232+0000 mon.smithi028 (mon.0) 322 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:12.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:11 smithi028 bash[18631]: cephadm 2024-04-24T17:13:10.846227+0000 mgr.smithi028.zkmzde (mgr.14197) 59 : cephadm [INF] Reconfiguring grafana.smithi028 (dependencies changed)... 2024-04-24T17:13:12.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:11 smithi028 bash[18631]: cephadm 2024-04-24T17:13:10.846227+0000 mgr.smithi028.zkmzde (mgr.14197) 59 : cephadm [INF] Reconfiguring grafana.smithi028 (dependencies changed)... 2024-04-24T17:13:12.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:11 smithi028 bash[18631]: cephadm 2024-04-24T17:13:10.863440+0000 mgr.smithi028.zkmzde (mgr.14197) 60 : cephadm [INF] Reconfiguring daemon grafana.smithi028 on smithi028 2024-04-24T17:13:12.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:11 smithi028 bash[18631]: cephadm 2024-04-24T17:13:10.863440+0000 mgr.smithi028.zkmzde (mgr.14197) 60 : cephadm [INF] Reconfiguring daemon grafana.smithi028 on smithi028 2024-04-24T17:13:12.464 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:13:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:12 smithi105 bash[20254]: cluster 2024-04-24T17:13:12.209323+0000 mgr.smithi028.zkmzde (mgr.14197) 61 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:12 smithi105 bash[20254]: cluster 2024-04-24T17:13:12.209323+0000 mgr.smithi028.zkmzde (mgr.14197) 61 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:12 smithi105 bash[20254]: audit 2024-04-24T17:13:12.817552+0000 mon.smithi028 (mon.0) 323 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:12 smithi105 bash[20254]: audit 2024-04-24T17:13:12.817552+0000 mon.smithi028 (mon.0) 323 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:13.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:12 smithi028 bash[18631]: cluster 2024-04-24T17:13:12.209323+0000 mgr.smithi028.zkmzde (mgr.14197) 61 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:13.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:12 smithi028 bash[18631]: cluster 2024-04-24T17:13:12.209323+0000 mgr.smithi028.zkmzde (mgr.14197) 61 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:13.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:12 smithi028 bash[18631]: audit 2024-04-24T17:13:12.817552+0000 mon.smithi028 (mon.0) 323 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:13.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:12 smithi028 bash[18631]: audit 2024-04-24T17:13:12.817552+0000 mon.smithi028 (mon.0) 323 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:14.221 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:13:14.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:14 smithi028 bash[18631]: cluster 2024-04-24T17:13:14.210299+0000 mgr.smithi028.zkmzde (mgr.14197) 62 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:14.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:14 smithi028 bash[18631]: cluster 2024-04-24T17:13:14.210299+0000 mgr.smithi028.zkmzde (mgr.14197) 62 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:14.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:14 smithi028 bash[18631]: audit 2024-04-24T17:13:14.222489+0000 mon.smithi028 (mon.0) 324 : audit [DBG] from='client.? 172.21.15.28:0/2611656386' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:14.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:14 smithi028 bash[18631]: audit 2024-04-24T17:13:14.222489+0000 mon.smithi028 (mon.0) 324 : audit [DBG] from='client.? 172.21.15.28:0/2611656386' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:14.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:14 smithi105 bash[20254]: cluster 2024-04-24T17:13:14.210299+0000 mgr.smithi028.zkmzde (mgr.14197) 62 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:14.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:14 smithi105 bash[20254]: cluster 2024-04-24T17:13:14.210299+0000 mgr.smithi028.zkmzde (mgr.14197) 62 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:14.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:14 smithi105 bash[20254]: audit 2024-04-24T17:13:14.222489+0000 mon.smithi028 (mon.0) 324 : audit [DBG] from='client.? 172.21.15.28:0/2611656386' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:14.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:14 smithi105 bash[20254]: audit 2024-04-24T17:13:14.222489+0000 mon.smithi028 (mon.0) 324 : audit [DBG] from='client.? 172.21.15.28:0/2611656386' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:15.190 INFO:teuthology.orchestra.run.smithi028.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-24T17:13:16.191 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:13:16.426 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:16 smithi028 bash[18631]: cluster 2024-04-24T17:13:16.211308+0000 mgr.smithi028.zkmzde (mgr.14197) 63 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:16.426 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:16 smithi028 bash[18631]: cluster 2024-04-24T17:13:16.211308+0000 mgr.smithi028.zkmzde (mgr.14197) 63 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:16.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:16 smithi105 bash[20254]: cluster 2024-04-24T17:13:16.211308+0000 mgr.smithi028.zkmzde (mgr.14197) 63 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:16.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:16 smithi105 bash[20254]: cluster 2024-04-24T17:13:16.211308+0000 mgr.smithi028.zkmzde (mgr.14197) 63 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:17.811 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:17 smithi028 bash[18631]: audit 2024-04-24T17:13:16.675630+0000 mon.smithi028 (mon.0) 325 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:17.811 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:17 smithi028 bash[18631]: audit 2024-04-24T17:13:16.675630+0000 mon.smithi028 (mon.0) 325 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:17.811 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:17 smithi028 bash[18631]: cephadm 2024-04-24T17:13:16.712571+0000 mgr.smithi028.zkmzde (mgr.14197) 64 : cephadm [INF] Reconfiguring prometheus.smithi028 (dependencies changed)... 2024-04-24T17:13:17.811 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:17 smithi028 bash[18631]: cephadm 2024-04-24T17:13:16.712571+0000 mgr.smithi028.zkmzde (mgr.14197) 64 : cephadm [INF] Reconfiguring prometheus.smithi028 (dependencies changed)... 2024-04-24T17:13:17.811 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:17 smithi028 bash[18631]: cephadm 2024-04-24T17:13:16.971548+0000 mgr.smithi028.zkmzde (mgr.14197) 65 : cephadm [INF] Reconfiguring daemon prometheus.smithi028 on smithi028 2024-04-24T17:13:17.811 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:17 smithi028 bash[18631]: cephadm 2024-04-24T17:13:16.971548+0000 mgr.smithi028.zkmzde (mgr.14197) 65 : cephadm [INF] Reconfiguring daemon prometheus.smithi028 on smithi028 2024-04-24T17:13:18.004 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:17 smithi105 bash[20254]: audit 2024-04-24T17:13:16.675630+0000 mon.smithi028 (mon.0) 325 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:18.004 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:17 smithi105 bash[20254]: audit 2024-04-24T17:13:16.675630+0000 mon.smithi028 (mon.0) 325 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:18.004 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:17 smithi105 bash[20254]: cephadm 2024-04-24T17:13:16.712571+0000 mgr.smithi028.zkmzde (mgr.14197) 64 : cephadm [INF] Reconfiguring prometheus.smithi028 (dependencies changed)... 2024-04-24T17:13:18.004 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:17 smithi105 bash[20254]: cephadm 2024-04-24T17:13:16.712571+0000 mgr.smithi028.zkmzde (mgr.14197) 64 : cephadm [INF] Reconfiguring prometheus.smithi028 (dependencies changed)... 2024-04-24T17:13:18.005 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:17 smithi105 bash[20254]: cephadm 2024-04-24T17:13:16.971548+0000 mgr.smithi028.zkmzde (mgr.14197) 65 : cephadm [INF] Reconfiguring daemon prometheus.smithi028 on smithi028 2024-04-24T17:13:18.005 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:17 smithi105 bash[20254]: cephadm 2024-04-24T17:13:16.971548+0000 mgr.smithi028.zkmzde (mgr.14197) 65 : cephadm [INF] Reconfiguring daemon prometheus.smithi028 on smithi028 2024-04-24T17:13:18.942 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:18 smithi028 bash[18631]: cluster 2024-04-24T17:13:18.211806+0000 mgr.smithi028.zkmzde (mgr.14197) 66 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:18.942 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:18 smithi028 bash[18631]: cluster 2024-04-24T17:13:18.211806+0000 mgr.smithi028.zkmzde (mgr.14197) 66 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:19.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:18 smithi105 bash[20254]: cluster 2024-04-24T17:13:18.211806+0000 mgr.smithi028.zkmzde (mgr.14197) 66 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:19.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:18 smithi105 bash[20254]: cluster 2024-04-24T17:13:18.211806+0000 mgr.smithi028.zkmzde (mgr.14197) 66 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:20.682 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:20 smithi028 bash[18631]: cluster 2024-04-24T17:13:20.212785+0000 mgr.smithi028.zkmzde (mgr.14197) 67 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:20.683 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:20 smithi028 bash[18631]: cluster 2024-04-24T17:13:20.212785+0000 mgr.smithi028.zkmzde (mgr.14197) 67 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:20.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:20 smithi105 bash[20254]: cluster 2024-04-24T17:13:20.212785+0000 mgr.smithi028.zkmzde (mgr.14197) 67 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:20.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:20 smithi105 bash[20254]: cluster 2024-04-24T17:13:20.212785+0000 mgr.smithi028.zkmzde (mgr.14197) 67 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:21.960 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:13:22.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:22 smithi028 bash[18631]: audit 2024-04-24T17:13:21.321552+0000 mon.smithi028 (mon.0) 326 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:22.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:22 smithi028 bash[18631]: audit 2024-04-24T17:13:21.321552+0000 mon.smithi028 (mon.0) 326 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:22.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:22 smithi028 bash[18631]: cephadm 2024-04-24T17:13:21.353776+0000 mgr.smithi028.zkmzde (mgr.14197) 68 : cephadm [INF] Reconfiguring ceph-exporter.smithi105 (monmap changed)... 2024-04-24T17:13:22.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:22 smithi028 bash[18631]: cephadm 2024-04-24T17:13:21.353776+0000 mgr.smithi028.zkmzde (mgr.14197) 68 : cephadm [INF] Reconfiguring ceph-exporter.smithi105 (monmap changed)... 2024-04-24T17:13:22.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:22 smithi028 bash[18631]: audit 2024-04-24T17:13:21.354176+0000 mon.smithi028 (mon.0) 327 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi105", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:13:22.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:22 smithi028 bash[18631]: audit 2024-04-24T17:13:21.354176+0000 mon.smithi028 (mon.0) 327 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi105", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:13:22.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:22 smithi028 bash[18631]: audit 2024-04-24T17:13:21.355070+0000 mon.smithi028 (mon.0) 328 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:22.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:22 smithi028 bash[18631]: audit 2024-04-24T17:13:21.355070+0000 mon.smithi028 (mon.0) 328 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:22.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:22 smithi028 bash[18631]: cephadm 2024-04-24T17:13:21.355946+0000 mgr.smithi028.zkmzde (mgr.14197) 69 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi105 on smithi105 2024-04-24T17:13:22.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:22 smithi028 bash[18631]: cephadm 2024-04-24T17:13:21.355946+0000 mgr.smithi028.zkmzde (mgr.14197) 69 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi105 on smithi105 2024-04-24T17:13:22.537 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:22 smithi028 bash[18631]: cluster 2024-04-24T17:13:22.213298+0000 mgr.smithi028.zkmzde (mgr.14197) 70 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:22.537 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:22 smithi028 bash[18631]: cluster 2024-04-24T17:13:22.213298+0000 mgr.smithi028.zkmzde (mgr.14197) 70 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:22.626 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:22 smithi105 bash[20254]: audit 2024-04-24T17:13:21.321552+0000 mon.smithi028 (mon.0) 326 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:22.626 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:22 smithi105 bash[20254]: audit 2024-04-24T17:13:21.321552+0000 mon.smithi028 (mon.0) 326 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:22.626 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:22 smithi105 bash[20254]: cephadm 2024-04-24T17:13:21.353776+0000 mgr.smithi028.zkmzde (mgr.14197) 68 : cephadm [INF] Reconfiguring ceph-exporter.smithi105 (monmap changed)... 2024-04-24T17:13:22.626 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:22 smithi105 bash[20254]: cephadm 2024-04-24T17:13:21.353776+0000 mgr.smithi028.zkmzde (mgr.14197) 68 : cephadm [INF] Reconfiguring ceph-exporter.smithi105 (monmap changed)... 2024-04-24T17:13:22.626 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:22 smithi105 bash[20254]: audit 2024-04-24T17:13:21.354176+0000 mon.smithi028 (mon.0) 327 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi105", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:13:22.626 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:22 smithi105 bash[20254]: audit 2024-04-24T17:13:21.354176+0000 mon.smithi028 (mon.0) 327 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi105", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-04-24T17:13:22.626 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:22 smithi105 bash[20254]: audit 2024-04-24T17:13:21.355070+0000 mon.smithi028 (mon.0) 328 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:22.627 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:22 smithi105 bash[20254]: audit 2024-04-24T17:13:21.355070+0000 mon.smithi028 (mon.0) 328 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:22.627 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:22 smithi105 bash[20254]: cephadm 2024-04-24T17:13:21.355946+0000 mgr.smithi028.zkmzde (mgr.14197) 69 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi105 on smithi105 2024-04-24T17:13:22.627 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:22 smithi105 bash[20254]: cephadm 2024-04-24T17:13:21.355946+0000 mgr.smithi028.zkmzde (mgr.14197) 69 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi105 on smithi105 2024-04-24T17:13:22.627 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:22 smithi105 bash[20254]: cluster 2024-04-24T17:13:22.213298+0000 mgr.smithi028.zkmzde (mgr.14197) 70 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:22.627 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:22 smithi105 bash[20254]: cluster 2024-04-24T17:13:22.213298+0000 mgr.smithi028.zkmzde (mgr.14197) 70 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:23.145 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:13:23.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:23 smithi028 bash[18631]: audit 2024-04-24T17:13:23.146510+0000 mon.smithi028 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.28:0/2076865728' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:23.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:23 smithi028 bash[18631]: audit 2024-04-24T17:13:23.146510+0000 mon.smithi028 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.28:0/2076865728' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:23.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:23 smithi028 bash[18631]: audit 2024-04-24T17:13:23.226443+0000 mon.smithi028 (mon.0) 330 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:23.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:23 smithi028 bash[18631]: audit 2024-04-24T17:13:23.226443+0000 mon.smithi028 (mon.0) 330 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:23.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:23 smithi028 bash[18631]: audit 2024-04-24T17:13:23.274375+0000 mon.smithi028 (mon.0) 331 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi105", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:13:23.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:23 smithi028 bash[18631]: audit 2024-04-24T17:13:23.274375+0000 mon.smithi028 (mon.0) 331 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi105", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:13:23.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:23 smithi028 bash[18631]: audit 2024-04-24T17:13:23.275810+0000 mon.smithi028 (mon.0) 332 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:23.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:23 smithi028 bash[18631]: audit 2024-04-24T17:13:23.275810+0000 mon.smithi028 (mon.0) 332 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:23.721 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:23 smithi105 bash[20254]: audit 2024-04-24T17:13:23.146510+0000 mon.smithi028 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.28:0/2076865728' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:23.721 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:23 smithi105 bash[20254]: audit 2024-04-24T17:13:23.146510+0000 mon.smithi028 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.28:0/2076865728' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:23.721 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:23 smithi105 bash[20254]: audit 2024-04-24T17:13:23.226443+0000 mon.smithi028 (mon.0) 330 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:23.721 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:23 smithi105 bash[20254]: audit 2024-04-24T17:13:23.226443+0000 mon.smithi028 (mon.0) 330 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:23.721 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:23 smithi105 bash[20254]: audit 2024-04-24T17:13:23.274375+0000 mon.smithi028 (mon.0) 331 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi105", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:13:23.722 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:23 smithi105 bash[20254]: audit 2024-04-24T17:13:23.274375+0000 mon.smithi028 (mon.0) 331 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi105", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-04-24T17:13:23.722 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:23 smithi105 bash[20254]: audit 2024-04-24T17:13:23.275810+0000 mon.smithi028 (mon.0) 332 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:23.722 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:23 smithi105 bash[20254]: audit 2024-04-24T17:13:23.275810+0000 mon.smithi028 (mon.0) 332 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:23.811 INFO:teuthology.orchestra.run.smithi028.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-24T17:13:24.588 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:24 smithi105 bash[20254]: cephadm 2024-04-24T17:13:23.274025+0000 mgr.smithi028.zkmzde (mgr.14197) 71 : cephadm [INF] Reconfiguring crash.smithi105 (monmap changed)... 2024-04-24T17:13:24.588 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:24 smithi105 bash[20254]: cephadm 2024-04-24T17:13:23.274025+0000 mgr.smithi028.zkmzde (mgr.14197) 71 : cephadm [INF] Reconfiguring crash.smithi105 (monmap changed)... 2024-04-24T17:13:24.588 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:24 smithi105 bash[20254]: cephadm 2024-04-24T17:13:23.277339+0000 mgr.smithi028.zkmzde (mgr.14197) 72 : cephadm [INF] Reconfiguring daemon crash.smithi105 on smithi105 2024-04-24T17:13:24.588 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:24 smithi105 bash[20254]: cephadm 2024-04-24T17:13:23.277339+0000 mgr.smithi028.zkmzde (mgr.14197) 72 : cephadm [INF] Reconfiguring daemon crash.smithi105 on smithi105 2024-04-24T17:13:24.588 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:24 smithi105 bash[20254]: cluster 2024-04-24T17:13:24.214236+0000 mgr.smithi028.zkmzde (mgr.14197) 73 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:24.588 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:24 smithi105 bash[20254]: cluster 2024-04-24T17:13:24.214236+0000 mgr.smithi028.zkmzde (mgr.14197) 73 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:24.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:24 smithi028 bash[18631]: cephadm 2024-04-24T17:13:23.274025+0000 mgr.smithi028.zkmzde (mgr.14197) 71 : cephadm [INF] Reconfiguring crash.smithi105 (monmap changed)... 2024-04-24T17:13:24.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:24 smithi028 bash[18631]: cephadm 2024-04-24T17:13:23.274025+0000 mgr.smithi028.zkmzde (mgr.14197) 71 : cephadm [INF] Reconfiguring crash.smithi105 (monmap changed)... 2024-04-24T17:13:24.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:24 smithi028 bash[18631]: cephadm 2024-04-24T17:13:23.277339+0000 mgr.smithi028.zkmzde (mgr.14197) 72 : cephadm [INF] Reconfiguring daemon crash.smithi105 on smithi105 2024-04-24T17:13:24.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:24 smithi028 bash[18631]: cephadm 2024-04-24T17:13:23.277339+0000 mgr.smithi028.zkmzde (mgr.14197) 72 : cephadm [INF] Reconfiguring daemon crash.smithi105 on smithi105 2024-04-24T17:13:24.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:24 smithi028 bash[18631]: cluster 2024-04-24T17:13:24.214236+0000 mgr.smithi028.zkmzde (mgr.14197) 73 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:24.785 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:24 smithi028 bash[18631]: cluster 2024-04-24T17:13:24.214236+0000 mgr.smithi028.zkmzde (mgr.14197) 73 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:24.812 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:13:26.440 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:26 smithi105 bash[20254]: audit 2024-04-24T17:13:25.172261+0000 mon.smithi028 (mon.0) 333 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:26.440 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:26 smithi105 bash[20254]: audit 2024-04-24T17:13:25.172261+0000 mon.smithi028 (mon.0) 333 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:26.440 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:26 smithi105 bash[20254]: cephadm 2024-04-24T17:13:25.197326+0000 mgr.smithi028.zkmzde (mgr.14197) 74 : cephadm [INF] Reconfiguring mgr.smithi105.rmqzvz (monmap changed)... 2024-04-24T17:13:26.440 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:26 smithi105 bash[20254]: cephadm 2024-04-24T17:13:25.197326+0000 mgr.smithi028.zkmzde (mgr.14197) 74 : cephadm [INF] Reconfiguring mgr.smithi105.rmqzvz (monmap changed)... 2024-04-24T17:13:26.440 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:26 smithi105 bash[20254]: audit 2024-04-24T17:13:25.198064+0000 mon.smithi028 (mon.0) 334 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi105.rmqzvz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T17:13:26.440 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:26 smithi105 bash[20254]: audit 2024-04-24T17:13:25.198064+0000 mon.smithi028 (mon.0) 334 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi105.rmqzvz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T17:13:26.440 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:26 smithi105 bash[20254]: audit 2024-04-24T17:13:25.200102+0000 mon.smithi028 (mon.0) 335 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T17:13:26.440 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:26 smithi105 bash[20254]: audit 2024-04-24T17:13:25.200102+0000 mon.smithi028 (mon.0) 335 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T17:13:26.441 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:26 smithi105 bash[20254]: audit 2024-04-24T17:13:25.201783+0000 mon.smithi028 (mon.0) 336 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:26.441 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:26 smithi105 bash[20254]: audit 2024-04-24T17:13:25.201783+0000 mon.smithi028 (mon.0) 336 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:26.441 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:26 smithi105 bash[20254]: cephadm 2024-04-24T17:13:25.203703+0000 mgr.smithi028.zkmzde (mgr.14197) 75 : cephadm [INF] Reconfiguring daemon mgr.smithi105.rmqzvz on smithi105 2024-04-24T17:13:26.441 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:26 smithi105 bash[20254]: cephadm 2024-04-24T17:13:25.203703+0000 mgr.smithi028.zkmzde (mgr.14197) 75 : cephadm [INF] Reconfiguring daemon mgr.smithi105.rmqzvz on smithi105 2024-04-24T17:13:26.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:26 smithi028 bash[18631]: audit 2024-04-24T17:13:25.172261+0000 mon.smithi028 (mon.0) 333 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:26.537 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:26 smithi028 bash[18631]: audit 2024-04-24T17:13:25.172261+0000 mon.smithi028 (mon.0) 333 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:26.537 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:26 smithi028 bash[18631]: cephadm 2024-04-24T17:13:25.197326+0000 mgr.smithi028.zkmzde (mgr.14197) 74 : cephadm [INF] Reconfiguring mgr.smithi105.rmqzvz (monmap changed)... 2024-04-24T17:13:26.537 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:26 smithi028 bash[18631]: cephadm 2024-04-24T17:13:25.197326+0000 mgr.smithi028.zkmzde (mgr.14197) 74 : cephadm [INF] Reconfiguring mgr.smithi105.rmqzvz (monmap changed)... 2024-04-24T17:13:26.537 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:26 smithi028 bash[18631]: audit 2024-04-24T17:13:25.198064+0000 mon.smithi028 (mon.0) 334 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi105.rmqzvz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T17:13:26.538 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:26 smithi028 bash[18631]: audit 2024-04-24T17:13:25.198064+0000 mon.smithi028 (mon.0) 334 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi105.rmqzvz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-24T17:13:26.538 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:26 smithi028 bash[18631]: audit 2024-04-24T17:13:25.200102+0000 mon.smithi028 (mon.0) 335 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T17:13:26.538 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:26 smithi028 bash[18631]: audit 2024-04-24T17:13:25.200102+0000 mon.smithi028 (mon.0) 335 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-24T17:13:26.538 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:26 smithi028 bash[18631]: audit 2024-04-24T17:13:25.201783+0000 mon.smithi028 (mon.0) 336 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:26.538 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:26 smithi028 bash[18631]: audit 2024-04-24T17:13:25.201783+0000 mon.smithi028 (mon.0) 336 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:26.538 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:26 smithi028 bash[18631]: cephadm 2024-04-24T17:13:25.203703+0000 mgr.smithi028.zkmzde (mgr.14197) 75 : cephadm [INF] Reconfiguring daemon mgr.smithi105.rmqzvz on smithi105 2024-04-24T17:13:26.538 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:26 smithi028 bash[18631]: cephadm 2024-04-24T17:13:25.203703+0000 mgr.smithi028.zkmzde (mgr.14197) 75 : cephadm [INF] Reconfiguring daemon mgr.smithi105.rmqzvz on smithi105 2024-04-24T17:13:27.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:27 smithi105 bash[20254]: cluster 2024-04-24T17:13:26.215174+0000 mgr.smithi028.zkmzde (mgr.14197) 76 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:27.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:27 smithi105 bash[20254]: cluster 2024-04-24T17:13:26.215174+0000 mgr.smithi028.zkmzde (mgr.14197) 76 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:27.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:27 smithi105 bash[20254]: audit 2024-04-24T17:13:27.135033+0000 mon.smithi028 (mon.0) 337 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:27.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:27 smithi105 bash[20254]: audit 2024-04-24T17:13:27.135033+0000 mon.smithi028 (mon.0) 337 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:27.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:27 smithi028 bash[18631]: cluster 2024-04-24T17:13:26.215174+0000 mgr.smithi028.zkmzde (mgr.14197) 76 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:27.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:27 smithi028 bash[18631]: cluster 2024-04-24T17:13:26.215174+0000 mgr.smithi028.zkmzde (mgr.14197) 76 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:27.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:27 smithi028 bash[18631]: audit 2024-04-24T17:13:27.135033+0000 mon.smithi028 (mon.0) 337 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:27.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:27 smithi028 bash[18631]: audit 2024-04-24T17:13:27.135033+0000 mon.smithi028 (mon.0) 337 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:28.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:28 smithi105 bash[20254]: cephadm 2024-04-24T17:13:27.175913+0000 mgr.smithi028.zkmzde (mgr.14197) 77 : cephadm [INF] Reconfiguring mon.smithi105 (monmap changed)... 2024-04-24T17:13:28.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:28 smithi105 bash[20254]: cephadm 2024-04-24T17:13:27.175913+0000 mgr.smithi028.zkmzde (mgr.14197) 77 : cephadm [INF] Reconfiguring mon.smithi105 (monmap changed)... 2024-04-24T17:13:28.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:28 smithi105 bash[20254]: audit 2024-04-24T17:13:27.176874+0000 mon.smithi028 (mon.0) 338 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T17:13:28.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:28 smithi105 bash[20254]: audit 2024-04-24T17:13:27.176874+0000 mon.smithi028 (mon.0) 338 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T17:13:28.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:28 smithi105 bash[20254]: audit 2024-04-24T17:13:27.183636+0000 mon.smithi028 (mon.0) 339 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T17:13:28.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:28 smithi105 bash[20254]: audit 2024-04-24T17:13:27.183636+0000 mon.smithi028 (mon.0) 339 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T17:13:28.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:28 smithi105 bash[20254]: audit 2024-04-24T17:13:27.185585+0000 mon.smithi028 (mon.0) 340 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:28.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:28 smithi105 bash[20254]: audit 2024-04-24T17:13:27.185585+0000 mon.smithi028 (mon.0) 340 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:28.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:28 smithi105 bash[20254]: cephadm 2024-04-24T17:13:27.187610+0000 mgr.smithi028.zkmzde (mgr.14197) 78 : cephadm [INF] Reconfiguring daemon mon.smithi105 on smithi105 2024-04-24T17:13:28.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:28 smithi105 bash[20254]: cephadm 2024-04-24T17:13:27.187610+0000 mgr.smithi028.zkmzde (mgr.14197) 78 : cephadm [INF] Reconfiguring daemon mon.smithi105 on smithi105 2024-04-24T17:13:28.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:28 smithi105 bash[20254]: audit 2024-04-24T17:13:27.818248+0000 mon.smithi028 (mon.0) 341 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:28.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:28 smithi105 bash[20254]: audit 2024-04-24T17:13:27.818248+0000 mon.smithi028 (mon.0) 341 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:28.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:28 smithi028 bash[18631]: cephadm 2024-04-24T17:13:27.175913+0000 mgr.smithi028.zkmzde (mgr.14197) 77 : cephadm [INF] Reconfiguring mon.smithi105 (monmap changed)... 2024-04-24T17:13:28.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:28 smithi028 bash[18631]: cephadm 2024-04-24T17:13:27.175913+0000 mgr.smithi028.zkmzde (mgr.14197) 77 : cephadm [INF] Reconfiguring mon.smithi105 (monmap changed)... 2024-04-24T17:13:28.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:28 smithi028 bash[18631]: audit 2024-04-24T17:13:27.176874+0000 mon.smithi028 (mon.0) 338 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T17:13:28.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:28 smithi028 bash[18631]: audit 2024-04-24T17:13:27.176874+0000 mon.smithi028 (mon.0) 338 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-24T17:13:28.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:28 smithi028 bash[18631]: audit 2024-04-24T17:13:27.183636+0000 mon.smithi028 (mon.0) 339 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T17:13:28.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:28 smithi028 bash[18631]: audit 2024-04-24T17:13:27.183636+0000 mon.smithi028 (mon.0) 339 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-24T17:13:28.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:28 smithi028 bash[18631]: audit 2024-04-24T17:13:27.185585+0000 mon.smithi028 (mon.0) 340 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:28.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:28 smithi028 bash[18631]: audit 2024-04-24T17:13:27.185585+0000 mon.smithi028 (mon.0) 340 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:28.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:28 smithi028 bash[18631]: cephadm 2024-04-24T17:13:27.187610+0000 mgr.smithi028.zkmzde (mgr.14197) 78 : cephadm [INF] Reconfiguring daemon mon.smithi105 on smithi105 2024-04-24T17:13:28.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:28 smithi028 bash[18631]: cephadm 2024-04-24T17:13:27.187610+0000 mgr.smithi028.zkmzde (mgr.14197) 78 : cephadm [INF] Reconfiguring daemon mon.smithi105 on smithi105 2024-04-24T17:13:28.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:28 smithi028 bash[18631]: audit 2024-04-24T17:13:27.818248+0000 mon.smithi028 (mon.0) 341 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:28.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:28 smithi028 bash[18631]: audit 2024-04-24T17:13:27.818248+0000 mon.smithi028 (mon.0) 341 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:29.393 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:29 smithi028 bash[18631]: cluster 2024-04-24T17:13:28.216138+0000 mgr.smithi028.zkmzde (mgr.14197) 79 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:29.393 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:29 smithi028 bash[18631]: cluster 2024-04-24T17:13:28.216138+0000 mgr.smithi028.zkmzde (mgr.14197) 79 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:29.393 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:29 smithi028 bash[18631]: audit 2024-04-24T17:13:29.158108+0000 mon.smithi028 (mon.0) 342 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:29.393 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:29 smithi028 bash[18631]: audit 2024-04-24T17:13:29.158108+0000 mon.smithi028 (mon.0) 342 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:29.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:29 smithi105 bash[20254]: cluster 2024-04-24T17:13:28.216138+0000 mgr.smithi028.zkmzde (mgr.14197) 79 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:29.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:29 smithi105 bash[20254]: cluster 2024-04-24T17:13:28.216138+0000 mgr.smithi028.zkmzde (mgr.14197) 79 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:29.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:29 smithi105 bash[20254]: audit 2024-04-24T17:13:29.158108+0000 mon.smithi028 (mon.0) 342 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:29.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:29 smithi105 bash[20254]: audit 2024-04-24T17:13:29.158108+0000 mon.smithi028 (mon.0) 342 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:29.587 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:13:30.482 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.215921+0000 mon.smithi028 (mon.0) 343 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.215921+0000 mon.smithi028 (mon.0) 343 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.216891+0000 mgr.smithi028.zkmzde (mgr.14197) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.216891+0000 mgr.smithi028.zkmzde (mgr.14197) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.219202+0000 mon.smithi028 (mon.0) 344 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi028.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.219202+0000 mon.smithi028 (mon.0) 344 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi028.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.220002+0000 mgr.smithi028.zkmzde (mgr.14197) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi028.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.220002+0000 mgr.smithi028.zkmzde (mgr.14197) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi028.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.227042+0000 mon.smithi028 (mon.0) 345 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.227042+0000 mon.smithi028 (mon.0) 345 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.249323+0000 mon.smithi028 (mon.0) 346 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.249323+0000 mon.smithi028 (mon.0) 346 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.250469+0000 mgr.smithi028.zkmzde (mgr.14197) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.250469+0000 mgr.smithi028.zkmzde (mgr.14197) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T17:13:30.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.259520+0000 mon.smithi028 (mon.0) 347 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi028.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T17:13:30.484 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.259520+0000 mon.smithi028 (mon.0) 347 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi028.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T17:13:30.484 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.267927+0000 mon.smithi028 (mon.0) 348 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:30.484 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.267927+0000 mon.smithi028 (mon.0) 348 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:30.484 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.289587+0000 mon.smithi028 (mon.0) 349 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T17:13:30.484 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.289587+0000 mon.smithi028 (mon.0) 349 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T17:13:30.484 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.297270+0000 mon.smithi028 (mon.0) 350 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi028.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T17:13:30.484 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.297270+0000 mon.smithi028 (mon.0) 350 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi028.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T17:13:30.484 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.303384+0000 mon.smithi028 (mon.0) 351 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:30.484 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.303384+0000 mon.smithi028 (mon.0) 351 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:30.484 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.322405+0000 mon.smithi028 (mon.0) 352 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:13:30.484 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:30 smithi028 bash[18631]: audit 2024-04-24T17:13:29.322405+0000 mon.smithi028 (mon.0) 352 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:13:30.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.215921+0000 mon.smithi028 (mon.0) 343 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T17:13:30.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.215921+0000 mon.smithi028 (mon.0) 343 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T17:13:30.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.216891+0000 mgr.smithi028.zkmzde (mgr.14197) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.216891+0000 mgr.smithi028.zkmzde (mgr.14197) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.219202+0000 mon.smithi028 (mon.0) 344 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi028.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.219202+0000 mon.smithi028 (mon.0) 344 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi028.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.220002+0000 mgr.smithi028.zkmzde (mgr.14197) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi028.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.220002+0000 mgr.smithi028.zkmzde (mgr.14197) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi028.front.sepia.ceph.com:9093"}]: dispatch 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.227042+0000 mon.smithi028 (mon.0) 345 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.227042+0000 mon.smithi028 (mon.0) 345 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.249323+0000 mon.smithi028 (mon.0) 346 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.249323+0000 mon.smithi028 (mon.0) 346 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.250469+0000 mgr.smithi028.zkmzde (mgr.14197) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.250469+0000 mgr.smithi028.zkmzde (mgr.14197) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.259520+0000 mon.smithi028 (mon.0) 347 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi028.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.259520+0000 mon.smithi028 (mon.0) 347 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi028.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T17:13:30.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.267927+0000 mon.smithi028 (mon.0) 348 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:30.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.267927+0000 mon.smithi028 (mon.0) 348 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:30.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.289587+0000 mon.smithi028 (mon.0) 349 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T17:13:30.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.289587+0000 mon.smithi028 (mon.0) 349 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T17:13:30.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.297270+0000 mon.smithi028 (mon.0) 350 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi028.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T17:13:30.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.297270+0000 mon.smithi028 (mon.0) 350 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi028.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T17:13:30.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.303384+0000 mon.smithi028 (mon.0) 351 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:30.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.303384+0000 mon.smithi028 (mon.0) 351 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:30.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.322405+0000 mon.smithi028 (mon.0) 352 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:13:30.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:30 smithi105 bash[20254]: audit 2024-04-24T17:13:29.322405+0000 mon.smithi028 (mon.0) 352 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:13:30.890 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:13:31.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:31 smithi105 bash[20254]: audit 2024-04-24T17:13:29.260514+0000 mgr.smithi028.zkmzde (mgr.14197) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi028.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T17:13:31.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:31 smithi105 bash[20254]: audit 2024-04-24T17:13:29.260514+0000 mgr.smithi028.zkmzde (mgr.14197) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi028.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T17:13:31.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:31 smithi105 bash[20254]: audit 2024-04-24T17:13:29.290670+0000 mgr.smithi028.zkmzde (mgr.14197) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T17:13:31.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:31 smithi105 bash[20254]: audit 2024-04-24T17:13:29.290670+0000 mgr.smithi028.zkmzde (mgr.14197) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T17:13:31.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:31 smithi105 bash[20254]: audit 2024-04-24T17:13:29.298223+0000 mgr.smithi028.zkmzde (mgr.14197) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi028.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T17:13:31.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:31 smithi105 bash[20254]: audit 2024-04-24T17:13:29.298223+0000 mgr.smithi028.zkmzde (mgr.14197) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi028.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T17:13:31.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:31 smithi105 bash[20254]: cluster 2024-04-24T17:13:30.216792+0000 mgr.smithi028.zkmzde (mgr.14197) 86 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:31.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:31 smithi105 bash[20254]: cluster 2024-04-24T17:13:30.216792+0000 mgr.smithi028.zkmzde (mgr.14197) 86 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:31.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:31 smithi105 bash[20254]: audit 2024-04-24T17:13:30.890848+0000 mon.smithi028 (mon.0) 353 : audit [DBG] from='client.? 172.21.15.28:0/1792171529' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:31.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:31 smithi105 bash[20254]: audit 2024-04-24T17:13:30.890848+0000 mon.smithi028 (mon.0) 353 : audit [DBG] from='client.? 172.21.15.28:0/1792171529' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:31.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:31 smithi028 bash[18631]: audit 2024-04-24T17:13:29.260514+0000 mgr.smithi028.zkmzde (mgr.14197) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi028.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T17:13:31.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:31 smithi028 bash[18631]: audit 2024-04-24T17:13:29.260514+0000 mgr.smithi028.zkmzde (mgr.14197) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi028.front.sepia.ceph.com:3000"}]: dispatch 2024-04-24T17:13:31.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:31 smithi028 bash[18631]: audit 2024-04-24T17:13:29.290670+0000 mgr.smithi028.zkmzde (mgr.14197) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T17:13:31.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:31 smithi028 bash[18631]: audit 2024-04-24T17:13:29.290670+0000 mgr.smithi028.zkmzde (mgr.14197) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-04-24T17:13:31.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:31 smithi028 bash[18631]: audit 2024-04-24T17:13:29.298223+0000 mgr.smithi028.zkmzde (mgr.14197) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi028.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T17:13:31.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:31 smithi028 bash[18631]: audit 2024-04-24T17:13:29.298223+0000 mgr.smithi028.zkmzde (mgr.14197) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi028.front.sepia.ceph.com:9095"}]: dispatch 2024-04-24T17:13:31.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:31 smithi028 bash[18631]: cluster 2024-04-24T17:13:30.216792+0000 mgr.smithi028.zkmzde (mgr.14197) 86 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:31.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:31 smithi028 bash[18631]: cluster 2024-04-24T17:13:30.216792+0000 mgr.smithi028.zkmzde (mgr.14197) 86 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:31.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:31 smithi028 bash[18631]: audit 2024-04-24T17:13:30.890848+0000 mon.smithi028 (mon.0) 353 : audit [DBG] from='client.? 172.21.15.28:0/1792171529' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:31.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:31 smithi028 bash[18631]: audit 2024-04-24T17:13:30.890848+0000 mon.smithi028 (mon.0) 353 : audit [DBG] from='client.? 172.21.15.28:0/1792171529' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:31.567 INFO:teuthology.orchestra.run.smithi028.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-24T17:13:32.568 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:13:32.579 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:32 smithi028 bash[18631]: cluster 2024-04-24T17:13:32.217911+0000 mgr.smithi028.zkmzde (mgr.14197) 87 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:32.579 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:32 smithi028 bash[18631]: cluster 2024-04-24T17:13:32.217911+0000 mgr.smithi028.zkmzde (mgr.14197) 87 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:32.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:32 smithi105 bash[20254]: cluster 2024-04-24T17:13:32.217911+0000 mgr.smithi028.zkmzde (mgr.14197) 87 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:32.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:32 smithi105 bash[20254]: cluster 2024-04-24T17:13:32.217911+0000 mgr.smithi028.zkmzde (mgr.14197) 87 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:34.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:34 smithi028 bash[18631]: cluster 2024-04-24T17:13:34.218481+0000 mgr.smithi028.zkmzde (mgr.14197) 88 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:34.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:34 smithi028 bash[18631]: cluster 2024-04-24T17:13:34.218481+0000 mgr.smithi028.zkmzde (mgr.14197) 88 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:34.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:34 smithi105 bash[20254]: cluster 2024-04-24T17:13:34.218481+0000 mgr.smithi028.zkmzde (mgr.14197) 88 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:34.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:34 smithi105 bash[20254]: cluster 2024-04-24T17:13:34.218481+0000 mgr.smithi028.zkmzde (mgr.14197) 88 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:36.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:35 smithi105 bash[20254]: audit 2024-04-24T17:13:34.706447+0000 mon.smithi028 (mon.0) 354 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:36.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:35 smithi105 bash[20254]: audit 2024-04-24T17:13:34.706447+0000 mon.smithi028 (mon.0) 354 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:36.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:35 smithi105 bash[20254]: audit 2024-04-24T17:13:35.016807+0000 mon.smithi028 (mon.0) 355 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:36.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:35 smithi105 bash[20254]: audit 2024-04-24T17:13:35.016807+0000 mon.smithi028 (mon.0) 355 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:36.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:35 smithi028 bash[18631]: audit 2024-04-24T17:13:34.706447+0000 mon.smithi028 (mon.0) 354 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:36.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:35 smithi028 bash[18631]: audit 2024-04-24T17:13:34.706447+0000 mon.smithi028 (mon.0) 354 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:36.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:35 smithi028 bash[18631]: audit 2024-04-24T17:13:35.016807+0000 mon.smithi028 (mon.0) 355 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:36.035 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:35 smithi028 bash[18631]: audit 2024-04-24T17:13:35.016807+0000 mon.smithi028 (mon.0) 355 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:37.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:36 smithi105 bash[20254]: cluster 2024-04-24T17:13:36.219457+0000 mgr.smithi028.zkmzde (mgr.14197) 89 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:37.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:36 smithi105 bash[20254]: cluster 2024-04-24T17:13:36.219457+0000 mgr.smithi028.zkmzde (mgr.14197) 89 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:37.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:36 smithi028 bash[18631]: cluster 2024-04-24T17:13:36.219457+0000 mgr.smithi028.zkmzde (mgr.14197) 89 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:37.034 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:36 smithi028 bash[18631]: cluster 2024-04-24T17:13:36.219457+0000 mgr.smithi028.zkmzde (mgr.14197) 89 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:37.131 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:13:38.397 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:13:38.607 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:38 smithi028 bash[18631]: cluster 2024-04-24T17:13:38.220089+0000 mgr.smithi028.zkmzde (mgr.14197) 90 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:38.607 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:38 smithi028 bash[18631]: cluster 2024-04-24T17:13:38.220089+0000 mgr.smithi028.zkmzde (mgr.14197) 90 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:38.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:38 smithi105 bash[20254]: cluster 2024-04-24T17:13:38.220089+0000 mgr.smithi028.zkmzde (mgr.14197) 90 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:38.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:38 smithi105 bash[20254]: cluster 2024-04-24T17:13:38.220089+0000 mgr.smithi028.zkmzde (mgr.14197) 90 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:39.018 INFO:teuthology.orchestra.run.smithi028.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-24T17:13:39.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:39 smithi028 bash[18631]: audit 2024-04-24T17:13:38.398388+0000 mon.smithi028 (mon.0) 356 : audit [DBG] from='client.? 172.21.15.28:0/2489360327' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:39.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:39 smithi028 bash[18631]: audit 2024-04-24T17:13:38.398388+0000 mon.smithi028 (mon.0) 356 : audit [DBG] from='client.? 172.21.15.28:0/2489360327' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:39.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:39 smithi105 bash[20254]: audit 2024-04-24T17:13:38.398388+0000 mon.smithi028 (mon.0) 356 : audit [DBG] from='client.? 172.21.15.28:0/2489360327' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:39.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:39 smithi105 bash[20254]: audit 2024-04-24T17:13:38.398388+0000 mon.smithi028 (mon.0) 356 : audit [DBG] from='client.? 172.21.15.28:0/2489360327' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:40.019 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:13:40.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:40 smithi105 bash[20254]: cluster 2024-04-24T17:13:40.220857+0000 mgr.smithi028.zkmzde (mgr.14197) 91 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:40.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:40 smithi105 bash[20254]: cluster 2024-04-24T17:13:40.220857+0000 mgr.smithi028.zkmzde (mgr.14197) 91 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:40 smithi028 bash[18631]: cluster 2024-04-24T17:13:40.220857+0000 mgr.smithi028.zkmzde (mgr.14197) 91 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:40.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:40 smithi028 bash[18631]: cluster 2024-04-24T17:13:40.220857+0000 mgr.smithi028.zkmzde (mgr.14197) 91 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.064870+0000 mon.smithi028 (mon.0) 357 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.064870+0000 mon.smithi028 (mon.0) 357 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: cluster 2024-04-24T17:13:42.221487+0000 mgr.smithi028.zkmzde (mgr.14197) 92 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: cluster 2024-04-24T17:13:42.221487+0000 mgr.smithi028.zkmzde (mgr.14197) 92 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.280178+0000 mon.smithi028 (mon.0) 358 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.280178+0000 mon.smithi028 (mon.0) 358 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.281666+0000 mon.smithi028 (mon.0) 359 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.281666+0000 mon.smithi028 (mon.0) 359 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.282724+0000 mon.smithi028 (mon.0) 360 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.282724+0000 mon.smithi028 (mon.0) 360 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.289725+0000 mon.smithi028 (mon.0) 361 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.289725+0000 mon.smithi028 (mon.0) 361 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.293615+0000 mon.smithi028 (mon.0) 362 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.293615+0000 mon.smithi028 (mon.0) 362 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.818615+0000 mon.smithi028 (mon.0) 363 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:43.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:43 smithi105 bash[20254]: audit 2024-04-24T17:13:42.818615+0000 mon.smithi028 (mon.0) 363 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.064870+0000 mon.smithi028 (mon.0) 357 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:43.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.064870+0000 mon.smithi028 (mon.0) 357 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:43.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: cluster 2024-04-24T17:13:42.221487+0000 mgr.smithi028.zkmzde (mgr.14197) 92 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:43.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: cluster 2024-04-24T17:13:42.221487+0000 mgr.smithi028.zkmzde (mgr.14197) 92 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:43.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.280178+0000 mon.smithi028 (mon.0) 358 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:43.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.280178+0000 mon.smithi028 (mon.0) 358 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:43.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.281666+0000 mon.smithi028 (mon.0) 359 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:43.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.281666+0000 mon.smithi028 (mon.0) 359 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:13:43.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.282724+0000 mon.smithi028 (mon.0) 360 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:13:43.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.282724+0000 mon.smithi028 (mon.0) 360 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:13:43.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.289725+0000 mon.smithi028 (mon.0) 361 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:43.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.289725+0000 mon.smithi028 (mon.0) 361 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:13:43.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.293615+0000 mon.smithi028 (mon.0) 362 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:13:43.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.293615+0000 mon.smithi028 (mon.0) 362 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:13:43.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.818615+0000 mon.smithi028 (mon.0) 363 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:43.536 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:43 smithi028 bash[18631]: audit 2024-04-24T17:13:42.818615+0000 mon.smithi028 (mon.0) 363 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:44.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:44 smithi105 bash[20254]: cluster 2024-04-24T17:13:42.284555+0000 mgr.smithi028.zkmzde (mgr.14197) 93 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:44.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:44 smithi105 bash[20254]: cluster 2024-04-24T17:13:42.284555+0000 mgr.smithi028.zkmzde (mgr.14197) 93 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:44.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:44 smithi105 bash[20254]: cluster 2024-04-24T17:13:42.285492+0000 mgr.smithi028.zkmzde (mgr.14197) 94 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:44.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:44 smithi105 bash[20254]: cluster 2024-04-24T17:13:42.285492+0000 mgr.smithi028.zkmzde (mgr.14197) 94 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:44.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:44 smithi028 bash[18631]: cluster 2024-04-24T17:13:42.284555+0000 mgr.smithi028.zkmzde (mgr.14197) 93 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:44.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:44 smithi028 bash[18631]: cluster 2024-04-24T17:13:42.284555+0000 mgr.smithi028.zkmzde (mgr.14197) 93 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:44.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:44 smithi028 bash[18631]: cluster 2024-04-24T17:13:42.285492+0000 mgr.smithi028.zkmzde (mgr.14197) 94 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:44.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:44 smithi028 bash[18631]: cluster 2024-04-24T17:13:42.285492+0000 mgr.smithi028.zkmzde (mgr.14197) 94 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:44.582 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:13:45.729 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:13:46.316 INFO:teuthology.orchestra.run.smithi028.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-24T17:13:46.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:46 smithi105 bash[20254]: cluster 2024-04-24T17:13:44.286436+0000 mgr.smithi028.zkmzde (mgr.14197) 95 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:46.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:46 smithi105 bash[20254]: cluster 2024-04-24T17:13:44.286436+0000 mgr.smithi028.zkmzde (mgr.14197) 95 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:46.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:46 smithi105 bash[20254]: audit 2024-04-24T17:13:45.730169+0000 mon.smithi028 (mon.0) 364 : audit [DBG] from='client.? 172.21.15.28:0/2192313376' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:46.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:46 smithi105 bash[20254]: audit 2024-04-24T17:13:45.730169+0000 mon.smithi028 (mon.0) 364 : audit [DBG] from='client.? 172.21.15.28:0/2192313376' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:46.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:46 smithi028 bash[18631]: cluster 2024-04-24T17:13:44.286436+0000 mgr.smithi028.zkmzde (mgr.14197) 95 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:46.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:46 smithi028 bash[18631]: cluster 2024-04-24T17:13:44.286436+0000 mgr.smithi028.zkmzde (mgr.14197) 95 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:46.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:46 smithi028 bash[18631]: audit 2024-04-24T17:13:45.730169+0000 mon.smithi028 (mon.0) 364 : audit [DBG] from='client.? 172.21.15.28:0/2192313376' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:46.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:46 smithi028 bash[18631]: audit 2024-04-24T17:13:45.730169+0000 mon.smithi028 (mon.0) 364 : audit [DBG] from='client.? 172.21.15.28:0/2192313376' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:47.317 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:13:48.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:48 smithi105 bash[20254]: cluster 2024-04-24T17:13:46.287445+0000 mgr.smithi028.zkmzde (mgr.14197) 96 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:48.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:48 smithi105 bash[20254]: cluster 2024-04-24T17:13:46.287445+0000 mgr.smithi028.zkmzde (mgr.14197) 96 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:48.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:48 smithi028 bash[18631]: cluster 2024-04-24T17:13:46.287445+0000 mgr.smithi028.zkmzde (mgr.14197) 96 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:48.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:48 smithi028 bash[18631]: cluster 2024-04-24T17:13:46.287445+0000 mgr.smithi028.zkmzde (mgr.14197) 96 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:50.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:50 smithi105 bash[20254]: cluster 2024-04-24T17:13:48.288454+0000 mgr.smithi028.zkmzde (mgr.14197) 97 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:50.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:50 smithi105 bash[20254]: cluster 2024-04-24T17:13:48.288454+0000 mgr.smithi028.zkmzde (mgr.14197) 97 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:50.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:50 smithi028 bash[18631]: cluster 2024-04-24T17:13:48.288454+0000 mgr.smithi028.zkmzde (mgr.14197) 97 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:50.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:50 smithi028 bash[18631]: cluster 2024-04-24T17:13:48.288454+0000 mgr.smithi028.zkmzde (mgr.14197) 97 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:52.092 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:13:52.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:52 smithi105 bash[20254]: cluster 2024-04-24T17:13:50.289484+0000 mgr.smithi028.zkmzde (mgr.14197) 98 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:52.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:52 smithi105 bash[20254]: cluster 2024-04-24T17:13:50.289484+0000 mgr.smithi028.zkmzde (mgr.14197) 98 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:52.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:52 smithi028 bash[18631]: cluster 2024-04-24T17:13:50.289484+0000 mgr.smithi028.zkmzde (mgr.14197) 98 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:52.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:52 smithi028 bash[18631]: cluster 2024-04-24T17:13:50.289484+0000 mgr.smithi028.zkmzde (mgr.14197) 98 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:53.412 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:13:54.013 INFO:teuthology.orchestra.run.smithi028.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-24T17:13:54.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:54 smithi028 bash[18631]: cluster 2024-04-24T17:13:52.290444+0000 mgr.smithi028.zkmzde (mgr.14197) 99 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:54.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:54 smithi028 bash[18631]: cluster 2024-04-24T17:13:52.290444+0000 mgr.smithi028.zkmzde (mgr.14197) 99 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:54.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:54 smithi028 bash[18631]: audit 2024-04-24T17:13:53.412693+0000 mon.smithi028 (mon.0) 365 : audit [DBG] from='client.? 172.21.15.28:0/1685121383' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:54.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:54 smithi028 bash[18631]: audit 2024-04-24T17:13:53.412693+0000 mon.smithi028 (mon.0) 365 : audit [DBG] from='client.? 172.21.15.28:0/1685121383' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:54.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:54 smithi105 bash[20254]: cluster 2024-04-24T17:13:52.290444+0000 mgr.smithi028.zkmzde (mgr.14197) 99 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:54.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:54 smithi105 bash[20254]: cluster 2024-04-24T17:13:52.290444+0000 mgr.smithi028.zkmzde (mgr.14197) 99 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:54.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:54 smithi105 bash[20254]: audit 2024-04-24T17:13:53.412693+0000 mon.smithi028 (mon.0) 365 : audit [DBG] from='client.? 172.21.15.28:0/1685121383' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:54.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:54 smithi105 bash[20254]: audit 2024-04-24T17:13:53.412693+0000 mon.smithi028 (mon.0) 365 : audit [DBG] from='client.? 172.21.15.28:0/1685121383' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:13:55.014 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:13:56.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:56 smithi105 bash[20254]: cluster 2024-04-24T17:13:54.291476+0000 mgr.smithi028.zkmzde (mgr.14197) 100 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:56.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:56 smithi105 bash[20254]: cluster 2024-04-24T17:13:54.291476+0000 mgr.smithi028.zkmzde (mgr.14197) 100 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:56.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:56 smithi028 bash[18631]: cluster 2024-04-24T17:13:54.291476+0000 mgr.smithi028.zkmzde (mgr.14197) 100 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:56.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:56 smithi028 bash[18631]: cluster 2024-04-24T17:13:54.291476+0000 mgr.smithi028.zkmzde (mgr.14197) 100 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:58.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:58 smithi105 bash[20254]: cluster 2024-04-24T17:13:56.292502+0000 mgr.smithi028.zkmzde (mgr.14197) 101 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:58.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:58 smithi105 bash[20254]: cluster 2024-04-24T17:13:56.292502+0000 mgr.smithi028.zkmzde (mgr.14197) 101 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:58.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:58 smithi105 bash[20254]: audit 2024-04-24T17:13:57.818511+0000 mon.smithi028 (mon.0) 366 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:58.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:13:58 smithi105 bash[20254]: audit 2024-04-24T17:13:57.818511+0000 mon.smithi028 (mon.0) 366 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:58.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:58 smithi028 bash[18631]: cluster 2024-04-24T17:13:56.292502+0000 mgr.smithi028.zkmzde (mgr.14197) 101 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:58.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:58 smithi028 bash[18631]: cluster 2024-04-24T17:13:56.292502+0000 mgr.smithi028.zkmzde (mgr.14197) 101 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:13:58.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:58 smithi028 bash[18631]: audit 2024-04-24T17:13:57.818511+0000 mon.smithi028 (mon.0) 366 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:58.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:13:58 smithi028 bash[18631]: audit 2024-04-24T17:13:57.818511+0000 mon.smithi028 (mon.0) 366 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:13:59.785 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:14:00.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:00 smithi105 bash[20254]: cluster 2024-04-24T17:13:58.293520+0000 mgr.smithi028.zkmzde (mgr.14197) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:00.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:00 smithi105 bash[20254]: cluster 2024-04-24T17:13:58.293520+0000 mgr.smithi028.zkmzde (mgr.14197) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:00.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:00 smithi028 bash[18631]: cluster 2024-04-24T17:13:58.293520+0000 mgr.smithi028.zkmzde (mgr.14197) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:00.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:00 smithi028 bash[18631]: cluster 2024-04-24T17:13:58.293520+0000 mgr.smithi028.zkmzde (mgr.14197) 102 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:01.007 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:14:01.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:01 smithi028 bash[18631]: audit 2024-04-24T17:14:01.008263+0000 mon.smithi028 (mon.0) 367 : audit [DBG] from='client.? 172.21.15.28:0/3511755531' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:01.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:01 smithi028 bash[18631]: audit 2024-04-24T17:14:01.008263+0000 mon.smithi028 (mon.0) 367 : audit [DBG] from='client.? 172.21.15.28:0/3511755531' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:01.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:01 smithi105 bash[20254]: audit 2024-04-24T17:14:01.008263+0000 mon.smithi028 (mon.0) 367 : audit [DBG] from='client.? 172.21.15.28:0/3511755531' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:01.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:01 smithi105 bash[20254]: audit 2024-04-24T17:14:01.008263+0000 mon.smithi028 (mon.0) 367 : audit [DBG] from='client.? 172.21.15.28:0/3511755531' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:01.588 INFO:teuthology.orchestra.run.smithi028.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-24T17:14:02.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:02 smithi105 bash[20254]: cluster 2024-04-24T17:14:00.294481+0000 mgr.smithi028.zkmzde (mgr.14197) 103 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:02.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:02 smithi105 bash[20254]: cluster 2024-04-24T17:14:00.294481+0000 mgr.smithi028.zkmzde (mgr.14197) 103 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:02.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:02 smithi028 bash[18631]: cluster 2024-04-24T17:14:00.294481+0000 mgr.smithi028.zkmzde (mgr.14197) 103 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:02.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:02 smithi028 bash[18631]: cluster 2024-04-24T17:14:00.294481+0000 mgr.smithi028.zkmzde (mgr.14197) 103 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:02.590 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:14:04.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:04 smithi105 bash[20254]: cluster 2024-04-24T17:14:02.295470+0000 mgr.smithi028.zkmzde (mgr.14197) 104 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:04.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:04 smithi105 bash[20254]: cluster 2024-04-24T17:14:02.295470+0000 mgr.smithi028.zkmzde (mgr.14197) 104 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:04.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:04 smithi028 bash[18631]: cluster 2024-04-24T17:14:02.295470+0000 mgr.smithi028.zkmzde (mgr.14197) 104 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:04.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:04 smithi028 bash[18631]: cluster 2024-04-24T17:14:02.295470+0000 mgr.smithi028.zkmzde (mgr.14197) 104 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:06.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:06 smithi105 bash[20254]: cluster 2024-04-24T17:14:04.296445+0000 mgr.smithi028.zkmzde (mgr.14197) 105 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:06.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:06 smithi105 bash[20254]: cluster 2024-04-24T17:14:04.296445+0000 mgr.smithi028.zkmzde (mgr.14197) 105 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:06.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:06 smithi028 bash[18631]: cluster 2024-04-24T17:14:04.296445+0000 mgr.smithi028.zkmzde (mgr.14197) 105 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:06.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:06 smithi028 bash[18631]: cluster 2024-04-24T17:14:04.296445+0000 mgr.smithi028.zkmzde (mgr.14197) 105 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:07.361 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:14:08.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:08 smithi105 bash[20254]: cluster 2024-04-24T17:14:06.297408+0000 mgr.smithi028.zkmzde (mgr.14197) 106 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:08.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:08 smithi105 bash[20254]: cluster 2024-04-24T17:14:06.297408+0000 mgr.smithi028.zkmzde (mgr.14197) 106 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:08.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:08 smithi028 bash[18631]: cluster 2024-04-24T17:14:06.297408+0000 mgr.smithi028.zkmzde (mgr.14197) 106 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:08.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:08 smithi028 bash[18631]: cluster 2024-04-24T17:14:06.297408+0000 mgr.smithi028.zkmzde (mgr.14197) 106 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:08.658 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:14:09.342 INFO:teuthology.orchestra.run.smithi028.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-24T17:14:09.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:09 smithi105 bash[20254]: audit 2024-04-24T17:14:08.659530+0000 mon.smithi028 (mon.0) 368 : audit [DBG] from='client.? 172.21.15.28:0/1932426224' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:09.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:09 smithi105 bash[20254]: audit 2024-04-24T17:14:08.659530+0000 mon.smithi028 (mon.0) 368 : audit [DBG] from='client.? 172.21.15.28:0/1932426224' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:09.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:09 smithi028 bash[18631]: audit 2024-04-24T17:14:08.659530+0000 mon.smithi028 (mon.0) 368 : audit [DBG] from='client.? 172.21.15.28:0/1932426224' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:09.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:09 smithi028 bash[18631]: audit 2024-04-24T17:14:08.659530+0000 mon.smithi028 (mon.0) 368 : audit [DBG] from='client.? 172.21.15.28:0/1932426224' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:10.343 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:14:10.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:10 smithi105 bash[20254]: cluster 2024-04-24T17:14:08.297938+0000 mgr.smithi028.zkmzde (mgr.14197) 107 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:10.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:10 smithi105 bash[20254]: cluster 2024-04-24T17:14:08.297938+0000 mgr.smithi028.zkmzde (mgr.14197) 107 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:10.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:10 smithi028 bash[18631]: cluster 2024-04-24T17:14:08.297938+0000 mgr.smithi028.zkmzde (mgr.14197) 107 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:10.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:10 smithi028 bash[18631]: cluster 2024-04-24T17:14:08.297938+0000 mgr.smithi028.zkmzde (mgr.14197) 107 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:12.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:12 smithi105 bash[20254]: cluster 2024-04-24T17:14:10.298901+0000 mgr.smithi028.zkmzde (mgr.14197) 108 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:12.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:12 smithi105 bash[20254]: cluster 2024-04-24T17:14:10.298901+0000 mgr.smithi028.zkmzde (mgr.14197) 108 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:12.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:12 smithi028 bash[18631]: cluster 2024-04-24T17:14:10.298901+0000 mgr.smithi028.zkmzde (mgr.14197) 108 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:12.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:12 smithi028 bash[18631]: cluster 2024-04-24T17:14:10.298901+0000 mgr.smithi028.zkmzde (mgr.14197) 108 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:13 smithi105 bash[20254]: audit 2024-04-24T17:14:12.819270+0000 mon.smithi028 (mon.0) 369 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:13 smithi105 bash[20254]: audit 2024-04-24T17:14:12.819270+0000 mon.smithi028 (mon.0) 369 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:13.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:13 smithi028 bash[18631]: audit 2024-04-24T17:14:12.819270+0000 mon.smithi028 (mon.0) 369 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:13.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:13 smithi028 bash[18631]: audit 2024-04-24T17:14:12.819270+0000 mon.smithi028 (mon.0) 369 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:14.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:14 smithi105 bash[20254]: cluster 2024-04-24T17:14:12.299879+0000 mgr.smithi028.zkmzde (mgr.14197) 109 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:14.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:14 smithi105 bash[20254]: cluster 2024-04-24T17:14:12.299879+0000 mgr.smithi028.zkmzde (mgr.14197) 109 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:14.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:14 smithi028 bash[18631]: cluster 2024-04-24T17:14:12.299879+0000 mgr.smithi028.zkmzde (mgr.14197) 109 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:14.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:14 smithi028 bash[18631]: cluster 2024-04-24T17:14:12.299879+0000 mgr.smithi028.zkmzde (mgr.14197) 109 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:15.121 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:14:16.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:16 smithi028 bash[18631]: cluster 2024-04-24T17:14:14.300900+0000 mgr.smithi028.zkmzde (mgr.14197) 110 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:16.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:16 smithi028 bash[18631]: cluster 2024-04-24T17:14:14.300900+0000 mgr.smithi028.zkmzde (mgr.14197) 110 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:16.402 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:14:16.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:16 smithi105 bash[20254]: cluster 2024-04-24T17:14:14.300900+0000 mgr.smithi028.zkmzde (mgr.14197) 110 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:16.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:16 smithi105 bash[20254]: cluster 2024-04-24T17:14:14.300900+0000 mgr.smithi028.zkmzde (mgr.14197) 110 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:17.038 INFO:teuthology.orchestra.run.smithi028.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-24T17:14:17.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:17 smithi105 bash[20254]: audit 2024-04-24T17:14:16.403757+0000 mon.smithi028 (mon.0) 370 : audit [DBG] from='client.? 172.21.15.28:0/950760243' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:17.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:17 smithi105 bash[20254]: audit 2024-04-24T17:14:16.403757+0000 mon.smithi028 (mon.0) 370 : audit [DBG] from='client.? 172.21.15.28:0/950760243' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:17.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:17 smithi028 bash[18631]: audit 2024-04-24T17:14:16.403757+0000 mon.smithi028 (mon.0) 370 : audit [DBG] from='client.? 172.21.15.28:0/950760243' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:17.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:17 smithi028 bash[18631]: audit 2024-04-24T17:14:16.403757+0000 mon.smithi028 (mon.0) 370 : audit [DBG] from='client.? 172.21.15.28:0/950760243' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:18.040 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:14:18.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:18 smithi105 bash[20254]: cluster 2024-04-24T17:14:16.301962+0000 mgr.smithi028.zkmzde (mgr.14197) 111 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:18.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:18 smithi105 bash[20254]: cluster 2024-04-24T17:14:16.301962+0000 mgr.smithi028.zkmzde (mgr.14197) 111 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:18.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:18 smithi028 bash[18631]: cluster 2024-04-24T17:14:16.301962+0000 mgr.smithi028.zkmzde (mgr.14197) 111 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:18.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:18 smithi028 bash[18631]: cluster 2024-04-24T17:14:16.301962+0000 mgr.smithi028.zkmzde (mgr.14197) 111 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:20.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:20 smithi105 bash[20254]: cluster 2024-04-24T17:14:18.303002+0000 mgr.smithi028.zkmzde (mgr.14197) 112 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:20.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:20 smithi105 bash[20254]: cluster 2024-04-24T17:14:18.303002+0000 mgr.smithi028.zkmzde (mgr.14197) 112 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:20.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:20 smithi028 bash[18631]: cluster 2024-04-24T17:14:18.303002+0000 mgr.smithi028.zkmzde (mgr.14197) 112 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:20.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:20 smithi028 bash[18631]: cluster 2024-04-24T17:14:18.303002+0000 mgr.smithi028.zkmzde (mgr.14197) 112 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:22.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:22 smithi105 bash[20254]: cluster 2024-04-24T17:14:20.303812+0000 mgr.smithi028.zkmzde (mgr.14197) 113 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:22.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:22 smithi105 bash[20254]: cluster 2024-04-24T17:14:20.303812+0000 mgr.smithi028.zkmzde (mgr.14197) 113 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:22.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:22 smithi028 bash[18631]: cluster 2024-04-24T17:14:20.303812+0000 mgr.smithi028.zkmzde (mgr.14197) 113 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:22.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:22 smithi028 bash[18631]: cluster 2024-04-24T17:14:20.303812+0000 mgr.smithi028.zkmzde (mgr.14197) 113 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:22.814 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:14:24.102 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:14:24.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:24 smithi105 bash[20254]: cluster 2024-04-24T17:14:22.304528+0000 mgr.smithi028.zkmzde (mgr.14197) 114 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:24.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:24 smithi105 bash[20254]: cluster 2024-04-24T17:14:22.304528+0000 mgr.smithi028.zkmzde (mgr.14197) 114 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:24.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:24 smithi105 bash[20254]: audit 2024-04-24T17:14:24.103524+0000 mon.smithi028 (mon.0) 371 : audit [DBG] from='client.? 172.21.15.28:0/2101901489' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:24.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:24 smithi105 bash[20254]: audit 2024-04-24T17:14:24.103524+0000 mon.smithi028 (mon.0) 371 : audit [DBG] from='client.? 172.21.15.28:0/2101901489' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:24.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:24 smithi028 bash[18631]: cluster 2024-04-24T17:14:22.304528+0000 mgr.smithi028.zkmzde (mgr.14197) 114 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:24.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:24 smithi028 bash[18631]: cluster 2024-04-24T17:14:22.304528+0000 mgr.smithi028.zkmzde (mgr.14197) 114 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:24.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:24 smithi028 bash[18631]: audit 2024-04-24T17:14:24.103524+0000 mon.smithi028 (mon.0) 371 : audit [DBG] from='client.? 172.21.15.28:0/2101901489' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:24.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:24 smithi028 bash[18631]: audit 2024-04-24T17:14:24.103524+0000 mon.smithi028 (mon.0) 371 : audit [DBG] from='client.? 172.21.15.28:0/2101901489' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:24.745 INFO:teuthology.orchestra.run.smithi028.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-24T17:14:25.746 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:14:26.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:26 smithi105 bash[20254]: cluster 2024-04-24T17:14:24.305493+0000 mgr.smithi028.zkmzde (mgr.14197) 115 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:26.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:26 smithi105 bash[20254]: cluster 2024-04-24T17:14:24.305493+0000 mgr.smithi028.zkmzde (mgr.14197) 115 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:26.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:26 smithi028 bash[18631]: cluster 2024-04-24T17:14:24.305493+0000 mgr.smithi028.zkmzde (mgr.14197) 115 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:26.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:26 smithi028 bash[18631]: cluster 2024-04-24T17:14:24.305493+0000 mgr.smithi028.zkmzde (mgr.14197) 115 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:28.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:28 smithi105 bash[20254]: cluster 2024-04-24T17:14:26.306456+0000 mgr.smithi028.zkmzde (mgr.14197) 116 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:28.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:28 smithi105 bash[20254]: cluster 2024-04-24T17:14:26.306456+0000 mgr.smithi028.zkmzde (mgr.14197) 116 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:28.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:28 smithi105 bash[20254]: audit 2024-04-24T17:14:27.820009+0000 mon.smithi028 (mon.0) 372 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:28.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:28 smithi105 bash[20254]: audit 2024-04-24T17:14:27.820009+0000 mon.smithi028 (mon.0) 372 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:28.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:28 smithi028 bash[18631]: cluster 2024-04-24T17:14:26.306456+0000 mgr.smithi028.zkmzde (mgr.14197) 116 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:28.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:28 smithi028 bash[18631]: cluster 2024-04-24T17:14:26.306456+0000 mgr.smithi028.zkmzde (mgr.14197) 116 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:28.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:28 smithi028 bash[18631]: audit 2024-04-24T17:14:27.820009+0000 mon.smithi028 (mon.0) 372 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:28.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:28 smithi028 bash[18631]: audit 2024-04-24T17:14:27.820009+0000 mon.smithi028 (mon.0) 372 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:30.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:30 smithi105 bash[20254]: cluster 2024-04-24T17:14:28.307452+0000 mgr.smithi028.zkmzde (mgr.14197) 117 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:30.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:30 smithi105 bash[20254]: cluster 2024-04-24T17:14:28.307452+0000 mgr.smithi028.zkmzde (mgr.14197) 117 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:30.522 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:14:30.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:30 smithi028 bash[18631]: cluster 2024-04-24T17:14:28.307452+0000 mgr.smithi028.zkmzde (mgr.14197) 117 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:30.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:30 smithi028 bash[18631]: cluster 2024-04-24T17:14:28.307452+0000 mgr.smithi028.zkmzde (mgr.14197) 117 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:31.742 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:14:32.326 INFO:teuthology.orchestra.run.smithi028.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-24T17:14:32.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:32 smithi105 bash[20254]: cluster 2024-04-24T17:14:30.308444+0000 mgr.smithi028.zkmzde (mgr.14197) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:32.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:32 smithi105 bash[20254]: cluster 2024-04-24T17:14:30.308444+0000 mgr.smithi028.zkmzde (mgr.14197) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:32.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:32 smithi105 bash[20254]: audit 2024-04-24T17:14:31.743124+0000 mon.smithi028 (mon.0) 373 : audit [DBG] from='client.? 172.21.15.28:0/3414773161' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:32.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:32 smithi105 bash[20254]: audit 2024-04-24T17:14:31.743124+0000 mon.smithi028 (mon.0) 373 : audit [DBG] from='client.? 172.21.15.28:0/3414773161' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:32.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:32 smithi028 bash[18631]: cluster 2024-04-24T17:14:30.308444+0000 mgr.smithi028.zkmzde (mgr.14197) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:32.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:32 smithi028 bash[18631]: cluster 2024-04-24T17:14:30.308444+0000 mgr.smithi028.zkmzde (mgr.14197) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:32.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:32 smithi028 bash[18631]: audit 2024-04-24T17:14:31.743124+0000 mon.smithi028 (mon.0) 373 : audit [DBG] from='client.? 172.21.15.28:0/3414773161' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:32.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:32 smithi028 bash[18631]: audit 2024-04-24T17:14:31.743124+0000 mon.smithi028 (mon.0) 373 : audit [DBG] from='client.? 172.21.15.28:0/3414773161' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:33.327 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:14:34.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:34 smithi105 bash[20254]: cluster 2024-04-24T17:14:32.309473+0000 mgr.smithi028.zkmzde (mgr.14197) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:34.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:34 smithi105 bash[20254]: cluster 2024-04-24T17:14:32.309473+0000 mgr.smithi028.zkmzde (mgr.14197) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:34.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:34 smithi028 bash[18631]: cluster 2024-04-24T17:14:32.309473+0000 mgr.smithi028.zkmzde (mgr.14197) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:34.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:34 smithi028 bash[18631]: cluster 2024-04-24T17:14:32.309473+0000 mgr.smithi028.zkmzde (mgr.14197) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:36.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:36 smithi105 bash[20254]: cluster 2024-04-24T17:14:34.310461+0000 mgr.smithi028.zkmzde (mgr.14197) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:36.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:36 smithi105 bash[20254]: cluster 2024-04-24T17:14:34.310461+0000 mgr.smithi028.zkmzde (mgr.14197) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:36.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:36 smithi028 bash[18631]: cluster 2024-04-24T17:14:34.310461+0000 mgr.smithi028.zkmzde (mgr.14197) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:36.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:36 smithi028 bash[18631]: cluster 2024-04-24T17:14:34.310461+0000 mgr.smithi028.zkmzde (mgr.14197) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:38.103 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:14:38.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:38 smithi105 bash[20254]: cluster 2024-04-24T17:14:36.311437+0000 mgr.smithi028.zkmzde (mgr.14197) 121 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:38.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:38 smithi105 bash[20254]: cluster 2024-04-24T17:14:36.311437+0000 mgr.smithi028.zkmzde (mgr.14197) 121 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:38.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:38 smithi028 bash[18631]: cluster 2024-04-24T17:14:36.311437+0000 mgr.smithi028.zkmzde (mgr.14197) 121 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:38.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:38 smithi028 bash[18631]: cluster 2024-04-24T17:14:36.311437+0000 mgr.smithi028.zkmzde (mgr.14197) 121 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:39.421 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:14:40.035 INFO:teuthology.orchestra.run.smithi028.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-24T17:14:40.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:40 smithi105 bash[20254]: cluster 2024-04-24T17:14:38.312419+0000 mgr.smithi028.zkmzde (mgr.14197) 122 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:40.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:40 smithi105 bash[20254]: cluster 2024-04-24T17:14:38.312419+0000 mgr.smithi028.zkmzde (mgr.14197) 122 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:40.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:40 smithi105 bash[20254]: audit 2024-04-24T17:14:39.422261+0000 mon.smithi028 (mon.0) 374 : audit [DBG] from='client.? 172.21.15.28:0/2349058811' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:40.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:40 smithi105 bash[20254]: audit 2024-04-24T17:14:39.422261+0000 mon.smithi028 (mon.0) 374 : audit [DBG] from='client.? 172.21.15.28:0/2349058811' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:40.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:40 smithi028 bash[18631]: cluster 2024-04-24T17:14:38.312419+0000 mgr.smithi028.zkmzde (mgr.14197) 122 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:40.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:40 smithi028 bash[18631]: cluster 2024-04-24T17:14:38.312419+0000 mgr.smithi028.zkmzde (mgr.14197) 122 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:40.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:40 smithi028 bash[18631]: audit 2024-04-24T17:14:39.422261+0000 mon.smithi028 (mon.0) 374 : audit [DBG] from='client.? 172.21.15.28:0/2349058811' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:40.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:40 smithi028 bash[18631]: audit 2024-04-24T17:14:39.422261+0000 mon.smithi028 (mon.0) 374 : audit [DBG] from='client.? 172.21.15.28:0/2349058811' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:41.036 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:14:42.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:42 smithi105 bash[20254]: cluster 2024-04-24T17:14:40.313403+0000 mgr.smithi028.zkmzde (mgr.14197) 123 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:42.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:42 smithi105 bash[20254]: cluster 2024-04-24T17:14:40.313403+0000 mgr.smithi028.zkmzde (mgr.14197) 123 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:42.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:42 smithi028 bash[18631]: cluster 2024-04-24T17:14:40.313403+0000 mgr.smithi028.zkmzde (mgr.14197) 123 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:42.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:42 smithi028 bash[18631]: cluster 2024-04-24T17:14:40.313403+0000 mgr.smithi028.zkmzde (mgr.14197) 123 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:43 smithi105 bash[20254]: audit 2024-04-24T17:14:42.374640+0000 mon.smithi028 (mon.0) 375 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:14:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:43 smithi105 bash[20254]: audit 2024-04-24T17:14:42.374640+0000 mon.smithi028 (mon.0) 375 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:14:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:43 smithi105 bash[20254]: audit 2024-04-24T17:14:42.819632+0000 mon.smithi028 (mon.0) 376 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:43 smithi105 bash[20254]: audit 2024-04-24T17:14:42.819632+0000 mon.smithi028 (mon.0) 376 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:43 smithi028 bash[18631]: audit 2024-04-24T17:14:42.374640+0000 mon.smithi028 (mon.0) 375 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:14:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:43 smithi028 bash[18631]: audit 2024-04-24T17:14:42.374640+0000 mon.smithi028 (mon.0) 375 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:14:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:43 smithi028 bash[18631]: audit 2024-04-24T17:14:42.819632+0000 mon.smithi028 (mon.0) 376 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:43 smithi028 bash[18631]: audit 2024-04-24T17:14:42.819632+0000 mon.smithi028 (mon.0) 376 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:44.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:44 smithi105 bash[20254]: cluster 2024-04-24T17:14:42.314365+0000 mgr.smithi028.zkmzde (mgr.14197) 124 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:44.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:44 smithi105 bash[20254]: cluster 2024-04-24T17:14:42.314365+0000 mgr.smithi028.zkmzde (mgr.14197) 124 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:44.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:44 smithi028 bash[18631]: cluster 2024-04-24T17:14:42.314365+0000 mgr.smithi028.zkmzde (mgr.14197) 124 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:44.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:44 smithi028 bash[18631]: cluster 2024-04-24T17:14:42.314365+0000 mgr.smithi028.zkmzde (mgr.14197) 124 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:45.814 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:14:46.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:46 smithi105 bash[20254]: cluster 2024-04-24T17:14:44.315308+0000 mgr.smithi028.zkmzde (mgr.14197) 125 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:46.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:46 smithi105 bash[20254]: cluster 2024-04-24T17:14:44.315308+0000 mgr.smithi028.zkmzde (mgr.14197) 125 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:46.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:46 smithi028 bash[18631]: cluster 2024-04-24T17:14:44.315308+0000 mgr.smithi028.zkmzde (mgr.14197) 125 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:46.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:46 smithi028 bash[18631]: cluster 2024-04-24T17:14:44.315308+0000 mgr.smithi028.zkmzde (mgr.14197) 125 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:47.081 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:14:47.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:47 smithi105 bash[20254]: audit 2024-04-24T17:14:47.082915+0000 mon.smithi028 (mon.0) 377 : audit [DBG] from='client.? 172.21.15.28:0/1409257534' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:47.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:47 smithi105 bash[20254]: audit 2024-04-24T17:14:47.082915+0000 mon.smithi028 (mon.0) 377 : audit [DBG] from='client.? 172.21.15.28:0/1409257534' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:47.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:47 smithi028 bash[18631]: audit 2024-04-24T17:14:47.082915+0000 mon.smithi028 (mon.0) 377 : audit [DBG] from='client.? 172.21.15.28:0/1409257534' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:47.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:47 smithi028 bash[18631]: audit 2024-04-24T17:14:47.082915+0000 mon.smithi028 (mon.0) 377 : audit [DBG] from='client.? 172.21.15.28:0/1409257534' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:47.675 INFO:teuthology.orchestra.run.smithi028.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-24T17:14:48.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:48 smithi105 bash[20254]: cluster 2024-04-24T17:14:46.315892+0000 mgr.smithi028.zkmzde (mgr.14197) 126 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:48.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:48 smithi105 bash[20254]: cluster 2024-04-24T17:14:46.315892+0000 mgr.smithi028.zkmzde (mgr.14197) 126 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:48.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:48 smithi105 bash[20254]: audit 2024-04-24T17:14:47.621303+0000 mon.smithi028 (mon.0) 378 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:14:48.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:48 smithi105 bash[20254]: audit 2024-04-24T17:14:47.621303+0000 mon.smithi028 (mon.0) 378 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:14:48.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:48 smithi105 bash[20254]: audit 2024-04-24T17:14:47.826844+0000 mon.smithi028 (mon.0) 379 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:14:48.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:48 smithi105 bash[20254]: audit 2024-04-24T17:14:47.826844+0000 mon.smithi028 (mon.0) 379 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:14:48.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:48 smithi028 bash[18631]: cluster 2024-04-24T17:14:46.315892+0000 mgr.smithi028.zkmzde (mgr.14197) 126 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:48.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:48 smithi028 bash[18631]: cluster 2024-04-24T17:14:46.315892+0000 mgr.smithi028.zkmzde (mgr.14197) 126 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:48.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:48 smithi028 bash[18631]: audit 2024-04-24T17:14:47.621303+0000 mon.smithi028 (mon.0) 378 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:14:48.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:48 smithi028 bash[18631]: audit 2024-04-24T17:14:47.621303+0000 mon.smithi028 (mon.0) 378 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:14:48.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:48 smithi028 bash[18631]: audit 2024-04-24T17:14:47.826844+0000 mon.smithi028 (mon.0) 379 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:14:48.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:48 smithi028 bash[18631]: audit 2024-04-24T17:14:47.826844+0000 mon.smithi028 (mon.0) 379 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:14:48.675 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:14:50.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:50 smithi105 bash[20254]: cluster 2024-04-24T17:14:48.316809+0000 mgr.smithi028.zkmzde (mgr.14197) 127 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:50.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:50 smithi105 bash[20254]: cluster 2024-04-24T17:14:48.316809+0000 mgr.smithi028.zkmzde (mgr.14197) 127 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:50.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:50 smithi028 bash[18631]: cluster 2024-04-24T17:14:48.316809+0000 mgr.smithi028.zkmzde (mgr.14197) 127 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:50.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:50 smithi028 bash[18631]: cluster 2024-04-24T17:14:48.316809+0000 mgr.smithi028.zkmzde (mgr.14197) 127 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:52.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:52 smithi105 bash[20254]: cluster 2024-04-24T17:14:50.317793+0000 mgr.smithi028.zkmzde (mgr.14197) 128 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:52.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:52 smithi105 bash[20254]: cluster 2024-04-24T17:14:50.317793+0000 mgr.smithi028.zkmzde (mgr.14197) 128 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:52.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:52 smithi028 bash[18631]: cluster 2024-04-24T17:14:50.317793+0000 mgr.smithi028.zkmzde (mgr.14197) 128 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:52.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:52 smithi028 bash[18631]: cluster 2024-04-24T17:14:50.317793+0000 mgr.smithi028.zkmzde (mgr.14197) 128 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:53.173 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:14:54.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:54 smithi105 bash[20254]: cluster 2024-04-24T17:14:52.318778+0000 mgr.smithi028.zkmzde (mgr.14197) 129 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:54.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:54 smithi105 bash[20254]: cluster 2024-04-24T17:14:52.318778+0000 mgr.smithi028.zkmzde (mgr.14197) 129 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:54.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:54 smithi028 bash[18631]: cluster 2024-04-24T17:14:52.318778+0000 mgr.smithi028.zkmzde (mgr.14197) 129 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:54.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:54 smithi028 bash[18631]: cluster 2024-04-24T17:14:52.318778+0000 mgr.smithi028.zkmzde (mgr.14197) 129 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:54.607 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:14:55.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:55 smithi105 bash[20254]: audit 2024-04-24T17:14:54.608724+0000 mon.smithi028 (mon.0) 380 : audit [DBG] from='client.? 172.21.15.28:0/309880931' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:55.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:55 smithi105 bash[20254]: audit 2024-04-24T17:14:54.608724+0000 mon.smithi028 (mon.0) 380 : audit [DBG] from='client.? 172.21.15.28:0/309880931' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:55.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:55 smithi028 bash[18631]: audit 2024-04-24T17:14:54.608724+0000 mon.smithi028 (mon.0) 380 : audit [DBG] from='client.? 172.21.15.28:0/309880931' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:55.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:55 smithi028 bash[18631]: audit 2024-04-24T17:14:54.608724+0000 mon.smithi028 (mon.0) 380 : audit [DBG] from='client.? 172.21.15.28:0/309880931' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:14:55.981 INFO:teuthology.orchestra.run.smithi028.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-24T17:14:56.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:56 smithi028 bash[18631]: cluster 2024-04-24T17:14:54.319374+0000 mgr.smithi028.zkmzde (mgr.14197) 130 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:56.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:56 smithi028 bash[18631]: cluster 2024-04-24T17:14:54.319374+0000 mgr.smithi028.zkmzde (mgr.14197) 130 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:56.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:56 smithi028 bash[18631]: audit 2024-04-24T17:14:55.946278+0000 mon.smithi028 (mon.0) 381 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:14:56.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:56 smithi028 bash[18631]: audit 2024-04-24T17:14:55.946278+0000 mon.smithi028 (mon.0) 381 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:14:56.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:56 smithi028 bash[18631]: audit 2024-04-24T17:14:55.948160+0000 mon.smithi028 (mon.0) 382 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:14:56.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:56 smithi028 bash[18631]: audit 2024-04-24T17:14:55.948160+0000 mon.smithi028 (mon.0) 382 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:14:56.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:56 smithi028 bash[18631]: audit 2024-04-24T17:14:55.959134+0000 mon.smithi028 (mon.0) 383 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:14:56.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:56 smithi028 bash[18631]: audit 2024-04-24T17:14:55.959134+0000 mon.smithi028 (mon.0) 383 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:14:56.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:56 smithi028 bash[18631]: audit 2024-04-24T17:14:55.964274+0000 mon.smithi028 (mon.0) 384 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:14:56.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:56 smithi028 bash[18631]: audit 2024-04-24T17:14:55.964274+0000 mon.smithi028 (mon.0) 384 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:14:56.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:56 smithi105 bash[20254]: cluster 2024-04-24T17:14:54.319374+0000 mgr.smithi028.zkmzde (mgr.14197) 130 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:56.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:56 smithi105 bash[20254]: cluster 2024-04-24T17:14:54.319374+0000 mgr.smithi028.zkmzde (mgr.14197) 130 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:56.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:56 smithi105 bash[20254]: audit 2024-04-24T17:14:55.946278+0000 mon.smithi028 (mon.0) 381 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:14:56.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:56 smithi105 bash[20254]: audit 2024-04-24T17:14:55.946278+0000 mon.smithi028 (mon.0) 381 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:14:56.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:56 smithi105 bash[20254]: audit 2024-04-24T17:14:55.948160+0000 mon.smithi028 (mon.0) 382 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:14:56.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:56 smithi105 bash[20254]: audit 2024-04-24T17:14:55.948160+0000 mon.smithi028 (mon.0) 382 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:14:56.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:56 smithi105 bash[20254]: audit 2024-04-24T17:14:55.959134+0000 mon.smithi028 (mon.0) 383 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:14:56.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:56 smithi105 bash[20254]: audit 2024-04-24T17:14:55.959134+0000 mon.smithi028 (mon.0) 383 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:14:56.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:56 smithi105 bash[20254]: audit 2024-04-24T17:14:55.964274+0000 mon.smithi028 (mon.0) 384 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:14:56.772 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:56 smithi105 bash[20254]: audit 2024-04-24T17:14:55.964274+0000 mon.smithi028 (mon.0) 384 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:14:56.982 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:14:57.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:57 smithi028 bash[18631]: cluster 2024-04-24T17:14:55.951377+0000 mgr.smithi028.zkmzde (mgr.14197) 131 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:57.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:57 smithi028 bash[18631]: cluster 2024-04-24T17:14:55.951377+0000 mgr.smithi028.zkmzde (mgr.14197) 131 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:57.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:57 smithi028 bash[18631]: cluster 2024-04-24T17:14:55.952484+0000 mgr.smithi028.zkmzde (mgr.14197) 132 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:57.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:57 smithi028 bash[18631]: cluster 2024-04-24T17:14:55.952484+0000 mgr.smithi028.zkmzde (mgr.14197) 132 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:57.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:57 smithi105 bash[20254]: cluster 2024-04-24T17:14:55.951377+0000 mgr.smithi028.zkmzde (mgr.14197) 131 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:57.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:57 smithi105 bash[20254]: cluster 2024-04-24T17:14:55.951377+0000 mgr.smithi028.zkmzde (mgr.14197) 131 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:57.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:57 smithi105 bash[20254]: cluster 2024-04-24T17:14:55.952484+0000 mgr.smithi028.zkmzde (mgr.14197) 132 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:57.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:57 smithi105 bash[20254]: cluster 2024-04-24T17:14:55.952484+0000 mgr.smithi028.zkmzde (mgr.14197) 132 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:58.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:58 smithi028 bash[18631]: audit 2024-04-24T17:14:57.820440+0000 mon.smithi028 (mon.0) 385 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:58.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:58 smithi028 bash[18631]: audit 2024-04-24T17:14:57.820440+0000 mon.smithi028 (mon.0) 385 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:58.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:58 smithi105 bash[20254]: audit 2024-04-24T17:14:57.820440+0000 mon.smithi028 (mon.0) 385 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:58.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:58 smithi105 bash[20254]: audit 2024-04-24T17:14:57.820440+0000 mon.smithi028 (mon.0) 385 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:14:59.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:59 smithi028 bash[18631]: cluster 2024-04-24T17:14:57.953441+0000 mgr.smithi028.zkmzde (mgr.14197) 133 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:59.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:14:59 smithi028 bash[18631]: cluster 2024-04-24T17:14:57.953441+0000 mgr.smithi028.zkmzde (mgr.14197) 133 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:59.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:59 smithi105 bash[20254]: cluster 2024-04-24T17:14:57.953441+0000 mgr.smithi028.zkmzde (mgr.14197) 133 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:14:59.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:14:59 smithi105 bash[20254]: cluster 2024-04-24T17:14:57.953441+0000 mgr.smithi028.zkmzde (mgr.14197) 133 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:00.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:00 smithi105 bash[20254]: cluster 2024-04-24T17:14:59.954410+0000 mgr.smithi028.zkmzde (mgr.14197) 134 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:00.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:00 smithi105 bash[20254]: cluster 2024-04-24T17:14:59.954410+0000 mgr.smithi028.zkmzde (mgr.14197) 134 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:00.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:00 smithi028 bash[18631]: cluster 2024-04-24T17:14:59.954410+0000 mgr.smithi028.zkmzde (mgr.14197) 134 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:00.784 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:00 smithi028 bash[18631]: cluster 2024-04-24T17:14:59.954410+0000 mgr.smithi028.zkmzde (mgr.14197) 134 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:01.754 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:15:03.045 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:15:03.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:03 smithi105 bash[20254]: cluster 2024-04-24T17:15:01.955412+0000 mgr.smithi028.zkmzde (mgr.14197) 135 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:03.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:03 smithi105 bash[20254]: cluster 2024-04-24T17:15:01.955412+0000 mgr.smithi028.zkmzde (mgr.14197) 135 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:03.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:03 smithi028 bash[18631]: cluster 2024-04-24T17:15:01.955412+0000 mgr.smithi028.zkmzde (mgr.14197) 135 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:03.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:03 smithi028 bash[18631]: cluster 2024-04-24T17:15:01.955412+0000 mgr.smithi028.zkmzde (mgr.14197) 135 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:03.661 INFO:teuthology.orchestra.run.smithi028.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-24T17:15:04.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:04 smithi105 bash[20254]: audit 2024-04-24T17:15:03.046554+0000 mon.smithi028 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.28:0/799254910' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:04.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:04 smithi105 bash[20254]: audit 2024-04-24T17:15:03.046554+0000 mon.smithi028 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.28:0/799254910' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:04.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:04 smithi028 bash[18631]: audit 2024-04-24T17:15:03.046554+0000 mon.smithi028 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.28:0/799254910' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:04.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:04 smithi028 bash[18631]: audit 2024-04-24T17:15:03.046554+0000 mon.smithi028 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.28:0/799254910' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:04.663 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:15:05.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:05 smithi105 bash[20254]: cluster 2024-04-24T17:15:03.956412+0000 mgr.smithi028.zkmzde (mgr.14197) 136 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:05.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:05 smithi105 bash[20254]: cluster 2024-04-24T17:15:03.956412+0000 mgr.smithi028.zkmzde (mgr.14197) 136 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:05.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:05 smithi028 bash[18631]: cluster 2024-04-24T17:15:03.956412+0000 mgr.smithi028.zkmzde (mgr.14197) 136 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:05.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:05 smithi028 bash[18631]: cluster 2024-04-24T17:15:03.956412+0000 mgr.smithi028.zkmzde (mgr.14197) 136 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:07.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:07 smithi028 bash[18631]: cluster 2024-04-24T17:15:05.957398+0000 mgr.smithi028.zkmzde (mgr.14197) 137 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:07.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:07 smithi028 bash[18631]: cluster 2024-04-24T17:15:05.957398+0000 mgr.smithi028.zkmzde (mgr.14197) 137 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:07.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:07 smithi105 bash[20254]: cluster 2024-04-24T17:15:05.957398+0000 mgr.smithi028.zkmzde (mgr.14197) 137 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:07.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:07 smithi105 bash[20254]: cluster 2024-04-24T17:15:05.957398+0000 mgr.smithi028.zkmzde (mgr.14197) 137 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:09.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:09 smithi028 bash[18631]: cluster 2024-04-24T17:15:07.958401+0000 mgr.smithi028.zkmzde (mgr.14197) 138 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:09.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:09 smithi028 bash[18631]: cluster 2024-04-24T17:15:07.958401+0000 mgr.smithi028.zkmzde (mgr.14197) 138 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:09.437 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:15:09.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:09 smithi105 bash[20254]: cluster 2024-04-24T17:15:07.958401+0000 mgr.smithi028.zkmzde (mgr.14197) 138 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:09.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:09 smithi105 bash[20254]: cluster 2024-04-24T17:15:07.958401+0000 mgr.smithi028.zkmzde (mgr.14197) 138 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:10.695 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:15:11.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:11 smithi028 bash[18631]: cluster 2024-04-24T17:15:09.959393+0000 mgr.smithi028.zkmzde (mgr.14197) 139 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:11.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:11 smithi028 bash[18631]: cluster 2024-04-24T17:15:09.959393+0000 mgr.smithi028.zkmzde (mgr.14197) 139 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:11.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:11 smithi028 bash[18631]: audit 2024-04-24T17:15:10.696270+0000 mon.smithi028 (mon.0) 387 : audit [DBG] from='client.? 172.21.15.28:0/2919486133' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:11.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:11 smithi028 bash[18631]: audit 2024-04-24T17:15:10.696270+0000 mon.smithi028 (mon.0) 387 : audit [DBG] from='client.? 172.21.15.28:0/2919486133' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:11.311 INFO:teuthology.orchestra.run.smithi028.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-24T17:15:11.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:11 smithi105 bash[20254]: cluster 2024-04-24T17:15:09.959393+0000 mgr.smithi028.zkmzde (mgr.14197) 139 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:11.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:11 smithi105 bash[20254]: cluster 2024-04-24T17:15:09.959393+0000 mgr.smithi028.zkmzde (mgr.14197) 139 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:11.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:11 smithi105 bash[20254]: audit 2024-04-24T17:15:10.696270+0000 mon.smithi028 (mon.0) 387 : audit [DBG] from='client.? 172.21.15.28:0/2919486133' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:11.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:11 smithi105 bash[20254]: audit 2024-04-24T17:15:10.696270+0000 mon.smithi028 (mon.0) 387 : audit [DBG] from='client.? 172.21.15.28:0/2919486133' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:12.312 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:15:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:13 smithi105 bash[20254]: cluster 2024-04-24T17:15:11.960380+0000 mgr.smithi028.zkmzde (mgr.14197) 140 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:13 smithi105 bash[20254]: cluster 2024-04-24T17:15:11.960380+0000 mgr.smithi028.zkmzde (mgr.14197) 140 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:13 smithi105 bash[20254]: audit 2024-04-24T17:15:12.820880+0000 mon.smithi028 (mon.0) 388 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:13 smithi105 bash[20254]: audit 2024-04-24T17:15:12.820880+0000 mon.smithi028 (mon.0) 388 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:13.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:13 smithi028 bash[18631]: cluster 2024-04-24T17:15:11.960380+0000 mgr.smithi028.zkmzde (mgr.14197) 140 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:13.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:13 smithi028 bash[18631]: cluster 2024-04-24T17:15:11.960380+0000 mgr.smithi028.zkmzde (mgr.14197) 140 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:13.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:13 smithi028 bash[18631]: audit 2024-04-24T17:15:12.820880+0000 mon.smithi028 (mon.0) 388 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:13.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:13 smithi028 bash[18631]: audit 2024-04-24T17:15:12.820880+0000 mon.smithi028 (mon.0) 388 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:15.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:15 smithi105 bash[20254]: cluster 2024-04-24T17:15:13.961364+0000 mgr.smithi028.zkmzde (mgr.14197) 141 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:15.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:15 smithi105 bash[20254]: cluster 2024-04-24T17:15:13.961364+0000 mgr.smithi028.zkmzde (mgr.14197) 141 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:15.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:15 smithi028 bash[18631]: cluster 2024-04-24T17:15:13.961364+0000 mgr.smithi028.zkmzde (mgr.14197) 141 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:15.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:15 smithi028 bash[18631]: cluster 2024-04-24T17:15:13.961364+0000 mgr.smithi028.zkmzde (mgr.14197) 141 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:17.086 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:15:17.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:17 smithi105 bash[20254]: cluster 2024-04-24T17:15:15.962305+0000 mgr.smithi028.zkmzde (mgr.14197) 142 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:17.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:17 smithi105 bash[20254]: cluster 2024-04-24T17:15:15.962305+0000 mgr.smithi028.zkmzde (mgr.14197) 142 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:17.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:17 smithi028 bash[18631]: cluster 2024-04-24T17:15:15.962305+0000 mgr.smithi028.zkmzde (mgr.14197) 142 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:17.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:17 smithi028 bash[18631]: cluster 2024-04-24T17:15:15.962305+0000 mgr.smithi028.zkmzde (mgr.14197) 142 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:18.408 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:15:19.090 INFO:teuthology.orchestra.run.smithi028.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-24T17:15:19.437 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:19 smithi028 bash[18631]: cluster 2024-04-24T17:15:17.963291+0000 mgr.smithi028.zkmzde (mgr.14197) 143 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:19.437 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:19 smithi028 bash[18631]: cluster 2024-04-24T17:15:17.963291+0000 mgr.smithi028.zkmzde (mgr.14197) 143 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:19.437 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:19 smithi028 bash[18631]: audit 2024-04-24T17:15:18.409233+0000 mon.smithi028 (mon.0) 389 : audit [DBG] from='client.? 172.21.15.28:0/2079494104' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:19.437 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:19 smithi028 bash[18631]: audit 2024-04-24T17:15:18.409233+0000 mon.smithi028 (mon.0) 389 : audit [DBG] from='client.? 172.21.15.28:0/2079494104' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:19.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:19 smithi105 bash[20254]: cluster 2024-04-24T17:15:17.963291+0000 mgr.smithi028.zkmzde (mgr.14197) 143 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:19.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:19 smithi105 bash[20254]: cluster 2024-04-24T17:15:17.963291+0000 mgr.smithi028.zkmzde (mgr.14197) 143 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:19.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:19 smithi105 bash[20254]: audit 2024-04-24T17:15:18.409233+0000 mon.smithi028 (mon.0) 389 : audit [DBG] from='client.? 172.21.15.28:0/2079494104' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:19.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:19 smithi105 bash[20254]: audit 2024-04-24T17:15:18.409233+0000 mon.smithi028 (mon.0) 389 : audit [DBG] from='client.? 172.21.15.28:0/2079494104' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:20.091 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:15:21.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:21 smithi105 bash[20254]: cluster 2024-04-24T17:15:19.964288+0000 mgr.smithi028.zkmzde (mgr.14197) 144 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:21.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:21 smithi105 bash[20254]: cluster 2024-04-24T17:15:19.964288+0000 mgr.smithi028.zkmzde (mgr.14197) 144 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:21.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:21 smithi028 bash[18631]: cluster 2024-04-24T17:15:19.964288+0000 mgr.smithi028.zkmzde (mgr.14197) 144 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:21.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:21 smithi028 bash[18631]: cluster 2024-04-24T17:15:19.964288+0000 mgr.smithi028.zkmzde (mgr.14197) 144 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:23.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:23 smithi105 bash[20254]: cluster 2024-04-24T17:15:21.965283+0000 mgr.smithi028.zkmzde (mgr.14197) 145 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:23.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:23 smithi105 bash[20254]: cluster 2024-04-24T17:15:21.965283+0000 mgr.smithi028.zkmzde (mgr.14197) 145 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:23.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:23 smithi028 bash[18631]: cluster 2024-04-24T17:15:21.965283+0000 mgr.smithi028.zkmzde (mgr.14197) 145 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:23.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:23 smithi028 bash[18631]: cluster 2024-04-24T17:15:21.965283+0000 mgr.smithi028.zkmzde (mgr.14197) 145 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:24.864 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:15:25.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:25 smithi028 bash[18631]: cluster 2024-04-24T17:15:23.966387+0000 mgr.smithi028.zkmzde (mgr.14197) 146 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:25.285 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:25 smithi028 bash[18631]: cluster 2024-04-24T17:15:23.966387+0000 mgr.smithi028.zkmzde (mgr.14197) 146 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:25.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:25 smithi105 bash[20254]: cluster 2024-04-24T17:15:23.966387+0000 mgr.smithi028.zkmzde (mgr.14197) 146 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:25.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:25 smithi105 bash[20254]: cluster 2024-04-24T17:15:23.966387+0000 mgr.smithi028.zkmzde (mgr.14197) 146 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:26.088 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:15:26.700 INFO:teuthology.orchestra.run.smithi028.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-24T17:15:27.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:27 smithi105 bash[20254]: cluster 2024-04-24T17:15:25.967346+0000 mgr.smithi028.zkmzde (mgr.14197) 147 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:27.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:27 smithi105 bash[20254]: cluster 2024-04-24T17:15:25.967346+0000 mgr.smithi028.zkmzde (mgr.14197) 147 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:27.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:27 smithi105 bash[20254]: audit 2024-04-24T17:15:26.090390+0000 mon.smithi028 (mon.0) 390 : audit [DBG] from='client.? 172.21.15.28:0/4042943882' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:27.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:27 smithi105 bash[20254]: audit 2024-04-24T17:15:26.090390+0000 mon.smithi028 (mon.0) 390 : audit [DBG] from='client.? 172.21.15.28:0/4042943882' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:27.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:27 smithi028 bash[18631]: cluster 2024-04-24T17:15:25.967346+0000 mgr.smithi028.zkmzde (mgr.14197) 147 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:27.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:27 smithi028 bash[18631]: cluster 2024-04-24T17:15:25.967346+0000 mgr.smithi028.zkmzde (mgr.14197) 147 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:27.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:27 smithi028 bash[18631]: audit 2024-04-24T17:15:26.090390+0000 mon.smithi028 (mon.0) 390 : audit [DBG] from='client.? 172.21.15.28:0/4042943882' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:27.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:27 smithi028 bash[18631]: audit 2024-04-24T17:15:26.090390+0000 mon.smithi028 (mon.0) 390 : audit [DBG] from='client.? 172.21.15.28:0/4042943882' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:27.701 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:15:28.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:28 smithi105 bash[20254]: audit 2024-04-24T17:15:27.821243+0000 mon.smithi028 (mon.0) 391 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:28.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:28 smithi105 bash[20254]: audit 2024-04-24T17:15:27.821243+0000 mon.smithi028 (mon.0) 391 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:28.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:28 smithi028 bash[18631]: audit 2024-04-24T17:15:27.821243+0000 mon.smithi028 (mon.0) 391 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:28.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:28 smithi028 bash[18631]: audit 2024-04-24T17:15:27.821243+0000 mon.smithi028 (mon.0) 391 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:29.472 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:29 smithi028 bash[18631]: cluster 2024-04-24T17:15:27.968317+0000 mgr.smithi028.zkmzde (mgr.14197) 148 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:29.472 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:29 smithi028 bash[18631]: cluster 2024-04-24T17:15:27.968317+0000 mgr.smithi028.zkmzde (mgr.14197) 148 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:29.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:29 smithi105 bash[20254]: cluster 2024-04-24T17:15:27.968317+0000 mgr.smithi028.zkmzde (mgr.14197) 148 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:29.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:29 smithi105 bash[20254]: cluster 2024-04-24T17:15:27.968317+0000 mgr.smithi028.zkmzde (mgr.14197) 148 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:31.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:31 smithi105 bash[20254]: cluster 2024-04-24T17:15:29.969319+0000 mgr.smithi028.zkmzde (mgr.14197) 149 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:31.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:31 smithi105 bash[20254]: cluster 2024-04-24T17:15:29.969319+0000 mgr.smithi028.zkmzde (mgr.14197) 149 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:31.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:31 smithi028 bash[18631]: cluster 2024-04-24T17:15:29.969319+0000 mgr.smithi028.zkmzde (mgr.14197) 149 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:31.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:31 smithi028 bash[18631]: cluster 2024-04-24T17:15:29.969319+0000 mgr.smithi028.zkmzde (mgr.14197) 149 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:32.477 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:15:33.274 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:33 smithi105 bash[20254]: cluster 2024-04-24T17:15:31.970190+0000 mgr.smithi028.zkmzde (mgr.14197) 150 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:33.274 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:33 smithi105 bash[20254]: cluster 2024-04-24T17:15:31.970190+0000 mgr.smithi028.zkmzde (mgr.14197) 150 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:33.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:33 smithi028 bash[18631]: cluster 2024-04-24T17:15:31.970190+0000 mgr.smithi028.zkmzde (mgr.14197) 150 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:33.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:33 smithi028 bash[18631]: cluster 2024-04-24T17:15:31.970190+0000 mgr.smithi028.zkmzde (mgr.14197) 150 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:33.673 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:15:34.291 INFO:teuthology.orchestra.run.smithi028.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-24T17:15:34.490 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:34 smithi028 bash[18631]: audit 2024-04-24T17:15:33.675179+0000 mon.smithi028 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.28:0/4102445398' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:34.490 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:34 smithi028 bash[18631]: audit 2024-04-24T17:15:33.675179+0000 mon.smithi028 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.28:0/4102445398' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:34.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:34 smithi105 bash[20254]: audit 2024-04-24T17:15:33.675179+0000 mon.smithi028 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.28:0/4102445398' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:34.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:34 smithi105 bash[20254]: audit 2024-04-24T17:15:33.675179+0000 mon.smithi028 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.28:0/4102445398' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:35.292 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:15:35.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:35 smithi105 bash[20254]: cluster 2024-04-24T17:15:33.971169+0000 mgr.smithi028.zkmzde (mgr.14197) 151 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:35.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:35 smithi105 bash[20254]: cluster 2024-04-24T17:15:33.971169+0000 mgr.smithi028.zkmzde (mgr.14197) 151 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:35.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:35 smithi028 bash[18631]: cluster 2024-04-24T17:15:33.971169+0000 mgr.smithi028.zkmzde (mgr.14197) 151 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:35.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:35 smithi028 bash[18631]: cluster 2024-04-24T17:15:33.971169+0000 mgr.smithi028.zkmzde (mgr.14197) 151 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:37.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:37 smithi105 bash[20254]: cluster 2024-04-24T17:15:35.972252+0000 mgr.smithi028.zkmzde (mgr.14197) 152 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:37.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:37 smithi105 bash[20254]: cluster 2024-04-24T17:15:35.972252+0000 mgr.smithi028.zkmzde (mgr.14197) 152 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:37.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:37 smithi028 bash[18631]: cluster 2024-04-24T17:15:35.972252+0000 mgr.smithi028.zkmzde (mgr.14197) 152 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:37.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:37 smithi028 bash[18631]: cluster 2024-04-24T17:15:35.972252+0000 mgr.smithi028.zkmzde (mgr.14197) 152 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:39.509 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:39 smithi028 bash[18631]: cluster 2024-04-24T17:15:37.973367+0000 mgr.smithi028.zkmzde (mgr.14197) 153 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:39.509 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:39 smithi028 bash[18631]: cluster 2024-04-24T17:15:37.973367+0000 mgr.smithi028.zkmzde (mgr.14197) 153 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:39.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:39 smithi105 bash[20254]: cluster 2024-04-24T17:15:37.973367+0000 mgr.smithi028.zkmzde (mgr.14197) 153 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:39.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:39 smithi105 bash[20254]: cluster 2024-04-24T17:15:37.973367+0000 mgr.smithi028.zkmzde (mgr.14197) 153 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:40.060 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:15:41.244 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:15:41.407 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:41 smithi028 bash[18631]: cluster 2024-04-24T17:15:39.974498+0000 mgr.smithi028.zkmzde (mgr.14197) 154 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:41.407 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:41 smithi028 bash[18631]: cluster 2024-04-24T17:15:39.974498+0000 mgr.smithi028.zkmzde (mgr.14197) 154 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:41.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:41 smithi105 bash[20254]: cluster 2024-04-24T17:15:39.974498+0000 mgr.smithi028.zkmzde (mgr.14197) 154 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:41.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:41 smithi105 bash[20254]: cluster 2024-04-24T17:15:39.974498+0000 mgr.smithi028.zkmzde (mgr.14197) 154 : cluster [DBG] pgmap v101: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:41.828 INFO:teuthology.orchestra.run.smithi028.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-24T17:15:42.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:42 smithi105 bash[20254]: audit 2024-04-24T17:15:41.246222+0000 mon.smithi028 (mon.0) 393 : audit [DBG] from='client.? 172.21.15.28:0/4161764891' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:42.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:42 smithi105 bash[20254]: audit 2024-04-24T17:15:41.246222+0000 mon.smithi028 (mon.0) 393 : audit [DBG] from='client.? 172.21.15.28:0/4161764891' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:42.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:42 smithi028 bash[18631]: audit 2024-04-24T17:15:41.246222+0000 mon.smithi028 (mon.0) 393 : audit [DBG] from='client.? 172.21.15.28:0/4161764891' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:42.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:42 smithi028 bash[18631]: audit 2024-04-24T17:15:41.246222+0000 mon.smithi028 (mon.0) 393 : audit [DBG] from='client.? 172.21.15.28:0/4161764891' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:42.829 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:15:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:43 smithi105 bash[20254]: cluster 2024-04-24T17:15:41.975529+0000 mgr.smithi028.zkmzde (mgr.14197) 155 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:43 smithi105 bash[20254]: cluster 2024-04-24T17:15:41.975529+0000 mgr.smithi028.zkmzde (mgr.14197) 155 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:43 smithi105 bash[20254]: audit 2024-04-24T17:15:42.821659+0000 mon.smithi028 (mon.0) 394 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:43 smithi105 bash[20254]: audit 2024-04-24T17:15:42.821659+0000 mon.smithi028 (mon.0) 394 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:43 smithi028 bash[18631]: cluster 2024-04-24T17:15:41.975529+0000 mgr.smithi028.zkmzde (mgr.14197) 155 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:43 smithi028 bash[18631]: cluster 2024-04-24T17:15:41.975529+0000 mgr.smithi028.zkmzde (mgr.14197) 155 : cluster [DBG] pgmap v102: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:43 smithi028 bash[18631]: audit 2024-04-24T17:15:42.821659+0000 mon.smithi028 (mon.0) 394 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:43 smithi028 bash[18631]: audit 2024-04-24T17:15:42.821659+0000 mon.smithi028 (mon.0) 394 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:45.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:45 smithi105 bash[20254]: cluster 2024-04-24T17:15:43.976505+0000 mgr.smithi028.zkmzde (mgr.14197) 156 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:45.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:45 smithi105 bash[20254]: cluster 2024-04-24T17:15:43.976505+0000 mgr.smithi028.zkmzde (mgr.14197) 156 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:45.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:45 smithi028 bash[18631]: cluster 2024-04-24T17:15:43.976505+0000 mgr.smithi028.zkmzde (mgr.14197) 156 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:45.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:45 smithi028 bash[18631]: cluster 2024-04-24T17:15:43.976505+0000 mgr.smithi028.zkmzde (mgr.14197) 156 : cluster [DBG] pgmap v103: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:47.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:47 smithi105 bash[20254]: cluster 2024-04-24T17:15:45.977541+0000 mgr.smithi028.zkmzde (mgr.14197) 157 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:47.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:47 smithi105 bash[20254]: cluster 2024-04-24T17:15:45.977541+0000 mgr.smithi028.zkmzde (mgr.14197) 157 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:47.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:47 smithi028 bash[18631]: cluster 2024-04-24T17:15:45.977541+0000 mgr.smithi028.zkmzde (mgr.14197) 157 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:47.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:47 smithi028 bash[18631]: cluster 2024-04-24T17:15:45.977541+0000 mgr.smithi028.zkmzde (mgr.14197) 157 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:47.605 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:15:48.790 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:15:49.428 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:49 smithi028 bash[18631]: cluster 2024-04-24T17:15:47.978489+0000 mgr.smithi028.zkmzde (mgr.14197) 158 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:49.428 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:49 smithi028 bash[18631]: cluster 2024-04-24T17:15:47.978489+0000 mgr.smithi028.zkmzde (mgr.14197) 158 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:49.428 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:49 smithi028 bash[18631]: audit 2024-04-24T17:15:48.792033+0000 mon.smithi028 (mon.0) 395 : audit [DBG] from='client.? 172.21.15.28:0/991565376' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:49.428 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:49 smithi028 bash[18631]: audit 2024-04-24T17:15:48.792033+0000 mon.smithi028 (mon.0) 395 : audit [DBG] from='client.? 172.21.15.28:0/991565376' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:49.429 INFO:teuthology.orchestra.run.smithi028.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-24T17:15:49.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:49 smithi105 bash[20254]: cluster 2024-04-24T17:15:47.978489+0000 mgr.smithi028.zkmzde (mgr.14197) 158 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:49.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:49 smithi105 bash[20254]: cluster 2024-04-24T17:15:47.978489+0000 mgr.smithi028.zkmzde (mgr.14197) 158 : cluster [DBG] pgmap v105: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:49.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:49 smithi105 bash[20254]: audit 2024-04-24T17:15:48.792033+0000 mon.smithi028 (mon.0) 395 : audit [DBG] from='client.? 172.21.15.28:0/991565376' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:49.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:49 smithi105 bash[20254]: audit 2024-04-24T17:15:48.792033+0000 mon.smithi028 (mon.0) 395 : audit [DBG] from='client.? 172.21.15.28:0/991565376' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:50.430 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:15:51.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:51 smithi105 bash[20254]: cluster 2024-04-24T17:15:49.979472+0000 mgr.smithi028.zkmzde (mgr.14197) 159 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:51.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:51 smithi105 bash[20254]: cluster 2024-04-24T17:15:49.979472+0000 mgr.smithi028.zkmzde (mgr.14197) 159 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:51.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:51 smithi028 bash[18631]: cluster 2024-04-24T17:15:49.979472+0000 mgr.smithi028.zkmzde (mgr.14197) 159 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:51.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:51 smithi028 bash[18631]: cluster 2024-04-24T17:15:49.979472+0000 mgr.smithi028.zkmzde (mgr.14197) 159 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:53.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:53 smithi105 bash[20254]: cluster 2024-04-24T17:15:51.980446+0000 mgr.smithi028.zkmzde (mgr.14197) 160 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:53.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:53 smithi105 bash[20254]: cluster 2024-04-24T17:15:51.980446+0000 mgr.smithi028.zkmzde (mgr.14197) 160 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:53.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:53 smithi028 bash[18631]: cluster 2024-04-24T17:15:51.980446+0000 mgr.smithi028.zkmzde (mgr.14197) 160 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:53.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:53 smithi028 bash[18631]: cluster 2024-04-24T17:15:51.980446+0000 mgr.smithi028.zkmzde (mgr.14197) 160 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:55.206 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:15:55.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:55 smithi105 bash[20254]: cluster 2024-04-24T17:15:53.981461+0000 mgr.smithi028.zkmzde (mgr.14197) 161 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:55.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:55 smithi105 bash[20254]: cluster 2024-04-24T17:15:53.981461+0000 mgr.smithi028.zkmzde (mgr.14197) 161 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:55.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:55 smithi028 bash[18631]: cluster 2024-04-24T17:15:53.981461+0000 mgr.smithi028.zkmzde (mgr.14197) 161 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:55.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:55 smithi028 bash[18631]: cluster 2024-04-24T17:15:53.981461+0000 mgr.smithi028.zkmzde (mgr.14197) 161 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:56.477 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:15:56.491 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:56 smithi028 bash[18631]: audit 2024-04-24T17:15:56.059772+0000 mon.smithi028 (mon.0) 396 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:15:56.491 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:56 smithi028 bash[18631]: audit 2024-04-24T17:15:56.059772+0000 mon.smithi028 (mon.0) 396 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:15:56.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:56 smithi105 bash[20254]: audit 2024-04-24T17:15:56.059772+0000 mon.smithi028 (mon.0) 396 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:15:56.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:56 smithi105 bash[20254]: audit 2024-04-24T17:15:56.059772+0000 mon.smithi028 (mon.0) 396 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:15:57.076 INFO:teuthology.orchestra.run.smithi028.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-24T17:15:57.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:57 smithi105 bash[20254]: cluster 2024-04-24T17:15:55.982473+0000 mgr.smithi028.zkmzde (mgr.14197) 162 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:57.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:57 smithi105 bash[20254]: cluster 2024-04-24T17:15:55.982473+0000 mgr.smithi028.zkmzde (mgr.14197) 162 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:57.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:57 smithi105 bash[20254]: audit 2024-04-24T17:15:56.479400+0000 mon.smithi028 (mon.0) 397 : audit [DBG] from='client.? 172.21.15.28:0/1131170310' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:57.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:57 smithi105 bash[20254]: audit 2024-04-24T17:15:56.479400+0000 mon.smithi028 (mon.0) 397 : audit [DBG] from='client.? 172.21.15.28:0/1131170310' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:57.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:57 smithi028 bash[18631]: cluster 2024-04-24T17:15:55.982473+0000 mgr.smithi028.zkmzde (mgr.14197) 162 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:57.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:57 smithi028 bash[18631]: cluster 2024-04-24T17:15:55.982473+0000 mgr.smithi028.zkmzde (mgr.14197) 162 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:57.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:57 smithi028 bash[18631]: audit 2024-04-24T17:15:56.479400+0000 mon.smithi028 (mon.0) 397 : audit [DBG] from='client.? 172.21.15.28:0/1131170310' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:57.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:57 smithi028 bash[18631]: audit 2024-04-24T17:15:56.479400+0000 mon.smithi028 (mon.0) 397 : audit [DBG] from='client.? 172.21.15.28:0/1131170310' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:15:58.078 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:15:58.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:58 smithi105 bash[20254]: audit 2024-04-24T17:15:57.822226+0000 mon.smithi028 (mon.0) 398 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:58.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:58 smithi105 bash[20254]: audit 2024-04-24T17:15:57.822226+0000 mon.smithi028 (mon.0) 398 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:58.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:58 smithi028 bash[18631]: audit 2024-04-24T17:15:57.822226+0000 mon.smithi028 (mon.0) 398 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:58.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:58 smithi028 bash[18631]: audit 2024-04-24T17:15:57.822226+0000 mon.smithi028 (mon.0) 398 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:15:59.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:59 smithi105 bash[20254]: cluster 2024-04-24T17:15:57.983480+0000 mgr.smithi028.zkmzde (mgr.14197) 163 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:59.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:15:59 smithi105 bash[20254]: cluster 2024-04-24T17:15:57.983480+0000 mgr.smithi028.zkmzde (mgr.14197) 163 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:59.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:59 smithi028 bash[18631]: cluster 2024-04-24T17:15:57.983480+0000 mgr.smithi028.zkmzde (mgr.14197) 163 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:15:59.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:15:59 smithi028 bash[18631]: cluster 2024-04-24T17:15:57.983480+0000 mgr.smithi028.zkmzde (mgr.14197) 163 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:01.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:01 smithi105 bash[20254]: cluster 2024-04-24T17:15:59.984466+0000 mgr.smithi028.zkmzde (mgr.14197) 164 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:01.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:01 smithi105 bash[20254]: cluster 2024-04-24T17:15:59.984466+0000 mgr.smithi028.zkmzde (mgr.14197) 164 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:01.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:01 smithi028 bash[18631]: cluster 2024-04-24T17:15:59.984466+0000 mgr.smithi028.zkmzde (mgr.14197) 164 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:01.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:01 smithi028 bash[18631]: cluster 2024-04-24T17:15:59.984466+0000 mgr.smithi028.zkmzde (mgr.14197) 164 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:02.101 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:16:02.744 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:02 smithi028 bash[18631]: audit 2024-04-24T17:16:01.454288+0000 mon.smithi028 (mon.0) 399 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:16:02.744 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:02 smithi028 bash[18631]: audit 2024-04-24T17:16:01.454288+0000 mon.smithi028 (mon.0) 399 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:16:02.744 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:02 smithi028 bash[18631]: cluster 2024-04-24T17:16:01.984914+0000 mgr.smithi028.zkmzde (mgr.14197) 165 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:02.744 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:02 smithi028 bash[18631]: cluster 2024-04-24T17:16:01.984914+0000 mgr.smithi028.zkmzde (mgr.14197) 165 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:02.744 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:02 smithi028 bash[18631]: audit 2024-04-24T17:16:02.015125+0000 mon.smithi028 (mon.0) 400 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:16:02.744 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:02 smithi028 bash[18631]: audit 2024-04-24T17:16:02.015125+0000 mon.smithi028 (mon.0) 400 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:16:02.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:02 smithi105 bash[20254]: audit 2024-04-24T17:16:01.454288+0000 mon.smithi028 (mon.0) 399 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:16:02.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:02 smithi105 bash[20254]: audit 2024-04-24T17:16:01.454288+0000 mon.smithi028 (mon.0) 399 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:16:02.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:02 smithi105 bash[20254]: cluster 2024-04-24T17:16:01.984914+0000 mgr.smithi028.zkmzde (mgr.14197) 165 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:02.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:02 smithi105 bash[20254]: cluster 2024-04-24T17:16:01.984914+0000 mgr.smithi028.zkmzde (mgr.14197) 165 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:02.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:02 smithi105 bash[20254]: audit 2024-04-24T17:16:02.015125+0000 mon.smithi028 (mon.0) 400 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:16:02.771 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:02 smithi105 bash[20254]: audit 2024-04-24T17:16:02.015125+0000 mon.smithi028 (mon.0) 400 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:16:03.146 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:16:03.753 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:03 smithi028 bash[18631]: audit 2024-04-24T17:16:03.147784+0000 mon.smithi028 (mon.0) 401 : audit [DBG] from='client.? 172.21.15.28:0/968799800' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:03.754 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:03 smithi028 bash[18631]: audit 2024-04-24T17:16:03.147784+0000 mon.smithi028 (mon.0) 401 : audit [DBG] from='client.? 172.21.15.28:0/968799800' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:03.754 INFO:teuthology.orchestra.run.smithi028.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-24T17:16:03.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:03 smithi105 bash[20254]: audit 2024-04-24T17:16:03.147784+0000 mon.smithi028 (mon.0) 401 : audit [DBG] from='client.? 172.21.15.28:0/968799800' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:03.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:03 smithi105 bash[20254]: audit 2024-04-24T17:16:03.147784+0000 mon.smithi028 (mon.0) 401 : audit [DBG] from='client.? 172.21.15.28:0/968799800' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:04.756 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:16:04.767 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:04 smithi028 bash[18631]: cluster 2024-04-24T17:16:03.985883+0000 mgr.smithi028.zkmzde (mgr.14197) 166 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:04.767 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:04 smithi028 bash[18631]: cluster 2024-04-24T17:16:03.985883+0000 mgr.smithi028.zkmzde (mgr.14197) 166 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:04.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:04 smithi105 bash[20254]: cluster 2024-04-24T17:16:03.985883+0000 mgr.smithi028.zkmzde (mgr.14197) 166 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:04.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:04 smithi105 bash[20254]: cluster 2024-04-24T17:16:03.985883+0000 mgr.smithi028.zkmzde (mgr.14197) 166 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:07.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:07 smithi105 bash[20254]: cluster 2024-04-24T17:16:05.986880+0000 mgr.smithi028.zkmzde (mgr.14197) 167 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:07.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:07 smithi105 bash[20254]: cluster 2024-04-24T17:16:05.986880+0000 mgr.smithi028.zkmzde (mgr.14197) 167 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:07.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:07 smithi028 bash[18631]: cluster 2024-04-24T17:16:05.986880+0000 mgr.smithi028.zkmzde (mgr.14197) 167 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:07.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:07 smithi028 bash[18631]: cluster 2024-04-24T17:16:05.986880+0000 mgr.smithi028.zkmzde (mgr.14197) 167 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:08.608 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:16:09.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:09 smithi105 bash[20254]: cluster 2024-04-24T17:16:07.987819+0000 mgr.smithi028.zkmzde (mgr.14197) 168 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:09.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:09 smithi105 bash[20254]: cluster 2024-04-24T17:16:07.987819+0000 mgr.smithi028.zkmzde (mgr.14197) 168 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:09.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:09 smithi028 bash[18631]: cluster 2024-04-24T17:16:07.987819+0000 mgr.smithi028.zkmzde (mgr.14197) 168 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:09.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:09 smithi028 bash[18631]: cluster 2024-04-24T17:16:07.987819+0000 mgr.smithi028.zkmzde (mgr.14197) 168 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:10.028 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:16:10.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:10 smithi105 bash[20254]: audit 2024-04-24T17:16:09.620322+0000 mon.smithi028 (mon.0) 402 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:16:10.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:10 smithi105 bash[20254]: audit 2024-04-24T17:16:09.620322+0000 mon.smithi028 (mon.0) 402 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:16:10.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:10 smithi105 bash[20254]: audit 2024-04-24T17:16:09.622945+0000 mon.smithi028 (mon.0) 403 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:16:10.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:10 smithi105 bash[20254]: audit 2024-04-24T17:16:09.622945+0000 mon.smithi028 (mon.0) 403 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:16:10.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:10 smithi105 bash[20254]: audit 2024-04-24T17:16:09.633925+0000 mon.smithi028 (mon.0) 404 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:16:10.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:10 smithi105 bash[20254]: audit 2024-04-24T17:16:09.633925+0000 mon.smithi028 (mon.0) 404 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:16:10.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:10 smithi105 bash[20254]: audit 2024-04-24T17:16:09.638510+0000 mon.smithi028 (mon.0) 405 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:16:10.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:10 smithi105 bash[20254]: audit 2024-04-24T17:16:09.638510+0000 mon.smithi028 (mon.0) 405 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:16:10.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:10 smithi105 bash[20254]: audit 2024-04-24T17:16:10.029202+0000 mon.smithi028 (mon.0) 406 : audit [DBG] from='client.? 172.21.15.28:0/3184786801' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:10.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:10 smithi105 bash[20254]: audit 2024-04-24T17:16:10.029202+0000 mon.smithi028 (mon.0) 406 : audit [DBG] from='client.? 172.21.15.28:0/3184786801' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:10.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:10 smithi028 bash[18631]: audit 2024-04-24T17:16:09.620322+0000 mon.smithi028 (mon.0) 402 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:16:10.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:10 smithi028 bash[18631]: audit 2024-04-24T17:16:09.620322+0000 mon.smithi028 (mon.0) 402 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:16:10.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:10 smithi028 bash[18631]: audit 2024-04-24T17:16:09.622945+0000 mon.smithi028 (mon.0) 403 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:16:10.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:10 smithi028 bash[18631]: audit 2024-04-24T17:16:09.622945+0000 mon.smithi028 (mon.0) 403 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:16:10.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:10 smithi028 bash[18631]: audit 2024-04-24T17:16:09.633925+0000 mon.smithi028 (mon.0) 404 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:16:10.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:10 smithi028 bash[18631]: audit 2024-04-24T17:16:09.633925+0000 mon.smithi028 (mon.0) 404 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:16:10.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:10 smithi028 bash[18631]: audit 2024-04-24T17:16:09.638510+0000 mon.smithi028 (mon.0) 405 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:16:10.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:10 smithi028 bash[18631]: audit 2024-04-24T17:16:09.638510+0000 mon.smithi028 (mon.0) 405 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:16:10.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:10 smithi028 bash[18631]: audit 2024-04-24T17:16:10.029202+0000 mon.smithi028 (mon.0) 406 : audit [DBG] from='client.? 172.21.15.28:0/3184786801' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:10.535 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:10 smithi028 bash[18631]: audit 2024-04-24T17:16:10.029202+0000 mon.smithi028 (mon.0) 406 : audit [DBG] from='client.? 172.21.15.28:0/3184786801' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:10.723 INFO:teuthology.orchestra.run.smithi028.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-24T17:16:11.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:11 smithi105 bash[20254]: cluster 2024-04-24T17:16:09.627629+0000 mgr.smithi028.zkmzde (mgr.14197) 169 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:11.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:11 smithi105 bash[20254]: cluster 2024-04-24T17:16:09.627629+0000 mgr.smithi028.zkmzde (mgr.14197) 169 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:11.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:11 smithi105 bash[20254]: cluster 2024-04-24T17:16:09.628085+0000 mgr.smithi028.zkmzde (mgr.14197) 170 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:11.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:11 smithi105 bash[20254]: cluster 2024-04-24T17:16:09.628085+0000 mgr.smithi028.zkmzde (mgr.14197) 170 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:11.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:11 smithi028 bash[18631]: cluster 2024-04-24T17:16:09.627629+0000 mgr.smithi028.zkmzde (mgr.14197) 169 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:11.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:11 smithi028 bash[18631]: cluster 2024-04-24T17:16:09.627629+0000 mgr.smithi028.zkmzde (mgr.14197) 169 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:11.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:11 smithi028 bash[18631]: cluster 2024-04-24T17:16:09.628085+0000 mgr.smithi028.zkmzde (mgr.14197) 170 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:11.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:11 smithi028 bash[18631]: cluster 2024-04-24T17:16:09.628085+0000 mgr.smithi028.zkmzde (mgr.14197) 170 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:11.725 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:16:13.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:13 smithi105 bash[20254]: cluster 2024-04-24T17:16:11.629133+0000 mgr.smithi028.zkmzde (mgr.14197) 171 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:13 smithi105 bash[20254]: cluster 2024-04-24T17:16:11.629133+0000 mgr.smithi028.zkmzde (mgr.14197) 171 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:13 smithi105 bash[20254]: audit 2024-04-24T17:16:12.822862+0000 mon.smithi028 (mon.0) 407 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:13.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:13 smithi105 bash[20254]: audit 2024-04-24T17:16:12.822862+0000 mon.smithi028 (mon.0) 407 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:13.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:13 smithi028 bash[18631]: cluster 2024-04-24T17:16:11.629133+0000 mgr.smithi028.zkmzde (mgr.14197) 171 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:13.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:13 smithi028 bash[18631]: cluster 2024-04-24T17:16:11.629133+0000 mgr.smithi028.zkmzde (mgr.14197) 171 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:13.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:13 smithi028 bash[18631]: audit 2024-04-24T17:16:12.822862+0000 mon.smithi028 (mon.0) 407 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:13.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:13 smithi028 bash[18631]: audit 2024-04-24T17:16:12.822862+0000 mon.smithi028 (mon.0) 407 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:15.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:15 smithi105 bash[20254]: cluster 2024-04-24T17:16:13.630278+0000 mgr.smithi028.zkmzde (mgr.14197) 172 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:15.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:15 smithi105 bash[20254]: cluster 2024-04-24T17:16:13.630278+0000 mgr.smithi028.zkmzde (mgr.14197) 172 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:15.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:15 smithi028 bash[18631]: cluster 2024-04-24T17:16:13.630278+0000 mgr.smithi028.zkmzde (mgr.14197) 172 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:15.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:15 smithi028 bash[18631]: cluster 2024-04-24T17:16:13.630278+0000 mgr.smithi028.zkmzde (mgr.14197) 172 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:16.497 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:16:17.369 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:17 smithi028 bash[18631]: cluster 2024-04-24T17:16:15.631388+0000 mgr.smithi028.zkmzde (mgr.14197) 173 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:17.369 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:17 smithi028 bash[18631]: cluster 2024-04-24T17:16:15.631388+0000 mgr.smithi028.zkmzde (mgr.14197) 173 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:17.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:17 smithi105 bash[20254]: cluster 2024-04-24T17:16:15.631388+0000 mgr.smithi028.zkmzde (mgr.14197) 173 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:17.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:17 smithi105 bash[20254]: cluster 2024-04-24T17:16:15.631388+0000 mgr.smithi028.zkmzde (mgr.14197) 173 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:17.750 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:16:18.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:18 smithi105 bash[20254]: audit 2024-04-24T17:16:17.752360+0000 mon.smithi028 (mon.0) 408 : audit [DBG] from='client.? 172.21.15.28:0/2805997912' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:18.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:18 smithi105 bash[20254]: audit 2024-04-24T17:16:17.752360+0000 mon.smithi028 (mon.0) 408 : audit [DBG] from='client.? 172.21.15.28:0/2805997912' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:18.379 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:18 smithi028 bash[18631]: audit 2024-04-24T17:16:17.752360+0000 mon.smithi028 (mon.0) 408 : audit [DBG] from='client.? 172.21.15.28:0/2805997912' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:18.379 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:18 smithi028 bash[18631]: audit 2024-04-24T17:16:17.752360+0000 mon.smithi028 (mon.0) 408 : audit [DBG] from='client.? 172.21.15.28:0/2805997912' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:18.380 INFO:teuthology.orchestra.run.smithi028.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-24T17:16:19.381 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:16:19.393 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:19 smithi028 bash[18631]: cluster 2024-04-24T17:16:17.632382+0000 mgr.smithi028.zkmzde (mgr.14197) 174 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:19.393 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:19 smithi028 bash[18631]: cluster 2024-04-24T17:16:17.632382+0000 mgr.smithi028.zkmzde (mgr.14197) 174 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:19.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:19 smithi105 bash[20254]: cluster 2024-04-24T17:16:17.632382+0000 mgr.smithi028.zkmzde (mgr.14197) 174 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:19.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:19 smithi105 bash[20254]: cluster 2024-04-24T17:16:17.632382+0000 mgr.smithi028.zkmzde (mgr.14197) 174 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:21.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:21 smithi105 bash[20254]: cluster 2024-04-24T17:16:19.633369+0000 mgr.smithi028.zkmzde (mgr.14197) 175 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:21.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:21 smithi105 bash[20254]: cluster 2024-04-24T17:16:19.633369+0000 mgr.smithi028.zkmzde (mgr.14197) 175 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:21.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:21 smithi028 bash[18631]: cluster 2024-04-24T17:16:19.633369+0000 mgr.smithi028.zkmzde (mgr.14197) 175 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:21.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:21 smithi028 bash[18631]: cluster 2024-04-24T17:16:19.633369+0000 mgr.smithi028.zkmzde (mgr.14197) 175 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:23.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:23 smithi105 bash[20254]: cluster 2024-04-24T17:16:21.634307+0000 mgr.smithi028.zkmzde (mgr.14197) 176 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:23.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:23 smithi105 bash[20254]: cluster 2024-04-24T17:16:21.634307+0000 mgr.smithi028.zkmzde (mgr.14197) 176 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:23.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:23 smithi028 bash[18631]: cluster 2024-04-24T17:16:21.634307+0000 mgr.smithi028.zkmzde (mgr.14197) 176 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:23.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:23 smithi028 bash[18631]: cluster 2024-04-24T17:16:21.634307+0000 mgr.smithi028.zkmzde (mgr.14197) 176 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:24.167 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:16:25.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:25 smithi028 bash[18631]: cluster 2024-04-24T17:16:23.635327+0000 mgr.smithi028.zkmzde (mgr.14197) 177 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:25.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:25 smithi028 bash[18631]: cluster 2024-04-24T17:16:23.635327+0000 mgr.smithi028.zkmzde (mgr.14197) 177 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:25.324 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:16:25.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:25 smithi105 bash[20254]: cluster 2024-04-24T17:16:23.635327+0000 mgr.smithi028.zkmzde (mgr.14197) 177 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:25.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:25 smithi105 bash[20254]: cluster 2024-04-24T17:16:23.635327+0000 mgr.smithi028.zkmzde (mgr.14197) 177 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:25.886 INFO:teuthology.orchestra.run.smithi028.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-24T17:16:26.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:26 smithi028 bash[18631]: audit 2024-04-24T17:16:25.325920+0000 mon.smithi028 (mon.0) 409 : audit [DBG] from='client.? 172.21.15.28:0/219106962' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:26.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:26 smithi028 bash[18631]: audit 2024-04-24T17:16:25.325920+0000 mon.smithi028 (mon.0) 409 : audit [DBG] from='client.? 172.21.15.28:0/219106962' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:26.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:26 smithi105 bash[20254]: audit 2024-04-24T17:16:25.325920+0000 mon.smithi028 (mon.0) 409 : audit [DBG] from='client.? 172.21.15.28:0/219106962' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:26.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:26 smithi105 bash[20254]: audit 2024-04-24T17:16:25.325920+0000 mon.smithi028 (mon.0) 409 : audit [DBG] from='client.? 172.21.15.28:0/219106962' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:26.888 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:16:27.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:27 smithi028 bash[18631]: cluster 2024-04-24T17:16:25.636314+0000 mgr.smithi028.zkmzde (mgr.14197) 178 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:27.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:27 smithi028 bash[18631]: cluster 2024-04-24T17:16:25.636314+0000 mgr.smithi028.zkmzde (mgr.14197) 178 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:27.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:27 smithi105 bash[20254]: cluster 2024-04-24T17:16:25.636314+0000 mgr.smithi028.zkmzde (mgr.14197) 178 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:27.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:27 smithi105 bash[20254]: cluster 2024-04-24T17:16:25.636314+0000 mgr.smithi028.zkmzde (mgr.14197) 178 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:28.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:28 smithi105 bash[20254]: audit 2024-04-24T17:16:27.823363+0000 mon.smithi028 (mon.0) 410 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:28.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:28 smithi105 bash[20254]: audit 2024-04-24T17:16:27.823363+0000 mon.smithi028 (mon.0) 410 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:28.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:28 smithi028 bash[18631]: audit 2024-04-24T17:16:27.823363+0000 mon.smithi028 (mon.0) 410 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:28.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:28 smithi028 bash[18631]: audit 2024-04-24T17:16:27.823363+0000 mon.smithi028 (mon.0) 410 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:29.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:29 smithi105 bash[20254]: cluster 2024-04-24T17:16:27.637320+0000 mgr.smithi028.zkmzde (mgr.14197) 179 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:29.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:29 smithi105 bash[20254]: cluster 2024-04-24T17:16:27.637320+0000 mgr.smithi028.zkmzde (mgr.14197) 179 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:29.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:29 smithi028 bash[18631]: cluster 2024-04-24T17:16:27.637320+0000 mgr.smithi028.zkmzde (mgr.14197) 179 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:29.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:29 smithi028 bash[18631]: cluster 2024-04-24T17:16:27.637320+0000 mgr.smithi028.zkmzde (mgr.14197) 179 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:31.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:31 smithi105 bash[20254]: cluster 2024-04-24T17:16:29.637889+0000 mgr.smithi028.zkmzde (mgr.14197) 180 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:31.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:31 smithi105 bash[20254]: cluster 2024-04-24T17:16:29.637889+0000 mgr.smithi028.zkmzde (mgr.14197) 180 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:31.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:31 smithi028 bash[18631]: cluster 2024-04-24T17:16:29.637889+0000 mgr.smithi028.zkmzde (mgr.14197) 180 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:31.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:31 smithi028 bash[18631]: cluster 2024-04-24T17:16:29.637889+0000 mgr.smithi028.zkmzde (mgr.14197) 180 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:31.659 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:16:32.917 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:16:33.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:33 smithi105 bash[20254]: cluster 2024-04-24T17:16:31.638889+0000 mgr.smithi028.zkmzde (mgr.14197) 181 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:33.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:33 smithi105 bash[20254]: cluster 2024-04-24T17:16:31.638889+0000 mgr.smithi028.zkmzde (mgr.14197) 181 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:33.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:33 smithi105 bash[20254]: audit 2024-04-24T17:16:32.918210+0000 mon.smithi028 (mon.0) 411 : audit [DBG] from='client.? 172.21.15.28:0/1550723162' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:33.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:33 smithi105 bash[20254]: audit 2024-04-24T17:16:32.918210+0000 mon.smithi028 (mon.0) 411 : audit [DBG] from='client.? 172.21.15.28:0/1550723162' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:33.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:33 smithi028 bash[18631]: cluster 2024-04-24T17:16:31.638889+0000 mgr.smithi028.zkmzde (mgr.14197) 181 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:33.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:33 smithi028 bash[18631]: cluster 2024-04-24T17:16:31.638889+0000 mgr.smithi028.zkmzde (mgr.14197) 181 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:33.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:33 smithi028 bash[18631]: audit 2024-04-24T17:16:32.918210+0000 mon.smithi028 (mon.0) 411 : audit [DBG] from='client.? 172.21.15.28:0/1550723162' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:33.284 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:33 smithi028 bash[18631]: audit 2024-04-24T17:16:32.918210+0000 mon.smithi028 (mon.0) 411 : audit [DBG] from='client.? 172.21.15.28:0/1550723162' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:33.516 INFO:teuthology.orchestra.run.smithi028.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-24T17:16:34.517 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:16:35.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:35 smithi105 bash[20254]: cluster 2024-04-24T17:16:33.639907+0000 mgr.smithi028.zkmzde (mgr.14197) 182 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:35.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:35 smithi105 bash[20254]: cluster 2024-04-24T17:16:33.639907+0000 mgr.smithi028.zkmzde (mgr.14197) 182 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:35.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:35 smithi028 bash[18631]: cluster 2024-04-24T17:16:33.639907+0000 mgr.smithi028.zkmzde (mgr.14197) 182 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:35.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:35 smithi028 bash[18631]: cluster 2024-04-24T17:16:33.639907+0000 mgr.smithi028.zkmzde (mgr.14197) 182 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:37.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:37 smithi105 bash[20254]: cluster 2024-04-24T17:16:35.640941+0000 mgr.smithi028.zkmzde (mgr.14197) 183 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:37.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:37 smithi105 bash[20254]: cluster 2024-04-24T17:16:35.640941+0000 mgr.smithi028.zkmzde (mgr.14197) 183 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:37.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:37 smithi028 bash[18631]: cluster 2024-04-24T17:16:35.640941+0000 mgr.smithi028.zkmzde (mgr.14197) 183 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:37.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:37 smithi028 bash[18631]: cluster 2024-04-24T17:16:35.640941+0000 mgr.smithi028.zkmzde (mgr.14197) 183 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:39.288 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:16:39.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:39 smithi105 bash[20254]: cluster 2024-04-24T17:16:37.641960+0000 mgr.smithi028.zkmzde (mgr.14197) 184 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:39.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:39 smithi105 bash[20254]: cluster 2024-04-24T17:16:37.641960+0000 mgr.smithi028.zkmzde (mgr.14197) 184 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:39.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:39 smithi028 bash[18631]: cluster 2024-04-24T17:16:37.641960+0000 mgr.smithi028.zkmzde (mgr.14197) 184 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:39.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:39 smithi028 bash[18631]: cluster 2024-04-24T17:16:37.641960+0000 mgr.smithi028.zkmzde (mgr.14197) 184 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:40.543 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:16:41.177 INFO:teuthology.orchestra.run.smithi028.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-24T17:16:41.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:41 smithi105 bash[20254]: cluster 2024-04-24T17:16:39.642984+0000 mgr.smithi028.zkmzde (mgr.14197) 185 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:41.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:41 smithi105 bash[20254]: cluster 2024-04-24T17:16:39.642984+0000 mgr.smithi028.zkmzde (mgr.14197) 185 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:41.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:41 smithi105 bash[20254]: audit 2024-04-24T17:16:40.545463+0000 mon.smithi028 (mon.0) 412 : audit [DBG] from='client.? 172.21.15.28:0/2802185825' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:41.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:41 smithi105 bash[20254]: audit 2024-04-24T17:16:40.545463+0000 mon.smithi028 (mon.0) 412 : audit [DBG] from='client.? 172.21.15.28:0/2802185825' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:41.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:41 smithi028 bash[18631]: cluster 2024-04-24T17:16:39.642984+0000 mgr.smithi028.zkmzde (mgr.14197) 185 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:41.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:41 smithi028 bash[18631]: cluster 2024-04-24T17:16:39.642984+0000 mgr.smithi028.zkmzde (mgr.14197) 185 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:41.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:41 smithi028 bash[18631]: audit 2024-04-24T17:16:40.545463+0000 mon.smithi028 (mon.0) 412 : audit [DBG] from='client.? 172.21.15.28:0/2802185825' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:41.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:41 smithi028 bash[18631]: audit 2024-04-24T17:16:40.545463+0000 mon.smithi028 (mon.0) 412 : audit [DBG] from='client.? 172.21.15.28:0/2802185825' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:42.178 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:16:43.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:43 smithi105 bash[20254]: cluster 2024-04-24T17:16:41.643964+0000 mgr.smithi028.zkmzde (mgr.14197) 186 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:43 smithi105 bash[20254]: cluster 2024-04-24T17:16:41.643964+0000 mgr.smithi028.zkmzde (mgr.14197) 186 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:43 smithi105 bash[20254]: audit 2024-04-24T17:16:42.823592+0000 mon.smithi028 (mon.0) 413 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:43.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:43 smithi105 bash[20254]: audit 2024-04-24T17:16:42.823592+0000 mon.smithi028 (mon.0) 413 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:43.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:43 smithi028 bash[18631]: cluster 2024-04-24T17:16:41.643964+0000 mgr.smithi028.zkmzde (mgr.14197) 186 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:43 smithi028 bash[18631]: cluster 2024-04-24T17:16:41.643964+0000 mgr.smithi028.zkmzde (mgr.14197) 186 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:43 smithi028 bash[18631]: audit 2024-04-24T17:16:42.823592+0000 mon.smithi028 (mon.0) 413 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:43.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:43 smithi028 bash[18631]: audit 2024-04-24T17:16:42.823592+0000 mon.smithi028 (mon.0) 413 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:45.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:45 smithi105 bash[20254]: cluster 2024-04-24T17:16:43.645011+0000 mgr.smithi028.zkmzde (mgr.14197) 187 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:45.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:45 smithi105 bash[20254]: cluster 2024-04-24T17:16:43.645011+0000 mgr.smithi028.zkmzde (mgr.14197) 187 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:45.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:45 smithi028 bash[18631]: cluster 2024-04-24T17:16:43.645011+0000 mgr.smithi028.zkmzde (mgr.14197) 187 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:45.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:45 smithi028 bash[18631]: cluster 2024-04-24T17:16:43.645011+0000 mgr.smithi028.zkmzde (mgr.14197) 187 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:46.948 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:16:47.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:47 smithi028 bash[18631]: cluster 2024-04-24T17:16:45.646131+0000 mgr.smithi028.zkmzde (mgr.14197) 188 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:47.283 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:47 smithi028 bash[18631]: cluster 2024-04-24T17:16:45.646131+0000 mgr.smithi028.zkmzde (mgr.14197) 188 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:47.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:47 smithi105 bash[20254]: cluster 2024-04-24T17:16:45.646131+0000 mgr.smithi028.zkmzde (mgr.14197) 188 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:47.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:47 smithi105 bash[20254]: cluster 2024-04-24T17:16:45.646131+0000 mgr.smithi028.zkmzde (mgr.14197) 188 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:48.188 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:16:48.803 INFO:teuthology.orchestra.run.smithi028.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-24T17:16:49.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:49 smithi105 bash[20254]: cluster 2024-04-24T17:16:47.647216+0000 mgr.smithi028.zkmzde (mgr.14197) 189 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:49.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:49 smithi105 bash[20254]: cluster 2024-04-24T17:16:47.647216+0000 mgr.smithi028.zkmzde (mgr.14197) 189 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:49.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:49 smithi105 bash[20254]: audit 2024-04-24T17:16:48.189931+0000 mon.smithi028 (mon.0) 414 : audit [DBG] from='client.? 172.21.15.28:0/3191091802' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:49.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:49 smithi105 bash[20254]: audit 2024-04-24T17:16:48.189931+0000 mon.smithi028 (mon.0) 414 : audit [DBG] from='client.? 172.21.15.28:0/3191091802' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:49.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:49 smithi028 bash[18631]: cluster 2024-04-24T17:16:47.647216+0000 mgr.smithi028.zkmzde (mgr.14197) 189 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:49.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:49 smithi028 bash[18631]: cluster 2024-04-24T17:16:47.647216+0000 mgr.smithi028.zkmzde (mgr.14197) 189 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:49.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:49 smithi028 bash[18631]: audit 2024-04-24T17:16:48.189931+0000 mon.smithi028 (mon.0) 414 : audit [DBG] from='client.? 172.21.15.28:0/3191091802' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:49.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:49 smithi028 bash[18631]: audit 2024-04-24T17:16:48.189931+0000 mon.smithi028 (mon.0) 414 : audit [DBG] from='client.? 172.21.15.28:0/3191091802' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:49.804 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:16:51.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:51 smithi105 bash[20254]: cluster 2024-04-24T17:16:49.648297+0000 mgr.smithi028.zkmzde (mgr.14197) 190 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:51.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:51 smithi105 bash[20254]: cluster 2024-04-24T17:16:49.648297+0000 mgr.smithi028.zkmzde (mgr.14197) 190 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:51.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:51 smithi028 bash[18631]: cluster 2024-04-24T17:16:49.648297+0000 mgr.smithi028.zkmzde (mgr.14197) 190 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:51.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:51 smithi028 bash[18631]: cluster 2024-04-24T17:16:49.648297+0000 mgr.smithi028.zkmzde (mgr.14197) 190 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:53.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:53 smithi105 bash[20254]: cluster 2024-04-24T17:16:51.649303+0000 mgr.smithi028.zkmzde (mgr.14197) 191 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:53.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:53 smithi105 bash[20254]: cluster 2024-04-24T17:16:51.649303+0000 mgr.smithi028.zkmzde (mgr.14197) 191 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:53.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:53 smithi028 bash[18631]: cluster 2024-04-24T17:16:51.649303+0000 mgr.smithi028.zkmzde (mgr.14197) 191 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:53.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:53 smithi028 bash[18631]: cluster 2024-04-24T17:16:51.649303+0000 mgr.smithi028.zkmzde (mgr.14197) 191 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:54.578 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:16:55.447 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:55 smithi028 bash[18631]: cluster 2024-04-24T17:16:53.650299+0000 mgr.smithi028.zkmzde (mgr.14197) 192 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:55.447 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:55 smithi028 bash[18631]: cluster 2024-04-24T17:16:53.650299+0000 mgr.smithi028.zkmzde (mgr.14197) 192 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:55.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:55 smithi105 bash[20254]: cluster 2024-04-24T17:16:53.650299+0000 mgr.smithi028.zkmzde (mgr.14197) 192 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:55.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:55 smithi105 bash[20254]: cluster 2024-04-24T17:16:53.650299+0000 mgr.smithi028.zkmzde (mgr.14197) 192 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:55.824 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:16:56.455 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:56 smithi028 bash[18631]: audit 2024-04-24T17:16:55.826894+0000 mon.smithi028 (mon.0) 415 : audit [DBG] from='client.? 172.21.15.28:0/3822241182' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:56.455 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:56 smithi028 bash[18631]: audit 2024-04-24T17:16:55.826894+0000 mon.smithi028 (mon.0) 415 : audit [DBG] from='client.? 172.21.15.28:0/3822241182' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:56.456 INFO:teuthology.orchestra.run.smithi028.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-24T17:16:56.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:56 smithi105 bash[20254]: audit 2024-04-24T17:16:55.826894+0000 mon.smithi028 (mon.0) 415 : audit [DBG] from='client.? 172.21.15.28:0/3822241182' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:56.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:56 smithi105 bash[20254]: audit 2024-04-24T17:16:55.826894+0000 mon.smithi028 (mon.0) 415 : audit [DBG] from='client.? 172.21.15.28:0/3822241182' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:16:57.457 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:16:57.470 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:57 smithi028 bash[18631]: cluster 2024-04-24T17:16:55.650798+0000 mgr.smithi028.zkmzde (mgr.14197) 193 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:57.470 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:57 smithi028 bash[18631]: cluster 2024-04-24T17:16:55.650798+0000 mgr.smithi028.zkmzde (mgr.14197) 193 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:57.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:57 smithi105 bash[20254]: cluster 2024-04-24T17:16:55.650798+0000 mgr.smithi028.zkmzde (mgr.14197) 193 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:57.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:57 smithi105 bash[20254]: cluster 2024-04-24T17:16:55.650798+0000 mgr.smithi028.zkmzde (mgr.14197) 193 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:58.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:58 smithi105 bash[20254]: audit 2024-04-24T17:16:57.824041+0000 mon.smithi028 (mon.0) 416 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:58.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:58 smithi105 bash[20254]: audit 2024-04-24T17:16:57.824041+0000 mon.smithi028 (mon.0) 416 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:58.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:58 smithi028 bash[18631]: audit 2024-04-24T17:16:57.824041+0000 mon.smithi028 (mon.0) 416 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:58.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:58 smithi028 bash[18631]: audit 2024-04-24T17:16:57.824041+0000 mon.smithi028 (mon.0) 416 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:16:59.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:59 smithi105 bash[20254]: cluster 2024-04-24T17:16:57.651237+0000 mgr.smithi028.zkmzde (mgr.14197) 194 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:59.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:16:59 smithi105 bash[20254]: cluster 2024-04-24T17:16:57.651237+0000 mgr.smithi028.zkmzde (mgr.14197) 194 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:59.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:59 smithi028 bash[18631]: cluster 2024-04-24T17:16:57.651237+0000 mgr.smithi028.zkmzde (mgr.14197) 194 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:16:59.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:16:59 smithi028 bash[18631]: cluster 2024-04-24T17:16:57.651237+0000 mgr.smithi028.zkmzde (mgr.14197) 194 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:01.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:01 smithi105 bash[20254]: cluster 2024-04-24T17:16:59.652268+0000 mgr.smithi028.zkmzde (mgr.14197) 195 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:01.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:01 smithi105 bash[20254]: cluster 2024-04-24T17:16:59.652268+0000 mgr.smithi028.zkmzde (mgr.14197) 195 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:01.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:01 smithi028 bash[18631]: cluster 2024-04-24T17:16:59.652268+0000 mgr.smithi028.zkmzde (mgr.14197) 195 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:01.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:01 smithi028 bash[18631]: cluster 2024-04-24T17:16:59.652268+0000 mgr.smithi028.zkmzde (mgr.14197) 195 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:02.228 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:17:03.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:03 smithi105 bash[20254]: cluster 2024-04-24T17:17:01.653351+0000 mgr.smithi028.zkmzde (mgr.14197) 196 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:03.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:03 smithi105 bash[20254]: cluster 2024-04-24T17:17:01.653351+0000 mgr.smithi028.zkmzde (mgr.14197) 196 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:03.475 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:17:03.489 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:03 smithi028 bash[18631]: cluster 2024-04-24T17:17:01.653351+0000 mgr.smithi028.zkmzde (mgr.14197) 196 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:03.489 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:03 smithi028 bash[18631]: cluster 2024-04-24T17:17:01.653351+0000 mgr.smithi028.zkmzde (mgr.14197) 196 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:04.113 INFO:teuthology.orchestra.run.smithi028.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-24T17:17:04.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:04 smithi105 bash[20254]: audit 2024-04-24T17:17:03.477214+0000 mon.smithi028 (mon.0) 417 : audit [DBG] from='client.? 172.21.15.28:0/2971739201' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:04.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:04 smithi105 bash[20254]: audit 2024-04-24T17:17:03.477214+0000 mon.smithi028 (mon.0) 417 : audit [DBG] from='client.? 172.21.15.28:0/2971739201' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:04.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:04 smithi028 bash[18631]: audit 2024-04-24T17:17:03.477214+0000 mon.smithi028 (mon.0) 417 : audit [DBG] from='client.? 172.21.15.28:0/2971739201' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:04.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:04 smithi028 bash[18631]: audit 2024-04-24T17:17:03.477214+0000 mon.smithi028 (mon.0) 417 : audit [DBG] from='client.? 172.21.15.28:0/2971739201' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:05.114 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:17:05.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:05 smithi105 bash[20254]: cluster 2024-04-24T17:17:03.654337+0000 mgr.smithi028.zkmzde (mgr.14197) 197 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:05.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:05 smithi105 bash[20254]: cluster 2024-04-24T17:17:03.654337+0000 mgr.smithi028.zkmzde (mgr.14197) 197 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:05.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:05 smithi028 bash[18631]: cluster 2024-04-24T17:17:03.654337+0000 mgr.smithi028.zkmzde (mgr.14197) 197 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:05.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:05 smithi028 bash[18631]: cluster 2024-04-24T17:17:03.654337+0000 mgr.smithi028.zkmzde (mgr.14197) 197 : cluster [DBG] pgmap v144: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:07.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:07 smithi105 bash[20254]: cluster 2024-04-24T17:17:05.655331+0000 mgr.smithi028.zkmzde (mgr.14197) 198 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:07.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:07 smithi105 bash[20254]: cluster 2024-04-24T17:17:05.655331+0000 mgr.smithi028.zkmzde (mgr.14197) 198 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:07.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:07 smithi028 bash[18631]: cluster 2024-04-24T17:17:05.655331+0000 mgr.smithi028.zkmzde (mgr.14197) 198 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:07.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:07 smithi028 bash[18631]: cluster 2024-04-24T17:17:05.655331+0000 mgr.smithi028.zkmzde (mgr.14197) 198 : cluster [DBG] pgmap v145: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:09.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:09 smithi105 bash[20254]: cluster 2024-04-24T17:17:07.656341+0000 mgr.smithi028.zkmzde (mgr.14197) 199 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:09.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:09 smithi105 bash[20254]: cluster 2024-04-24T17:17:07.656341+0000 mgr.smithi028.zkmzde (mgr.14197) 199 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:09.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:09 smithi028 bash[18631]: cluster 2024-04-24T17:17:07.656341+0000 mgr.smithi028.zkmzde (mgr.14197) 199 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:09.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:09 smithi028 bash[18631]: cluster 2024-04-24T17:17:07.656341+0000 mgr.smithi028.zkmzde (mgr.14197) 199 : cluster [DBG] pgmap v146: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:09.891 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:17:10.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:10 smithi105 bash[20254]: audit 2024-04-24T17:17:09.700413+0000 mon.smithi028 (mon.0) 418 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:17:10.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:10 smithi105 bash[20254]: audit 2024-04-24T17:17:09.700413+0000 mon.smithi028 (mon.0) 418 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:17:10.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:10 smithi028 bash[18631]: audit 2024-04-24T17:17:09.700413+0000 mon.smithi028 (mon.0) 418 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:17:10.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:10 smithi028 bash[18631]: audit 2024-04-24T17:17:09.700413+0000 mon.smithi028 (mon.0) 418 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:17:11.085 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:17:11.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:11 smithi105 bash[20254]: cluster 2024-04-24T17:17:09.657345+0000 mgr.smithi028.zkmzde (mgr.14197) 200 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:11.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:11 smithi105 bash[20254]: cluster 2024-04-24T17:17:09.657345+0000 mgr.smithi028.zkmzde (mgr.14197) 200 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:11.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:11 smithi105 bash[20254]: audit 2024-04-24T17:17:11.088050+0000 mon.smithi028 (mon.0) 419 : audit [DBG] from='client.? 172.21.15.28:0/1646834744' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:11.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:11 smithi105 bash[20254]: audit 2024-04-24T17:17:11.088050+0000 mon.smithi028 (mon.0) 419 : audit [DBG] from='client.? 172.21.15.28:0/1646834744' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:11.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:11 smithi028 bash[18631]: cluster 2024-04-24T17:17:09.657345+0000 mgr.smithi028.zkmzde (mgr.14197) 200 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:11.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:11 smithi028 bash[18631]: cluster 2024-04-24T17:17:09.657345+0000 mgr.smithi028.zkmzde (mgr.14197) 200 : cluster [DBG] pgmap v147: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:11.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:11 smithi028 bash[18631]: audit 2024-04-24T17:17:11.088050+0000 mon.smithi028 (mon.0) 419 : audit [DBG] from='client.? 172.21.15.28:0/1646834744' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:11.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:11 smithi028 bash[18631]: audit 2024-04-24T17:17:11.088050+0000 mon.smithi028 (mon.0) 419 : audit [DBG] from='client.? 172.21.15.28:0/1646834744' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:11.735 INFO:teuthology.orchestra.run.smithi028.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-24T17:17:12.736 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:17:13.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:13 smithi105 bash[20254]: cluster 2024-04-24T17:17:11.658303+0000 mgr.smithi028.zkmzde (mgr.14197) 201 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:13.273 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:13 smithi105 bash[20254]: cluster 2024-04-24T17:17:11.658303+0000 mgr.smithi028.zkmzde (mgr.14197) 201 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:13.273 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:13 smithi105 bash[20254]: audit 2024-04-24T17:17:12.824407+0000 mon.smithi028 (mon.0) 420 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:13.274 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:13 smithi105 bash[20254]: audit 2024-04-24T17:17:12.824407+0000 mon.smithi028 (mon.0) 420 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:13.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:13 smithi028 bash[18631]: cluster 2024-04-24T17:17:11.658303+0000 mgr.smithi028.zkmzde (mgr.14197) 201 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:13.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:13 smithi028 bash[18631]: cluster 2024-04-24T17:17:11.658303+0000 mgr.smithi028.zkmzde (mgr.14197) 201 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:13.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:13 smithi028 bash[18631]: audit 2024-04-24T17:17:12.824407+0000 mon.smithi028 (mon.0) 420 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:13.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:13 smithi028 bash[18631]: audit 2024-04-24T17:17:12.824407+0000 mon.smithi028 (mon.0) 420 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:15.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:15 smithi105 bash[20254]: cluster 2024-04-24T17:17:13.659245+0000 mgr.smithi028.zkmzde (mgr.14197) 202 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:15.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:15 smithi105 bash[20254]: cluster 2024-04-24T17:17:13.659245+0000 mgr.smithi028.zkmzde (mgr.14197) 202 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:15.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:15 smithi105 bash[20254]: audit 2024-04-24T17:17:15.152412+0000 mon.smithi028 (mon.0) 421 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:17:15.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:15 smithi105 bash[20254]: audit 2024-04-24T17:17:15.152412+0000 mon.smithi028 (mon.0) 421 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:17:15.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:15 smithi028 bash[18631]: cluster 2024-04-24T17:17:13.659245+0000 mgr.smithi028.zkmzde (mgr.14197) 202 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:15.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:15 smithi028 bash[18631]: cluster 2024-04-24T17:17:13.659245+0000 mgr.smithi028.zkmzde (mgr.14197) 202 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:15.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:15 smithi028 bash[18631]: audit 2024-04-24T17:17:15.152412+0000 mon.smithi028 (mon.0) 421 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:17:15.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:15 smithi028 bash[18631]: audit 2024-04-24T17:17:15.152412+0000 mon.smithi028 (mon.0) 421 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:17:17.430 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:17:17.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:17 smithi105 bash[20254]: cluster 2024-04-24T17:17:15.660235+0000 mgr.smithi028.zkmzde (mgr.14197) 203 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:17.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:17 smithi105 bash[20254]: cluster 2024-04-24T17:17:15.660235+0000 mgr.smithi028.zkmzde (mgr.14197) 203 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:17.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:17 smithi028 bash[18631]: cluster 2024-04-24T17:17:15.660235+0000 mgr.smithi028.zkmzde (mgr.14197) 203 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:17.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:17 smithi028 bash[18631]: cluster 2024-04-24T17:17:15.660235+0000 mgr.smithi028.zkmzde (mgr.14197) 203 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:18.547 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:17:19.143 INFO:teuthology.orchestra.run.smithi028.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-24T17:17:19.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:19 smithi105 bash[20254]: cluster 2024-04-24T17:17:17.661312+0000 mgr.smithi028.zkmzde (mgr.14197) 204 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:19.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:19 smithi105 bash[20254]: cluster 2024-04-24T17:17:17.661312+0000 mgr.smithi028.zkmzde (mgr.14197) 204 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:19.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:19 smithi105 bash[20254]: audit 2024-04-24T17:17:18.549875+0000 mon.smithi028 (mon.0) 422 : audit [DBG] from='client.? 172.21.15.28:0/1102081498' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:19.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:19 smithi105 bash[20254]: audit 2024-04-24T17:17:18.549875+0000 mon.smithi028 (mon.0) 422 : audit [DBG] from='client.? 172.21.15.28:0/1102081498' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:19.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:19 smithi028 bash[18631]: cluster 2024-04-24T17:17:17.661312+0000 mgr.smithi028.zkmzde (mgr.14197) 204 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:19.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:19 smithi028 bash[18631]: cluster 2024-04-24T17:17:17.661312+0000 mgr.smithi028.zkmzde (mgr.14197) 204 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:19.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:19 smithi028 bash[18631]: audit 2024-04-24T17:17:18.549875+0000 mon.smithi028 (mon.0) 422 : audit [DBG] from='client.? 172.21.15.28:0/1102081498' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:19.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:19 smithi028 bash[18631]: audit 2024-04-24T17:17:18.549875+0000 mon.smithi028 (mon.0) 422 : audit [DBG] from='client.? 172.21.15.28:0/1102081498' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:20.144 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:17:21.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:21 smithi105 bash[20254]: cluster 2024-04-24T17:17:19.662346+0000 mgr.smithi028.zkmzde (mgr.14197) 205 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:21.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:21 smithi105 bash[20254]: cluster 2024-04-24T17:17:19.662346+0000 mgr.smithi028.zkmzde (mgr.14197) 205 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:21.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:21 smithi028 bash[18631]: cluster 2024-04-24T17:17:19.662346+0000 mgr.smithi028.zkmzde (mgr.14197) 205 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:21.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:21 smithi028 bash[18631]: cluster 2024-04-24T17:17:19.662346+0000 mgr.smithi028.zkmzde (mgr.14197) 205 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:23.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:23 smithi105 bash[20254]: cluster 2024-04-24T17:17:21.663361+0000 mgr.smithi028.zkmzde (mgr.14197) 206 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:23.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:23 smithi105 bash[20254]: cluster 2024-04-24T17:17:21.663361+0000 mgr.smithi028.zkmzde (mgr.14197) 206 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:23.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:23 smithi105 bash[20254]: audit 2024-04-24T17:17:22.661779+0000 mon.smithi028 (mon.0) 423 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:17:23.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:23 smithi105 bash[20254]: audit 2024-04-24T17:17:22.661779+0000 mon.smithi028 (mon.0) 423 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:17:23.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:23 smithi105 bash[20254]: audit 2024-04-24T17:17:22.663752+0000 mon.smithi028 (mon.0) 424 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:17:23.271 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:23 smithi105 bash[20254]: audit 2024-04-24T17:17:22.663752+0000 mon.smithi028 (mon.0) 424 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:17:23.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:23 smithi105 bash[20254]: audit 2024-04-24T17:17:22.675545+0000 mon.smithi028 (mon.0) 425 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:17:23.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:23 smithi105 bash[20254]: audit 2024-04-24T17:17:22.675545+0000 mon.smithi028 (mon.0) 425 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:17:23.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:23 smithi105 bash[20254]: audit 2024-04-24T17:17:22.683726+0000 mon.smithi028 (mon.0) 426 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:17:23.272 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:23 smithi105 bash[20254]: audit 2024-04-24T17:17:22.683726+0000 mon.smithi028 (mon.0) 426 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:17:23.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:23 smithi028 bash[18631]: cluster 2024-04-24T17:17:21.663361+0000 mgr.smithi028.zkmzde (mgr.14197) 206 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:23.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:23 smithi028 bash[18631]: cluster 2024-04-24T17:17:21.663361+0000 mgr.smithi028.zkmzde (mgr.14197) 206 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:23.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:23 smithi028 bash[18631]: audit 2024-04-24T17:17:22.661779+0000 mon.smithi028 (mon.0) 423 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:17:23.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:23 smithi028 bash[18631]: audit 2024-04-24T17:17:22.661779+0000 mon.smithi028 (mon.0) 423 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:17:23.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:23 smithi028 bash[18631]: audit 2024-04-24T17:17:22.663752+0000 mon.smithi028 (mon.0) 424 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:17:23.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:23 smithi028 bash[18631]: audit 2024-04-24T17:17:22.663752+0000 mon.smithi028 (mon.0) 424 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:17:23.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:23 smithi028 bash[18631]: audit 2024-04-24T17:17:22.675545+0000 mon.smithi028 (mon.0) 425 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:17:23.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:23 smithi028 bash[18631]: audit 2024-04-24T17:17:22.675545+0000 mon.smithi028 (mon.0) 425 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:17:23.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:23 smithi028 bash[18631]: audit 2024-04-24T17:17:22.683726+0000 mon.smithi028 (mon.0) 426 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:17:23.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:23 smithi028 bash[18631]: audit 2024-04-24T17:17:22.683726+0000 mon.smithi028 (mon.0) 426 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:17:24.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:24 smithi105 bash[20254]: cluster 2024-04-24T17:17:22.666920+0000 mgr.smithi028.zkmzde (mgr.14197) 207 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:24.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:24 smithi105 bash[20254]: cluster 2024-04-24T17:17:22.666920+0000 mgr.smithi028.zkmzde (mgr.14197) 207 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:24.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:24 smithi105 bash[20254]: cluster 2024-04-24T17:17:22.668097+0000 mgr.smithi028.zkmzde (mgr.14197) 208 : cluster [DBG] pgmap v155: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:24.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:24 smithi105 bash[20254]: cluster 2024-04-24T17:17:22.668097+0000 mgr.smithi028.zkmzde (mgr.14197) 208 : cluster [DBG] pgmap v155: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:24.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:24 smithi028 bash[18631]: cluster 2024-04-24T17:17:22.666920+0000 mgr.smithi028.zkmzde (mgr.14197) 207 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:24.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:24 smithi028 bash[18631]: cluster 2024-04-24T17:17:22.666920+0000 mgr.smithi028.zkmzde (mgr.14197) 207 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:24.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:24 smithi028 bash[18631]: cluster 2024-04-24T17:17:22.668097+0000 mgr.smithi028.zkmzde (mgr.14197) 208 : cluster [DBG] pgmap v155: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:24.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:24 smithi028 bash[18631]: cluster 2024-04-24T17:17:22.668097+0000 mgr.smithi028.zkmzde (mgr.14197) 208 : cluster [DBG] pgmap v155: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:24.921 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:17:26.120 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:17:26.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:26 smithi105 bash[20254]: cluster 2024-04-24T17:17:24.669067+0000 mgr.smithi028.zkmzde (mgr.14197) 209 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:26.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:26 smithi105 bash[20254]: cluster 2024-04-24T17:17:24.669067+0000 mgr.smithi028.zkmzde (mgr.14197) 209 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:26.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:26 smithi105 bash[20254]: audit 2024-04-24T17:17:26.122873+0000 mon.smithi028 (mon.0) 427 : audit [DBG] from='client.? 172.21.15.28:0/3058051789' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:26.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:26 smithi105 bash[20254]: audit 2024-04-24T17:17:26.122873+0000 mon.smithi028 (mon.0) 427 : audit [DBG] from='client.? 172.21.15.28:0/3058051789' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:26.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:26 smithi028 bash[18631]: cluster 2024-04-24T17:17:24.669067+0000 mgr.smithi028.zkmzde (mgr.14197) 209 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:26.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:26 smithi028 bash[18631]: cluster 2024-04-24T17:17:24.669067+0000 mgr.smithi028.zkmzde (mgr.14197) 209 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:26.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:26 smithi028 bash[18631]: audit 2024-04-24T17:17:26.122873+0000 mon.smithi028 (mon.0) 427 : audit [DBG] from='client.? 172.21.15.28:0/3058051789' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:26.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:26 smithi028 bash[18631]: audit 2024-04-24T17:17:26.122873+0000 mon.smithi028 (mon.0) 427 : audit [DBG] from='client.? 172.21.15.28:0/3058051789' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:26.754 INFO:teuthology.orchestra.run.smithi028.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-24T17:17:27.755 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:17:28.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:28 smithi105 bash[20254]: cluster 2024-04-24T17:17:26.670136+0000 mgr.smithi028.zkmzde (mgr.14197) 210 : cluster [DBG] pgmap v157: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:28.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:28 smithi105 bash[20254]: cluster 2024-04-24T17:17:26.670136+0000 mgr.smithi028.zkmzde (mgr.14197) 210 : cluster [DBG] pgmap v157: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:28.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:28 smithi105 bash[20254]: audit 2024-04-24T17:17:27.824888+0000 mon.smithi028 (mon.0) 428 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:28.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:28 smithi105 bash[20254]: audit 2024-04-24T17:17:27.824888+0000 mon.smithi028 (mon.0) 428 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:28.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:28 smithi028 bash[18631]: cluster 2024-04-24T17:17:26.670136+0000 mgr.smithi028.zkmzde (mgr.14197) 210 : cluster [DBG] pgmap v157: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:28.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:28 smithi028 bash[18631]: cluster 2024-04-24T17:17:26.670136+0000 mgr.smithi028.zkmzde (mgr.14197) 210 : cluster [DBG] pgmap v157: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:28.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:28 smithi028 bash[18631]: audit 2024-04-24T17:17:27.824888+0000 mon.smithi028 (mon.0) 428 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:28.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:28 smithi028 bash[18631]: audit 2024-04-24T17:17:27.824888+0000 mon.smithi028 (mon.0) 428 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:30.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:30 smithi028 bash[18631]: cluster 2024-04-24T17:17:28.671187+0000 mgr.smithi028.zkmzde (mgr.14197) 211 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:30.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:30 smithi028 bash[18631]: cluster 2024-04-24T17:17:28.671187+0000 mgr.smithi028.zkmzde (mgr.14197) 211 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:30.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:30 smithi105 bash[20254]: cluster 2024-04-24T17:17:28.671187+0000 mgr.smithi028.zkmzde (mgr.14197) 211 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:30.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:30 smithi105 bash[20254]: cluster 2024-04-24T17:17:28.671187+0000 mgr.smithi028.zkmzde (mgr.14197) 211 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:32.529 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:17:32.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:32 smithi028 bash[18631]: cluster 2024-04-24T17:17:30.672227+0000 mgr.smithi028.zkmzde (mgr.14197) 212 : cluster [DBG] pgmap v159: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:32.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:32 smithi028 bash[18631]: cluster 2024-04-24T17:17:30.672227+0000 mgr.smithi028.zkmzde (mgr.14197) 212 : cluster [DBG] pgmap v159: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:32.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:32 smithi105 bash[20254]: cluster 2024-04-24T17:17:30.672227+0000 mgr.smithi028.zkmzde (mgr.14197) 212 : cluster [DBG] pgmap v159: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:32.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:32 smithi105 bash[20254]: cluster 2024-04-24T17:17:30.672227+0000 mgr.smithi028.zkmzde (mgr.14197) 212 : cluster [DBG] pgmap v159: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:33.730 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:17:34.319 INFO:teuthology.orchestra.run.smithi028.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-24T17:17:34.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:34 smithi028 bash[18631]: cluster 2024-04-24T17:17:32.673319+0000 mgr.smithi028.zkmzde (mgr.14197) 213 : cluster [DBG] pgmap v160: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:34.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:34 smithi028 bash[18631]: cluster 2024-04-24T17:17:32.673319+0000 mgr.smithi028.zkmzde (mgr.14197) 213 : cluster [DBG] pgmap v160: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:34.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:34 smithi028 bash[18631]: audit 2024-04-24T17:17:33.732880+0000 mon.smithi028 (mon.0) 429 : audit [DBG] from='client.? 172.21.15.28:0/952063882' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:34.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:34 smithi028 bash[18631]: audit 2024-04-24T17:17:33.732880+0000 mon.smithi028 (mon.0) 429 : audit [DBG] from='client.? 172.21.15.28:0/952063882' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:34.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:34 smithi105 bash[20254]: cluster 2024-04-24T17:17:32.673319+0000 mgr.smithi028.zkmzde (mgr.14197) 213 : cluster [DBG] pgmap v160: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:34.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:34 smithi105 bash[20254]: cluster 2024-04-24T17:17:32.673319+0000 mgr.smithi028.zkmzde (mgr.14197) 213 : cluster [DBG] pgmap v160: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:34.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:34 smithi105 bash[20254]: audit 2024-04-24T17:17:33.732880+0000 mon.smithi028 (mon.0) 429 : audit [DBG] from='client.? 172.21.15.28:0/952063882' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:34.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:34 smithi105 bash[20254]: audit 2024-04-24T17:17:33.732880+0000 mon.smithi028 (mon.0) 429 : audit [DBG] from='client.? 172.21.15.28:0/952063882' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:35.321 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:17:36.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:36 smithi105 bash[20254]: cluster 2024-04-24T17:17:34.674445+0000 mgr.smithi028.zkmzde (mgr.14197) 214 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:36.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:36 smithi105 bash[20254]: cluster 2024-04-24T17:17:34.674445+0000 mgr.smithi028.zkmzde (mgr.14197) 214 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:36.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:36 smithi028 bash[18631]: cluster 2024-04-24T17:17:34.674445+0000 mgr.smithi028.zkmzde (mgr.14197) 214 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:36.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:36 smithi028 bash[18631]: cluster 2024-04-24T17:17:34.674445+0000 mgr.smithi028.zkmzde (mgr.14197) 214 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:38.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:38 smithi028 bash[18631]: cluster 2024-04-24T17:17:36.675734+0000 mgr.smithi028.zkmzde (mgr.14197) 215 : cluster [DBG] pgmap v162: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:38.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:38 smithi028 bash[18631]: cluster 2024-04-24T17:17:36.675734+0000 mgr.smithi028.zkmzde (mgr.14197) 215 : cluster [DBG] pgmap v162: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:38.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:38 smithi105 bash[20254]: cluster 2024-04-24T17:17:36.675734+0000 mgr.smithi028.zkmzde (mgr.14197) 215 : cluster [DBG] pgmap v162: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:38.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:38 smithi105 bash[20254]: cluster 2024-04-24T17:17:36.675734+0000 mgr.smithi028.zkmzde (mgr.14197) 215 : cluster [DBG] pgmap v162: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:40.087 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:17:40.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:40 smithi105 bash[20254]: cluster 2024-04-24T17:17:38.676786+0000 mgr.smithi028.zkmzde (mgr.14197) 216 : cluster [DBG] pgmap v163: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:40.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:40 smithi105 bash[20254]: cluster 2024-04-24T17:17:38.676786+0000 mgr.smithi028.zkmzde (mgr.14197) 216 : cluster [DBG] pgmap v163: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:40.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:40 smithi028 bash[18631]: cluster 2024-04-24T17:17:38.676786+0000 mgr.smithi028.zkmzde (mgr.14197) 216 : cluster [DBG] pgmap v163: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:40.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:40 smithi028 bash[18631]: cluster 2024-04-24T17:17:38.676786+0000 mgr.smithi028.zkmzde (mgr.14197) 216 : cluster [DBG] pgmap v163: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:41.322 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:17:41.903 INFO:teuthology.orchestra.run.smithi028.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-24T17:17:42.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:42 smithi105 bash[20254]: cluster 2024-04-24T17:17:40.677800+0000 mgr.smithi028.zkmzde (mgr.14197) 217 : cluster [DBG] pgmap v164: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:42.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:42 smithi105 bash[20254]: cluster 2024-04-24T17:17:40.677800+0000 mgr.smithi028.zkmzde (mgr.14197) 217 : cluster [DBG] pgmap v164: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:42.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:42 smithi105 bash[20254]: audit 2024-04-24T17:17:41.324656+0000 mon.smithi028 (mon.0) 430 : audit [DBG] from='client.? 172.21.15.28:0/419856584' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:42.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:42 smithi105 bash[20254]: audit 2024-04-24T17:17:41.324656+0000 mon.smithi028 (mon.0) 430 : audit [DBG] from='client.? 172.21.15.28:0/419856584' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:42.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:42 smithi028 bash[18631]: cluster 2024-04-24T17:17:40.677800+0000 mgr.smithi028.zkmzde (mgr.14197) 217 : cluster [DBG] pgmap v164: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:42.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:42 smithi028 bash[18631]: cluster 2024-04-24T17:17:40.677800+0000 mgr.smithi028.zkmzde (mgr.14197) 217 : cluster [DBG] pgmap v164: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:42.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:42 smithi028 bash[18631]: audit 2024-04-24T17:17:41.324656+0000 mon.smithi028 (mon.0) 430 : audit [DBG] from='client.? 172.21.15.28:0/419856584' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:42.783 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:42 smithi028 bash[18631]: audit 2024-04-24T17:17:41.324656+0000 mon.smithi028 (mon.0) 430 : audit [DBG] from='client.? 172.21.15.28:0/419856584' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:42.904 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:17:43.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:43 smithi105 bash[20254]: audit 2024-04-24T17:17:42.825336+0000 mon.smithi028 (mon.0) 431 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:43.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:43 smithi105 bash[20254]: audit 2024-04-24T17:17:42.825336+0000 mon.smithi028 (mon.0) 431 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:43.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:43 smithi028 bash[18631]: audit 2024-04-24T17:17:42.825336+0000 mon.smithi028 (mon.0) 431 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:43.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:43 smithi028 bash[18631]: audit 2024-04-24T17:17:42.825336+0000 mon.smithi028 (mon.0) 431 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:44.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:44 smithi105 bash[20254]: cluster 2024-04-24T17:17:42.678750+0000 mgr.smithi028.zkmzde (mgr.14197) 218 : cluster [DBG] pgmap v165: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:44.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:44 smithi105 bash[20254]: cluster 2024-04-24T17:17:42.678750+0000 mgr.smithi028.zkmzde (mgr.14197) 218 : cluster [DBG] pgmap v165: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:44.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:44 smithi028 bash[18631]: cluster 2024-04-24T17:17:42.678750+0000 mgr.smithi028.zkmzde (mgr.14197) 218 : cluster [DBG] pgmap v165: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:44.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:44 smithi028 bash[18631]: cluster 2024-04-24T17:17:42.678750+0000 mgr.smithi028.zkmzde (mgr.14197) 218 : cluster [DBG] pgmap v165: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:45.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:45 smithi105 bash[20254]: cluster 2024-04-24T17:17:44.679733+0000 mgr.smithi028.zkmzde (mgr.14197) 219 : cluster [DBG] pgmap v166: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:45.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:45 smithi105 bash[20254]: cluster 2024-04-24T17:17:44.679733+0000 mgr.smithi028.zkmzde (mgr.14197) 219 : cluster [DBG] pgmap v166: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:45.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:45 smithi028 bash[18631]: cluster 2024-04-24T17:17:44.679733+0000 mgr.smithi028.zkmzde (mgr.14197) 219 : cluster [DBG] pgmap v166: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:45.782 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:45 smithi028 bash[18631]: cluster 2024-04-24T17:17:44.679733+0000 mgr.smithi028.zkmzde (mgr.14197) 219 : cluster [DBG] pgmap v166: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:47.675 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:17:48.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:47 smithi105 bash[20254]: cluster 2024-04-24T17:17:46.680802+0000 mgr.smithi028.zkmzde (mgr.14197) 220 : cluster [DBG] pgmap v167: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:48.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:47 smithi105 bash[20254]: cluster 2024-04-24T17:17:46.680802+0000 mgr.smithi028.zkmzde (mgr.14197) 220 : cluster [DBG] pgmap v167: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:48.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:47 smithi028 bash[18631]: cluster 2024-04-24T17:17:46.680802+0000 mgr.smithi028.zkmzde (mgr.14197) 220 : cluster [DBG] pgmap v167: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:48.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:47 smithi028 bash[18631]: cluster 2024-04-24T17:17:46.680802+0000 mgr.smithi028.zkmzde (mgr.14197) 220 : cluster [DBG] pgmap v167: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:48.986 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:17:49.578 INFO:teuthology.orchestra.run.smithi028.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-24T17:17:49.954 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:49 smithi028 bash[18631]: cluster 2024-04-24T17:17:48.681342+0000 mgr.smithi028.zkmzde (mgr.14197) 221 : cluster [DBG] pgmap v168: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:49.954 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:49 smithi028 bash[18631]: cluster 2024-04-24T17:17:48.681342+0000 mgr.smithi028.zkmzde (mgr.14197) 221 : cluster [DBG] pgmap v168: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:49.954 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:49 smithi028 bash[18631]: audit 2024-04-24T17:17:48.988497+0000 mon.smithi028 (mon.0) 432 : audit [DBG] from='client.? 172.21.15.28:0/2593401037' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:49.955 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:49 smithi028 bash[18631]: audit 2024-04-24T17:17:48.988497+0000 mon.smithi028 (mon.0) 432 : audit [DBG] from='client.? 172.21.15.28:0/2593401037' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:50.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:49 smithi105 bash[20254]: cluster 2024-04-24T17:17:48.681342+0000 mgr.smithi028.zkmzde (mgr.14197) 221 : cluster [DBG] pgmap v168: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:50.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:49 smithi105 bash[20254]: cluster 2024-04-24T17:17:48.681342+0000 mgr.smithi028.zkmzde (mgr.14197) 221 : cluster [DBG] pgmap v168: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:50.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:49 smithi105 bash[20254]: audit 2024-04-24T17:17:48.988497+0000 mon.smithi028 (mon.0) 432 : audit [DBG] from='client.? 172.21.15.28:0/2593401037' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:50.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:49 smithi105 bash[20254]: audit 2024-04-24T17:17:48.988497+0000 mon.smithi028 (mon.0) 432 : audit [DBG] from='client.? 172.21.15.28:0/2593401037' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:50.579 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:17:52.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:51 smithi105 bash[20254]: cluster 2024-04-24T17:17:50.682345+0000 mgr.smithi028.zkmzde (mgr.14197) 222 : cluster [DBG] pgmap v169: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:52.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:51 smithi105 bash[20254]: cluster 2024-04-24T17:17:50.682345+0000 mgr.smithi028.zkmzde (mgr.14197) 222 : cluster [DBG] pgmap v169: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:52.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:51 smithi028 bash[18631]: cluster 2024-04-24T17:17:50.682345+0000 mgr.smithi028.zkmzde (mgr.14197) 222 : cluster [DBG] pgmap v169: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:52.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:51 smithi028 bash[18631]: cluster 2024-04-24T17:17:50.682345+0000 mgr.smithi028.zkmzde (mgr.14197) 222 : cluster [DBG] pgmap v169: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:54.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:53 smithi105 bash[20254]: cluster 2024-04-24T17:17:52.683506+0000 mgr.smithi028.zkmzde (mgr.14197) 223 : cluster [DBG] pgmap v170: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:54.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:53 smithi105 bash[20254]: cluster 2024-04-24T17:17:52.683506+0000 mgr.smithi028.zkmzde (mgr.14197) 223 : cluster [DBG] pgmap v170: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:54.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:53 smithi028 bash[18631]: cluster 2024-04-24T17:17:52.683506+0000 mgr.smithi028.zkmzde (mgr.14197) 223 : cluster [DBG] pgmap v170: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:54.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:53 smithi028 bash[18631]: cluster 2024-04-24T17:17:52.683506+0000 mgr.smithi028.zkmzde (mgr.14197) 223 : cluster [DBG] pgmap v170: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:55.349 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:17:56.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:55 smithi105 bash[20254]: cluster 2024-04-24T17:17:54.684549+0000 mgr.smithi028.zkmzde (mgr.14197) 224 : cluster [DBG] pgmap v171: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:56.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:55 smithi105 bash[20254]: cluster 2024-04-24T17:17:54.684549+0000 mgr.smithi028.zkmzde (mgr.14197) 224 : cluster [DBG] pgmap v171: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:56.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:55 smithi028 bash[18631]: cluster 2024-04-24T17:17:54.684549+0000 mgr.smithi028.zkmzde (mgr.14197) 224 : cluster [DBG] pgmap v171: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:56.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:55 smithi028 bash[18631]: cluster 2024-04-24T17:17:54.684549+0000 mgr.smithi028.zkmzde (mgr.14197) 224 : cluster [DBG] pgmap v171: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:56.538 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:17:57.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:56 smithi105 bash[20254]: audit 2024-04-24T17:17:56.541788+0000 mon.smithi028 (mon.0) 433 : audit [DBG] from='client.? 172.21.15.28:0/491026585' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:57.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:56 smithi105 bash[20254]: audit 2024-04-24T17:17:56.541788+0000 mon.smithi028 (mon.0) 433 : audit [DBG] from='client.? 172.21.15.28:0/491026585' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:57.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:56 smithi028 bash[18631]: audit 2024-04-24T17:17:56.541788+0000 mon.smithi028 (mon.0) 433 : audit [DBG] from='client.? 172.21.15.28:0/491026585' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:57.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:56 smithi028 bash[18631]: audit 2024-04-24T17:17:56.541788+0000 mon.smithi028 (mon.0) 433 : audit [DBG] from='client.? 172.21.15.28:0/491026585' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:17:57.219 INFO:teuthology.orchestra.run.smithi028.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-24T17:17:58.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:57 smithi105 bash[20254]: cluster 2024-04-24T17:17:56.685389+0000 mgr.smithi028.zkmzde (mgr.14197) 225 : cluster [DBG] pgmap v172: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:58.020 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:57 smithi105 bash[20254]: cluster 2024-04-24T17:17:56.685389+0000 mgr.smithi028.zkmzde (mgr.14197) 225 : cluster [DBG] pgmap v172: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:58.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:57 smithi028 bash[18631]: cluster 2024-04-24T17:17:56.685389+0000 mgr.smithi028.zkmzde (mgr.14197) 225 : cluster [DBG] pgmap v172: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:58.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:57 smithi028 bash[18631]: cluster 2024-04-24T17:17:56.685389+0000 mgr.smithi028.zkmzde (mgr.14197) 225 : cluster [DBG] pgmap v172: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:17:58.220 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:17:59.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:58 smithi105 bash[20254]: audit 2024-04-24T17:17:57.825702+0000 mon.smithi028 (mon.0) 434 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:59.021 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:58 smithi105 bash[20254]: audit 2024-04-24T17:17:57.825702+0000 mon.smithi028 (mon.0) 434 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:59.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:58 smithi028 bash[18631]: audit 2024-04-24T17:17:57.825702+0000 mon.smithi028 (mon.0) 434 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:17:59.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:58 smithi028 bash[18631]: audit 2024-04-24T17:17:57.825702+0000 mon.smithi028 (mon.0) 434 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:00.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:59 smithi028 bash[18631]: cluster 2024-04-24T17:17:58.686382+0000 mgr.smithi028.zkmzde (mgr.14197) 226 : cluster [DBG] pgmap v173: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:00.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:17:59 smithi028 bash[18631]: cluster 2024-04-24T17:17:58.686382+0000 mgr.smithi028.zkmzde (mgr.14197) 226 : cluster [DBG] pgmap v173: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:00.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:59 smithi105 bash[20254]: cluster 2024-04-24T17:17:58.686382+0000 mgr.smithi028.zkmzde (mgr.14197) 226 : cluster [DBG] pgmap v173: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:00.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:17:59 smithi105 bash[20254]: cluster 2024-04-24T17:17:58.686382+0000 mgr.smithi028.zkmzde (mgr.14197) 226 : cluster [DBG] pgmap v173: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:02.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:01 smithi028 bash[18631]: cluster 2024-04-24T17:18:00.687495+0000 mgr.smithi028.zkmzde (mgr.14197) 227 : cluster [DBG] pgmap v174: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:02.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:01 smithi028 bash[18631]: cluster 2024-04-24T17:18:00.687495+0000 mgr.smithi028.zkmzde (mgr.14197) 227 : cluster [DBG] pgmap v174: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:02.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:01 smithi105 bash[20254]: cluster 2024-04-24T17:18:00.687495+0000 mgr.smithi028.zkmzde (mgr.14197) 227 : cluster [DBG] pgmap v174: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:02.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:01 smithi105 bash[20254]: cluster 2024-04-24T17:18:00.687495+0000 mgr.smithi028.zkmzde (mgr.14197) 227 : cluster [DBG] pgmap v174: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:02.985 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:18:04.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:03 smithi028 bash[18631]: cluster 2024-04-24T17:18:02.688567+0000 mgr.smithi028.zkmzde (mgr.14197) 228 : cluster [DBG] pgmap v175: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:04.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:03 smithi028 bash[18631]: cluster 2024-04-24T17:18:02.688567+0000 mgr.smithi028.zkmzde (mgr.14197) 228 : cluster [DBG] pgmap v175: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:04.070 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:18:04.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:03 smithi105 bash[20254]: cluster 2024-04-24T17:18:02.688567+0000 mgr.smithi028.zkmzde (mgr.14197) 228 : cluster [DBG] pgmap v175: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:04.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:03 smithi105 bash[20254]: cluster 2024-04-24T17:18:02.688567+0000 mgr.smithi028.zkmzde (mgr.14197) 228 : cluster [DBG] pgmap v175: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:04.696 INFO:teuthology.orchestra.run.smithi028.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-24T17:18:05.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:04 smithi028 bash[18631]: audit 2024-04-24T17:18:04.073628+0000 mon.smithi028 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.28:0/2194561834' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:05.008 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:04 smithi028 bash[18631]: audit 2024-04-24T17:18:04.073628+0000 mon.smithi028 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.28:0/2194561834' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:05.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:04 smithi105 bash[20254]: audit 2024-04-24T17:18:04.073628+0000 mon.smithi028 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.28:0/2194561834' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:05.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:04 smithi105 bash[20254]: audit 2024-04-24T17:18:04.073628+0000 mon.smithi028 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.28:0/2194561834' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:05.697 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:18:06.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:05 smithi028 bash[18631]: cluster 2024-04-24T17:18:04.689420+0000 mgr.smithi028.zkmzde (mgr.14197) 229 : cluster [DBG] pgmap v176: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:06.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:05 smithi028 bash[18631]: cluster 2024-04-24T17:18:04.689420+0000 mgr.smithi028.zkmzde (mgr.14197) 229 : cluster [DBG] pgmap v176: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:06.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:05 smithi105 bash[20254]: cluster 2024-04-24T17:18:04.689420+0000 mgr.smithi028.zkmzde (mgr.14197) 229 : cluster [DBG] pgmap v176: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:06.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:05 smithi105 bash[20254]: cluster 2024-04-24T17:18:04.689420+0000 mgr.smithi028.zkmzde (mgr.14197) 229 : cluster [DBG] pgmap v176: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:08.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:07 smithi028 bash[18631]: cluster 2024-04-24T17:18:06.690394+0000 mgr.smithi028.zkmzde (mgr.14197) 230 : cluster [DBG] pgmap v177: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:08.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:07 smithi028 bash[18631]: cluster 2024-04-24T17:18:06.690394+0000 mgr.smithi028.zkmzde (mgr.14197) 230 : cluster [DBG] pgmap v177: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:08.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:07 smithi105 bash[20254]: cluster 2024-04-24T17:18:06.690394+0000 mgr.smithi028.zkmzde (mgr.14197) 230 : cluster [DBG] pgmap v177: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:08.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:07 smithi105 bash[20254]: cluster 2024-04-24T17:18:06.690394+0000 mgr.smithi028.zkmzde (mgr.14197) 230 : cluster [DBG] pgmap v177: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:10.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:09 smithi105 bash[20254]: cluster 2024-04-24T17:18:08.691410+0000 mgr.smithi028.zkmzde (mgr.14197) 231 : cluster [DBG] pgmap v178: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:10.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:09 smithi105 bash[20254]: cluster 2024-04-24T17:18:08.691410+0000 mgr.smithi028.zkmzde (mgr.14197) 231 : cluster [DBG] pgmap v178: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:10.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:09 smithi028 bash[18631]: cluster 2024-04-24T17:18:08.691410+0000 mgr.smithi028.zkmzde (mgr.14197) 231 : cluster [DBG] pgmap v178: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:10.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:09 smithi028 bash[18631]: cluster 2024-04-24T17:18:08.691410+0000 mgr.smithi028.zkmzde (mgr.14197) 231 : cluster [DBG] pgmap v178: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:10.476 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:18:11.788 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:18:12.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:11 smithi105 bash[20254]: cluster 2024-04-24T17:18:10.692469+0000 mgr.smithi028.zkmzde (mgr.14197) 232 : cluster [DBG] pgmap v179: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:12.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:11 smithi105 bash[20254]: cluster 2024-04-24T17:18:10.692469+0000 mgr.smithi028.zkmzde (mgr.14197) 232 : cluster [DBG] pgmap v179: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:12.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:11 smithi105 bash[20254]: audit 2024-04-24T17:18:11.791549+0000 mon.smithi028 (mon.0) 436 : audit [DBG] from='client.? 172.21.15.28:0/846723720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:12.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:11 smithi105 bash[20254]: audit 2024-04-24T17:18:11.791549+0000 mon.smithi028 (mon.0) 436 : audit [DBG] from='client.? 172.21.15.28:0/846723720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:12.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:11 smithi028 bash[18631]: cluster 2024-04-24T17:18:10.692469+0000 mgr.smithi028.zkmzde (mgr.14197) 232 : cluster [DBG] pgmap v179: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:12.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:11 smithi028 bash[18631]: cluster 2024-04-24T17:18:10.692469+0000 mgr.smithi028.zkmzde (mgr.14197) 232 : cluster [DBG] pgmap v179: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:12.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:11 smithi028 bash[18631]: audit 2024-04-24T17:18:11.791549+0000 mon.smithi028 (mon.0) 436 : audit [DBG] from='client.? 172.21.15.28:0/846723720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:12.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:11 smithi028 bash[18631]: audit 2024-04-24T17:18:11.791549+0000 mon.smithi028 (mon.0) 436 : audit [DBG] from='client.? 172.21.15.28:0/846723720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:12.419 INFO:teuthology.orchestra.run.smithi028.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-24T17:18:13.420 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:18:14.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:13 smithi105 bash[20254]: cluster 2024-04-24T17:18:12.693523+0000 mgr.smithi028.zkmzde (mgr.14197) 233 : cluster [DBG] pgmap v180: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:14.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:13 smithi105 bash[20254]: cluster 2024-04-24T17:18:12.693523+0000 mgr.smithi028.zkmzde (mgr.14197) 233 : cluster [DBG] pgmap v180: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:14.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:13 smithi105 bash[20254]: audit 2024-04-24T17:18:12.826178+0000 mon.smithi028 (mon.0) 437 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:14.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:13 smithi105 bash[20254]: audit 2024-04-24T17:18:12.826178+0000 mon.smithi028 (mon.0) 437 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:14.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:13 smithi028 bash[18631]: cluster 2024-04-24T17:18:12.693523+0000 mgr.smithi028.zkmzde (mgr.14197) 233 : cluster [DBG] pgmap v180: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:14.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:13 smithi028 bash[18631]: cluster 2024-04-24T17:18:12.693523+0000 mgr.smithi028.zkmzde (mgr.14197) 233 : cluster [DBG] pgmap v180: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:14.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:13 smithi028 bash[18631]: audit 2024-04-24T17:18:12.826178+0000 mon.smithi028 (mon.0) 437 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:14.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:13 smithi028 bash[18631]: audit 2024-04-24T17:18:12.826178+0000 mon.smithi028 (mon.0) 437 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:16.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:15 smithi105 bash[20254]: cluster 2024-04-24T17:18:14.694498+0000 mgr.smithi028.zkmzde (mgr.14197) 234 : cluster [DBG] pgmap v181: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:16.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:15 smithi105 bash[20254]: cluster 2024-04-24T17:18:14.694498+0000 mgr.smithi028.zkmzde (mgr.14197) 234 : cluster [DBG] pgmap v181: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:16.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:15 smithi028 bash[18631]: cluster 2024-04-24T17:18:14.694498+0000 mgr.smithi028.zkmzde (mgr.14197) 234 : cluster [DBG] pgmap v181: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:16.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:15 smithi028 bash[18631]: cluster 2024-04-24T17:18:14.694498+0000 mgr.smithi028.zkmzde (mgr.14197) 234 : cluster [DBG] pgmap v181: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:18.184 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:17 smithi028 bash[18631]: cluster 2024-04-24T17:18:16.695458+0000 mgr.smithi028.zkmzde (mgr.14197) 235 : cluster [DBG] pgmap v182: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:18.184 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:17 smithi028 bash[18631]: cluster 2024-04-24T17:18:16.695458+0000 mgr.smithi028.zkmzde (mgr.14197) 235 : cluster [DBG] pgmap v182: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:18.196 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:18:18.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:17 smithi105 bash[20254]: cluster 2024-04-24T17:18:16.695458+0000 mgr.smithi028.zkmzde (mgr.14197) 235 : cluster [DBG] pgmap v182: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:18.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:17 smithi105 bash[20254]: cluster 2024-04-24T17:18:16.695458+0000 mgr.smithi028.zkmzde (mgr.14197) 235 : cluster [DBG] pgmap v182: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:19.405 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:18:20.025 INFO:teuthology.orchestra.run.smithi028.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-24T17:18:20.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:19 smithi105 bash[20254]: cluster 2024-04-24T17:18:18.696473+0000 mgr.smithi028.zkmzde (mgr.14197) 236 : cluster [DBG] pgmap v183: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:20.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:19 smithi105 bash[20254]: cluster 2024-04-24T17:18:18.696473+0000 mgr.smithi028.zkmzde (mgr.14197) 236 : cluster [DBG] pgmap v183: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:20.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:19 smithi105 bash[20254]: audit 2024-04-24T17:18:19.408318+0000 mon.smithi028 (mon.0) 438 : audit [DBG] from='client.? 172.21.15.28:0/814098754' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:20.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:19 smithi105 bash[20254]: audit 2024-04-24T17:18:19.408318+0000 mon.smithi028 (mon.0) 438 : audit [DBG] from='client.? 172.21.15.28:0/814098754' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:20.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:19 smithi028 bash[18631]: cluster 2024-04-24T17:18:18.696473+0000 mgr.smithi028.zkmzde (mgr.14197) 236 : cluster [DBG] pgmap v183: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:20.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:19 smithi028 bash[18631]: cluster 2024-04-24T17:18:18.696473+0000 mgr.smithi028.zkmzde (mgr.14197) 236 : cluster [DBG] pgmap v183: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:20.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:19 smithi028 bash[18631]: audit 2024-04-24T17:18:19.408318+0000 mon.smithi028 (mon.0) 438 : audit [DBG] from='client.? 172.21.15.28:0/814098754' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:20.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:19 smithi028 bash[18631]: audit 2024-04-24T17:18:19.408318+0000 mon.smithi028 (mon.0) 438 : audit [DBG] from='client.? 172.21.15.28:0/814098754' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:21.027 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:18:22.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:21 smithi105 bash[20254]: cluster 2024-04-24T17:18:20.697594+0000 mgr.smithi028.zkmzde (mgr.14197) 237 : cluster [DBG] pgmap v184: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:22.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:21 smithi105 bash[20254]: cluster 2024-04-24T17:18:20.697594+0000 mgr.smithi028.zkmzde (mgr.14197) 237 : cluster [DBG] pgmap v184: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:22.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:21 smithi028 bash[18631]: cluster 2024-04-24T17:18:20.697594+0000 mgr.smithi028.zkmzde (mgr.14197) 237 : cluster [DBG] pgmap v184: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:22.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:21 smithi028 bash[18631]: cluster 2024-04-24T17:18:20.697594+0000 mgr.smithi028.zkmzde (mgr.14197) 237 : cluster [DBG] pgmap v184: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:23.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:22 smithi105 bash[20254]: audit 2024-04-24T17:18:22.783537+0000 mon.smithi028 (mon.0) 439 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:18:23.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:22 smithi105 bash[20254]: audit 2024-04-24T17:18:22.783537+0000 mon.smithi028 (mon.0) 439 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:18:23.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:22 smithi028 bash[18631]: audit 2024-04-24T17:18:22.783537+0000 mon.smithi028 (mon.0) 439 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:18:23.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:22 smithi028 bash[18631]: audit 2024-04-24T17:18:22.783537+0000 mon.smithi028 (mon.0) 439 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:18:24.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:23 smithi105 bash[20254]: cluster 2024-04-24T17:18:22.698719+0000 mgr.smithi028.zkmzde (mgr.14197) 238 : cluster [DBG] pgmap v185: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:24.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:23 smithi105 bash[20254]: cluster 2024-04-24T17:18:22.698719+0000 mgr.smithi028.zkmzde (mgr.14197) 238 : cluster [DBG] pgmap v185: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:24.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:23 smithi028 bash[18631]: cluster 2024-04-24T17:18:22.698719+0000 mgr.smithi028.zkmzde (mgr.14197) 238 : cluster [DBG] pgmap v185: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:24.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:23 smithi028 bash[18631]: cluster 2024-04-24T17:18:22.698719+0000 mgr.smithi028.zkmzde (mgr.14197) 238 : cluster [DBG] pgmap v185: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:25.796 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:18:26.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:25 smithi105 bash[20254]: cluster 2024-04-24T17:18:24.699762+0000 mgr.smithi028.zkmzde (mgr.14197) 239 : cluster [DBG] pgmap v186: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:26.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:25 smithi105 bash[20254]: cluster 2024-04-24T17:18:24.699762+0000 mgr.smithi028.zkmzde (mgr.14197) 239 : cluster [DBG] pgmap v186: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:26.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:25 smithi028 bash[18631]: cluster 2024-04-24T17:18:24.699762+0000 mgr.smithi028.zkmzde (mgr.14197) 239 : cluster [DBG] pgmap v186: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:26.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:25 smithi028 bash[18631]: cluster 2024-04-24T17:18:24.699762+0000 mgr.smithi028.zkmzde (mgr.14197) 239 : cluster [DBG] pgmap v186: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:27.142 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:18:27.779 INFO:teuthology.orchestra.run.smithi028.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-24T17:18:28.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:27 smithi028 bash[18631]: cluster 2024-04-24T17:18:26.700789+0000 mgr.smithi028.zkmzde (mgr.14197) 240 : cluster [DBG] pgmap v187: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:28.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:27 smithi028 bash[18631]: cluster 2024-04-24T17:18:26.700789+0000 mgr.smithi028.zkmzde (mgr.14197) 240 : cluster [DBG] pgmap v187: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:28.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:27 smithi028 bash[18631]: audit 2024-04-24T17:18:27.145243+0000 mon.smithi028 (mon.0) 440 : audit [DBG] from='client.? 172.21.15.28:0/564145479' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:28.032 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:27 smithi028 bash[18631]: audit 2024-04-24T17:18:27.145243+0000 mon.smithi028 (mon.0) 440 : audit [DBG] from='client.? 172.21.15.28:0/564145479' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:28.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:27 smithi028 bash[18631]: audit 2024-04-24T17:18:27.826411+0000 mon.smithi028 (mon.0) 441 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:28.033 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:27 smithi028 bash[18631]: audit 2024-04-24T17:18:27.826411+0000 mon.smithi028 (mon.0) 441 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:28.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:27 smithi105 bash[20254]: cluster 2024-04-24T17:18:26.700789+0000 mgr.smithi028.zkmzde (mgr.14197) 240 : cluster [DBG] pgmap v187: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:28.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:27 smithi105 bash[20254]: cluster 2024-04-24T17:18:26.700789+0000 mgr.smithi028.zkmzde (mgr.14197) 240 : cluster [DBG] pgmap v187: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:28.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:27 smithi105 bash[20254]: audit 2024-04-24T17:18:27.145243+0000 mon.smithi028 (mon.0) 440 : audit [DBG] from='client.? 172.21.15.28:0/564145479' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:28.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:27 smithi105 bash[20254]: audit 2024-04-24T17:18:27.145243+0000 mon.smithi028 (mon.0) 440 : audit [DBG] from='client.? 172.21.15.28:0/564145479' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:28.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:27 smithi105 bash[20254]: audit 2024-04-24T17:18:27.826411+0000 mon.smithi028 (mon.0) 441 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:28.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:27 smithi105 bash[20254]: audit 2024-04-24T17:18:27.826411+0000 mon.smithi028 (mon.0) 441 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:28.780 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:18:30.097 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:29 smithi028 bash[18631]: cluster 2024-04-24T17:18:28.701880+0000 mgr.smithi028.zkmzde (mgr.14197) 241 : cluster [DBG] pgmap v188: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:30.097 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:29 smithi028 bash[18631]: cluster 2024-04-24T17:18:28.701880+0000 mgr.smithi028.zkmzde (mgr.14197) 241 : cluster [DBG] pgmap v188: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:30.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:29 smithi105 bash[20254]: cluster 2024-04-24T17:18:28.701880+0000 mgr.smithi028.zkmzde (mgr.14197) 241 : cluster [DBG] pgmap v188: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:30.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:29 smithi105 bash[20254]: cluster 2024-04-24T17:18:28.701880+0000 mgr.smithi028.zkmzde (mgr.14197) 241 : cluster [DBG] pgmap v188: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:31.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:30 smithi105 bash[20254]: audit 2024-04-24T17:18:30.407853+0000 mon.smithi028 (mon.0) 442 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:18:31.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:30 smithi105 bash[20254]: audit 2024-04-24T17:18:30.407853+0000 mon.smithi028 (mon.0) 442 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:18:31.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:30 smithi105 bash[20254]: audit 2024-04-24T17:18:30.410046+0000 mon.smithi028 (mon.0) 443 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:18:31.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:30 smithi105 bash[20254]: audit 2024-04-24T17:18:30.410046+0000 mon.smithi028 (mon.0) 443 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:18:31.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:30 smithi105 bash[20254]: audit 2024-04-24T17:18:30.421890+0000 mon.smithi028 (mon.0) 444 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:18:31.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:30 smithi105 bash[20254]: audit 2024-04-24T17:18:30.421890+0000 mon.smithi028 (mon.0) 444 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:18:31.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:30 smithi105 bash[20254]: audit 2024-04-24T17:18:30.429969+0000 mon.smithi028 (mon.0) 445 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:18:31.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:30 smithi105 bash[20254]: audit 2024-04-24T17:18:30.429969+0000 mon.smithi028 (mon.0) 445 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:18:31.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:30 smithi028 bash[18631]: audit 2024-04-24T17:18:30.407853+0000 mon.smithi028 (mon.0) 442 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:18:31.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:30 smithi028 bash[18631]: audit 2024-04-24T17:18:30.407853+0000 mon.smithi028 (mon.0) 442 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:18:31.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:30 smithi028 bash[18631]: audit 2024-04-24T17:18:30.410046+0000 mon.smithi028 (mon.0) 443 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:18:31.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:30 smithi028 bash[18631]: audit 2024-04-24T17:18:30.410046+0000 mon.smithi028 (mon.0) 443 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:18:31.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:30 smithi028 bash[18631]: audit 2024-04-24T17:18:30.421890+0000 mon.smithi028 (mon.0) 444 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:18:31.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:30 smithi028 bash[18631]: audit 2024-04-24T17:18:30.421890+0000 mon.smithi028 (mon.0) 444 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:18:31.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:30 smithi028 bash[18631]: audit 2024-04-24T17:18:30.429969+0000 mon.smithi028 (mon.0) 445 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:18:31.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:30 smithi028 bash[18631]: audit 2024-04-24T17:18:30.429969+0000 mon.smithi028 (mon.0) 445 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:18:32.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:31 smithi105 bash[20254]: cluster 2024-04-24T17:18:30.413249+0000 mgr.smithi028.zkmzde (mgr.14197) 242 : cluster [DBG] pgmap v189: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:32.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:31 smithi105 bash[20254]: cluster 2024-04-24T17:18:30.413249+0000 mgr.smithi028.zkmzde (mgr.14197) 242 : cluster [DBG] pgmap v189: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:32.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:31 smithi105 bash[20254]: cluster 2024-04-24T17:18:30.414501+0000 mgr.smithi028.zkmzde (mgr.14197) 243 : cluster [DBG] pgmap v190: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:32.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:31 smithi105 bash[20254]: cluster 2024-04-24T17:18:30.414501+0000 mgr.smithi028.zkmzde (mgr.14197) 243 : cluster [DBG] pgmap v190: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:32.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:31 smithi028 bash[18631]: cluster 2024-04-24T17:18:30.413249+0000 mgr.smithi028.zkmzde (mgr.14197) 242 : cluster [DBG] pgmap v189: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:32.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:31 smithi028 bash[18631]: cluster 2024-04-24T17:18:30.413249+0000 mgr.smithi028.zkmzde (mgr.14197) 242 : cluster [DBG] pgmap v189: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:32.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:31 smithi028 bash[18631]: cluster 2024-04-24T17:18:30.414501+0000 mgr.smithi028.zkmzde (mgr.14197) 243 : cluster [DBG] pgmap v190: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:32.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:31 smithi028 bash[18631]: cluster 2024-04-24T17:18:30.414501+0000 mgr.smithi028.zkmzde (mgr.14197) 243 : cluster [DBG] pgmap v190: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:33.550 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:18:34.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:33 smithi105 bash[20254]: cluster 2024-04-24T17:18:32.415503+0000 mgr.smithi028.zkmzde (mgr.14197) 244 : cluster [DBG] pgmap v191: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:34.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:33 smithi105 bash[20254]: cluster 2024-04-24T17:18:32.415503+0000 mgr.smithi028.zkmzde (mgr.14197) 244 : cluster [DBG] pgmap v191: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:34.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:33 smithi028 bash[18631]: cluster 2024-04-24T17:18:32.415503+0000 mgr.smithi028.zkmzde (mgr.14197) 244 : cluster [DBG] pgmap v191: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:34.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:33 smithi028 bash[18631]: cluster 2024-04-24T17:18:32.415503+0000 mgr.smithi028.zkmzde (mgr.14197) 244 : cluster [DBG] pgmap v191: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:34.791 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:18:35.111 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:34 smithi028 bash[18631]: audit 2024-04-24T17:18:34.795025+0000 mon.smithi028 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.28:0/1272369421' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:35.111 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:34 smithi028 bash[18631]: audit 2024-04-24T17:18:34.795025+0000 mon.smithi028 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.28:0/1272369421' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:35.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:34 smithi105 bash[20254]: audit 2024-04-24T17:18:34.795025+0000 mon.smithi028 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.28:0/1272369421' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:35.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:34 smithi105 bash[20254]: audit 2024-04-24T17:18:34.795025+0000 mon.smithi028 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.28:0/1272369421' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:35.460 INFO:teuthology.orchestra.run.smithi028.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-24T17:18:36.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:35 smithi105 bash[20254]: cluster 2024-04-24T17:18:34.416103+0000 mgr.smithi028.zkmzde (mgr.14197) 245 : cluster [DBG] pgmap v192: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:36.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:35 smithi105 bash[20254]: cluster 2024-04-24T17:18:34.416103+0000 mgr.smithi028.zkmzde (mgr.14197) 245 : cluster [DBG] pgmap v192: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:36.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:35 smithi028 bash[18631]: cluster 2024-04-24T17:18:34.416103+0000 mgr.smithi028.zkmzde (mgr.14197) 245 : cluster [DBG] pgmap v192: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:36.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:35 smithi028 bash[18631]: cluster 2024-04-24T17:18:34.416103+0000 mgr.smithi028.zkmzde (mgr.14197) 245 : cluster [DBG] pgmap v192: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:36.461 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:18:38.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:37 smithi028 bash[18631]: cluster 2024-04-24T17:18:36.417109+0000 mgr.smithi028.zkmzde (mgr.14197) 246 : cluster [DBG] pgmap v193: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:38.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:37 smithi028 bash[18631]: cluster 2024-04-24T17:18:36.417109+0000 mgr.smithi028.zkmzde (mgr.14197) 246 : cluster [DBG] pgmap v193: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:38.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:37 smithi105 bash[20254]: cluster 2024-04-24T17:18:36.417109+0000 mgr.smithi028.zkmzde (mgr.14197) 246 : cluster [DBG] pgmap v193: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:38.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:37 smithi105 bash[20254]: cluster 2024-04-24T17:18:36.417109+0000 mgr.smithi028.zkmzde (mgr.14197) 246 : cluster [DBG] pgmap v193: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:40.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:39 smithi105 bash[20254]: cluster 2024-04-24T17:18:38.418136+0000 mgr.smithi028.zkmzde (mgr.14197) 247 : cluster [DBG] pgmap v194: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:40.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:39 smithi105 bash[20254]: cluster 2024-04-24T17:18:38.418136+0000 mgr.smithi028.zkmzde (mgr.14197) 247 : cluster [DBG] pgmap v194: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:40.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:39 smithi028 bash[18631]: cluster 2024-04-24T17:18:38.418136+0000 mgr.smithi028.zkmzde (mgr.14197) 247 : cluster [DBG] pgmap v194: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:40.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:39 smithi028 bash[18631]: cluster 2024-04-24T17:18:38.418136+0000 mgr.smithi028.zkmzde (mgr.14197) 247 : cluster [DBG] pgmap v194: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:41.229 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:18:42.139 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:41 smithi028 bash[18631]: cluster 2024-04-24T17:18:40.419251+0000 mgr.smithi028.zkmzde (mgr.14197) 248 : cluster [DBG] pgmap v195: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:42.139 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:41 smithi028 bash[18631]: cluster 2024-04-24T17:18:40.419251+0000 mgr.smithi028.zkmzde (mgr.14197) 248 : cluster [DBG] pgmap v195: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:42.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:41 smithi105 bash[20254]: cluster 2024-04-24T17:18:40.419251+0000 mgr.smithi028.zkmzde (mgr.14197) 248 : cluster [DBG] pgmap v195: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:42.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:41 smithi105 bash[20254]: cluster 2024-04-24T17:18:40.419251+0000 mgr.smithi028.zkmzde (mgr.14197) 248 : cluster [DBG] pgmap v195: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:42.513 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:18:43.148 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:42 smithi028 bash[18631]: audit 2024-04-24T17:18:42.516730+0000 mon.smithi028 (mon.0) 447 : audit [DBG] from='client.? 172.21.15.28:0/2959160127' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:43.148 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:42 smithi028 bash[18631]: audit 2024-04-24T17:18:42.516730+0000 mon.smithi028 (mon.0) 447 : audit [DBG] from='client.? 172.21.15.28:0/2959160127' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:43.148 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:42 smithi028 bash[18631]: audit 2024-04-24T17:18:42.827135+0000 mon.smithi028 (mon.0) 448 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:43.148 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:42 smithi028 bash[18631]: audit 2024-04-24T17:18:42.827135+0000 mon.smithi028 (mon.0) 448 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:43.149 INFO:teuthology.orchestra.run.smithi028.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-24T17:18:43.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:42 smithi105 bash[20254]: audit 2024-04-24T17:18:42.516730+0000 mon.smithi028 (mon.0) 447 : audit [DBG] from='client.? 172.21.15.28:0/2959160127' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:43.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:42 smithi105 bash[20254]: audit 2024-04-24T17:18:42.516730+0000 mon.smithi028 (mon.0) 447 : audit [DBG] from='client.? 172.21.15.28:0/2959160127' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:43.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:42 smithi105 bash[20254]: audit 2024-04-24T17:18:42.827135+0000 mon.smithi028 (mon.0) 448 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:43.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:42 smithi105 bash[20254]: audit 2024-04-24T17:18:42.827135+0000 mon.smithi028 (mon.0) 448 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:44.150 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:18:44.161 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:43 smithi028 bash[18631]: cluster 2024-04-24T17:18:42.420226+0000 mgr.smithi028.zkmzde (mgr.14197) 249 : cluster [DBG] pgmap v196: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:44.161 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:43 smithi028 bash[18631]: cluster 2024-04-24T17:18:42.420226+0000 mgr.smithi028.zkmzde (mgr.14197) 249 : cluster [DBG] pgmap v196: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:44.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:43 smithi105 bash[20254]: cluster 2024-04-24T17:18:42.420226+0000 mgr.smithi028.zkmzde (mgr.14197) 249 : cluster [DBG] pgmap v196: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:44.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:43 smithi105 bash[20254]: cluster 2024-04-24T17:18:42.420226+0000 mgr.smithi028.zkmzde (mgr.14197) 249 : cluster [DBG] pgmap v196: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:46.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:45 smithi105 bash[20254]: cluster 2024-04-24T17:18:44.421324+0000 mgr.smithi028.zkmzde (mgr.14197) 250 : cluster [DBG] pgmap v197: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:46.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:45 smithi105 bash[20254]: cluster 2024-04-24T17:18:44.421324+0000 mgr.smithi028.zkmzde (mgr.14197) 250 : cluster [DBG] pgmap v197: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:46.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:45 smithi028 bash[18631]: cluster 2024-04-24T17:18:44.421324+0000 mgr.smithi028.zkmzde (mgr.14197) 250 : cluster [DBG] pgmap v197: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:46.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:45 smithi028 bash[18631]: cluster 2024-04-24T17:18:44.421324+0000 mgr.smithi028.zkmzde (mgr.14197) 250 : cluster [DBG] pgmap v197: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:48.184 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:47 smithi028 bash[18631]: cluster 2024-04-24T17:18:46.422312+0000 mgr.smithi028.zkmzde (mgr.14197) 251 : cluster [DBG] pgmap v198: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:48.184 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:47 smithi028 bash[18631]: cluster 2024-04-24T17:18:46.422312+0000 mgr.smithi028.zkmzde (mgr.14197) 251 : cluster [DBG] pgmap v198: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:48.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:47 smithi105 bash[20254]: cluster 2024-04-24T17:18:46.422312+0000 mgr.smithi028.zkmzde (mgr.14197) 251 : cluster [DBG] pgmap v198: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:48.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:47 smithi105 bash[20254]: cluster 2024-04-24T17:18:46.422312+0000 mgr.smithi028.zkmzde (mgr.14197) 251 : cluster [DBG] pgmap v198: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:48.928 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:18:50.164 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:49 smithi028 bash[18631]: cluster 2024-04-24T17:18:48.422980+0000 mgr.smithi028.zkmzde (mgr.14197) 252 : cluster [DBG] pgmap v199: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:50.164 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:49 smithi028 bash[18631]: cluster 2024-04-24T17:18:48.422980+0000 mgr.smithi028.zkmzde (mgr.14197) 252 : cluster [DBG] pgmap v199: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:50.219 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:18:50.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:49 smithi105 bash[20254]: cluster 2024-04-24T17:18:48.422980+0000 mgr.smithi028.zkmzde (mgr.14197) 252 : cluster [DBG] pgmap v199: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:50.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:49 smithi105 bash[20254]: cluster 2024-04-24T17:18:48.422980+0000 mgr.smithi028.zkmzde (mgr.14197) 252 : cluster [DBG] pgmap v199: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:50.792 INFO:teuthology.orchestra.run.smithi028.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-24T17:18:51.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:50 smithi105 bash[20254]: audit 2024-04-24T17:18:50.222832+0000 mon.smithi028 (mon.0) 449 : audit [DBG] from='client.? 172.21.15.28:0/1035337015' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:51.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:50 smithi105 bash[20254]: audit 2024-04-24T17:18:50.222832+0000 mon.smithi028 (mon.0) 449 : audit [DBG] from='client.? 172.21.15.28:0/1035337015' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:51.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:50 smithi028 bash[18631]: audit 2024-04-24T17:18:50.222832+0000 mon.smithi028 (mon.0) 449 : audit [DBG] from='client.? 172.21.15.28:0/1035337015' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:51.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:50 smithi028 bash[18631]: audit 2024-04-24T17:18:50.222832+0000 mon.smithi028 (mon.0) 449 : audit [DBG] from='client.? 172.21.15.28:0/1035337015' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:51.794 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:18:52.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:51 smithi105 bash[20254]: cluster 2024-04-24T17:18:50.423938+0000 mgr.smithi028.zkmzde (mgr.14197) 253 : cluster [DBG] pgmap v200: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:52.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:51 smithi105 bash[20254]: cluster 2024-04-24T17:18:50.423938+0000 mgr.smithi028.zkmzde (mgr.14197) 253 : cluster [DBG] pgmap v200: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:52.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:51 smithi028 bash[18631]: cluster 2024-04-24T17:18:50.423938+0000 mgr.smithi028.zkmzde (mgr.14197) 253 : cluster [DBG] pgmap v200: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:52.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:51 smithi028 bash[18631]: cluster 2024-04-24T17:18:50.423938+0000 mgr.smithi028.zkmzde (mgr.14197) 253 : cluster [DBG] pgmap v200: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:54.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:53 smithi105 bash[20254]: cluster 2024-04-24T17:18:52.424958+0000 mgr.smithi028.zkmzde (mgr.14197) 254 : cluster [DBG] pgmap v201: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:54.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:53 smithi105 bash[20254]: cluster 2024-04-24T17:18:52.424958+0000 mgr.smithi028.zkmzde (mgr.14197) 254 : cluster [DBG] pgmap v201: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:54.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:53 smithi028 bash[18631]: cluster 2024-04-24T17:18:52.424958+0000 mgr.smithi028.zkmzde (mgr.14197) 254 : cluster [DBG] pgmap v201: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:54.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:53 smithi028 bash[18631]: cluster 2024-04-24T17:18:52.424958+0000 mgr.smithi028.zkmzde (mgr.14197) 254 : cluster [DBG] pgmap v201: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:56.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:55 smithi105 bash[20254]: cluster 2024-04-24T17:18:54.425974+0000 mgr.smithi028.zkmzde (mgr.14197) 255 : cluster [DBG] pgmap v202: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:56.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:55 smithi105 bash[20254]: cluster 2024-04-24T17:18:54.425974+0000 mgr.smithi028.zkmzde (mgr.14197) 255 : cluster [DBG] pgmap v202: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:56.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:55 smithi028 bash[18631]: cluster 2024-04-24T17:18:54.425974+0000 mgr.smithi028.zkmzde (mgr.14197) 255 : cluster [DBG] pgmap v202: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:56.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:55 smithi028 bash[18631]: cluster 2024-04-24T17:18:54.425974+0000 mgr.smithi028.zkmzde (mgr.14197) 255 : cluster [DBG] pgmap v202: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:56.559 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:18:57.772 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:18:58.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:57 smithi028 bash[18631]: cluster 2024-04-24T17:18:56.427020+0000 mgr.smithi028.zkmzde (mgr.14197) 256 : cluster [DBG] pgmap v203: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:58.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:57 smithi028 bash[18631]: cluster 2024-04-24T17:18:56.427020+0000 mgr.smithi028.zkmzde (mgr.14197) 256 : cluster [DBG] pgmap v203: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:58.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:57 smithi028 bash[18631]: audit 2024-04-24T17:18:57.776572+0000 mon.smithi028 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.28:0/828655135' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:58.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:57 smithi028 bash[18631]: audit 2024-04-24T17:18:57.776572+0000 mon.smithi028 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.28:0/828655135' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:58.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:57 smithi028 bash[18631]: audit 2024-04-24T17:18:57.826558+0000 mon.smithi028 (mon.0) 451 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:58.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:57 smithi028 bash[18631]: audit 2024-04-24T17:18:57.826558+0000 mon.smithi028 (mon.0) 451 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:58.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:57 smithi105 bash[20254]: cluster 2024-04-24T17:18:56.427020+0000 mgr.smithi028.zkmzde (mgr.14197) 256 : cluster [DBG] pgmap v203: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:58.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:57 smithi105 bash[20254]: cluster 2024-04-24T17:18:56.427020+0000 mgr.smithi028.zkmzde (mgr.14197) 256 : cluster [DBG] pgmap v203: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:18:58.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:57 smithi105 bash[20254]: audit 2024-04-24T17:18:57.776572+0000 mon.smithi028 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.28:0/828655135' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:58.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:57 smithi105 bash[20254]: audit 2024-04-24T17:18:57.776572+0000 mon.smithi028 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.28:0/828655135' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:18:58.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:57 smithi105 bash[20254]: audit 2024-04-24T17:18:57.826558+0000 mon.smithi028 (mon.0) 451 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:58.270 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:57 smithi105 bash[20254]: audit 2024-04-24T17:18:57.826558+0000 mon.smithi028 (mon.0) 451 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:18:58.433 INFO:teuthology.orchestra.run.smithi028.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-24T17:18:59.434 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:19:00.199 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:59 smithi028 bash[18631]: cluster 2024-04-24T17:18:58.428108+0000 mgr.smithi028.zkmzde (mgr.14197) 257 : cluster [DBG] pgmap v204: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:00.199 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:18:59 smithi028 bash[18631]: cluster 2024-04-24T17:18:58.428108+0000 mgr.smithi028.zkmzde (mgr.14197) 257 : cluster [DBG] pgmap v204: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:00.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:59 smithi105 bash[20254]: cluster 2024-04-24T17:18:58.428108+0000 mgr.smithi028.zkmzde (mgr.14197) 257 : cluster [DBG] pgmap v204: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:00.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:18:59 smithi105 bash[20254]: cluster 2024-04-24T17:18:58.428108+0000 mgr.smithi028.zkmzde (mgr.14197) 257 : cluster [DBG] pgmap v204: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:02.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:01 smithi105 bash[20254]: cluster 2024-04-24T17:19:00.429124+0000 mgr.smithi028.zkmzde (mgr.14197) 258 : cluster [DBG] pgmap v205: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:02.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:01 smithi105 bash[20254]: cluster 2024-04-24T17:19:00.429124+0000 mgr.smithi028.zkmzde (mgr.14197) 258 : cluster [DBG] pgmap v205: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:02.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:01 smithi028 bash[18631]: cluster 2024-04-24T17:19:00.429124+0000 mgr.smithi028.zkmzde (mgr.14197) 258 : cluster [DBG] pgmap v205: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:02.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:01 smithi028 bash[18631]: cluster 2024-04-24T17:19:00.429124+0000 mgr.smithi028.zkmzde (mgr.14197) 258 : cluster [DBG] pgmap v205: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:04.205 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:19:04.227 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:03 smithi028 bash[18631]: cluster 2024-04-24T17:19:02.430157+0000 mgr.smithi028.zkmzde (mgr.14197) 259 : cluster [DBG] pgmap v206: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:04.227 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:03 smithi028 bash[18631]: cluster 2024-04-24T17:19:02.430157+0000 mgr.smithi028.zkmzde (mgr.14197) 259 : cluster [DBG] pgmap v206: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:04.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:03 smithi105 bash[20254]: cluster 2024-04-24T17:19:02.430157+0000 mgr.smithi028.zkmzde (mgr.14197) 259 : cluster [DBG] pgmap v206: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:04.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:03 smithi105 bash[20254]: cluster 2024-04-24T17:19:02.430157+0000 mgr.smithi028.zkmzde (mgr.14197) 259 : cluster [DBG] pgmap v206: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:05.386 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:19:05.987 INFO:teuthology.orchestra.run.smithi028.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-24T17:19:06.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:05 smithi105 bash[20254]: cluster 2024-04-24T17:19:04.431176+0000 mgr.smithi028.zkmzde (mgr.14197) 260 : cluster [DBG] pgmap v207: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:06.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:05 smithi105 bash[20254]: cluster 2024-04-24T17:19:04.431176+0000 mgr.smithi028.zkmzde (mgr.14197) 260 : cluster [DBG] pgmap v207: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:06.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:05 smithi105 bash[20254]: audit 2024-04-24T17:19:05.390598+0000 mon.smithi028 (mon.0) 452 : audit [DBG] from='client.? 172.21.15.28:0/2862740331' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:06.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:05 smithi105 bash[20254]: audit 2024-04-24T17:19:05.390598+0000 mon.smithi028 (mon.0) 452 : audit [DBG] from='client.? 172.21.15.28:0/2862740331' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:06.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:05 smithi028 bash[18631]: cluster 2024-04-24T17:19:04.431176+0000 mgr.smithi028.zkmzde (mgr.14197) 260 : cluster [DBG] pgmap v207: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:06.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:05 smithi028 bash[18631]: cluster 2024-04-24T17:19:04.431176+0000 mgr.smithi028.zkmzde (mgr.14197) 260 : cluster [DBG] pgmap v207: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:06.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:05 smithi028 bash[18631]: audit 2024-04-24T17:19:05.390598+0000 mon.smithi028 (mon.0) 452 : audit [DBG] from='client.? 172.21.15.28:0/2862740331' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:06.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:05 smithi028 bash[18631]: audit 2024-04-24T17:19:05.390598+0000 mon.smithi028 (mon.0) 452 : audit [DBG] from='client.? 172.21.15.28:0/2862740331' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:06.989 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:19:08.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:07 smithi105 bash[20254]: cluster 2024-04-24T17:19:06.432128+0000 mgr.smithi028.zkmzde (mgr.14197) 261 : cluster [DBG] pgmap v208: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:08.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:07 smithi105 bash[20254]: cluster 2024-04-24T17:19:06.432128+0000 mgr.smithi028.zkmzde (mgr.14197) 261 : cluster [DBG] pgmap v208: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:08.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:07 smithi028 bash[18631]: cluster 2024-04-24T17:19:06.432128+0000 mgr.smithi028.zkmzde (mgr.14197) 261 : cluster [DBG] pgmap v208: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:08.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:07 smithi028 bash[18631]: cluster 2024-04-24T17:19:06.432128+0000 mgr.smithi028.zkmzde (mgr.14197) 261 : cluster [DBG] pgmap v208: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:10.234 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:09 smithi028 bash[18631]: cluster 2024-04-24T17:19:08.433125+0000 mgr.smithi028.zkmzde (mgr.14197) 262 : cluster [DBG] pgmap v209: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:10.234 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:09 smithi028 bash[18631]: cluster 2024-04-24T17:19:08.433125+0000 mgr.smithi028.zkmzde (mgr.14197) 262 : cluster [DBG] pgmap v209: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:10.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:09 smithi105 bash[20254]: cluster 2024-04-24T17:19:08.433125+0000 mgr.smithi028.zkmzde (mgr.14197) 262 : cluster [DBG] pgmap v209: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:10.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:09 smithi105 bash[20254]: cluster 2024-04-24T17:19:08.433125+0000 mgr.smithi028.zkmzde (mgr.14197) 262 : cluster [DBG] pgmap v209: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:11.763 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:19:12.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:11 smithi105 bash[20254]: cluster 2024-04-24T17:19:10.434161+0000 mgr.smithi028.zkmzde (mgr.14197) 263 : cluster [DBG] pgmap v210: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:12.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:11 smithi105 bash[20254]: cluster 2024-04-24T17:19:10.434161+0000 mgr.smithi028.zkmzde (mgr.14197) 263 : cluster [DBG] pgmap v210: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:12.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:11 smithi028 bash[18631]: cluster 2024-04-24T17:19:10.434161+0000 mgr.smithi028.zkmzde (mgr.14197) 263 : cluster [DBG] pgmap v210: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:12.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:11 smithi028 bash[18631]: cluster 2024-04-24T17:19:10.434161+0000 mgr.smithi028.zkmzde (mgr.14197) 263 : cluster [DBG] pgmap v210: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:13.012 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:19:13.221 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:12 smithi028 bash[18631]: audit 2024-04-24T17:19:12.826878+0000 mon.smithi028 (mon.0) 453 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:13.221 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:12 smithi028 bash[18631]: audit 2024-04-24T17:19:12.826878+0000 mon.smithi028 (mon.0) 453 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:13.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:12 smithi105 bash[20254]: audit 2024-04-24T17:19:12.826878+0000 mon.smithi028 (mon.0) 453 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:13.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:12 smithi105 bash[20254]: audit 2024-04-24T17:19:12.826878+0000 mon.smithi028 (mon.0) 453 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:13.713 INFO:teuthology.orchestra.run.smithi028.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-24T17:19:14.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:13 smithi105 bash[20254]: cluster 2024-04-24T17:19:12.435156+0000 mgr.smithi028.zkmzde (mgr.14197) 264 : cluster [DBG] pgmap v211: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:14.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:13 smithi105 bash[20254]: cluster 2024-04-24T17:19:12.435156+0000 mgr.smithi028.zkmzde (mgr.14197) 264 : cluster [DBG] pgmap v211: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:14.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:13 smithi105 bash[20254]: audit 2024-04-24T17:19:13.016401+0000 mon.smithi028 (mon.0) 454 : audit [DBG] from='client.? 172.21.15.28:0/2532758122' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:14.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:13 smithi105 bash[20254]: audit 2024-04-24T17:19:13.016401+0000 mon.smithi028 (mon.0) 454 : audit [DBG] from='client.? 172.21.15.28:0/2532758122' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:14.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:13 smithi028 bash[18631]: cluster 2024-04-24T17:19:12.435156+0000 mgr.smithi028.zkmzde (mgr.14197) 264 : cluster [DBG] pgmap v211: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:14.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:13 smithi028 bash[18631]: cluster 2024-04-24T17:19:12.435156+0000 mgr.smithi028.zkmzde (mgr.14197) 264 : cluster [DBG] pgmap v211: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:14.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:13 smithi028 bash[18631]: audit 2024-04-24T17:19:13.016401+0000 mon.smithi028 (mon.0) 454 : audit [DBG] from='client.? 172.21.15.28:0/2532758122' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:14.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:13 smithi028 bash[18631]: audit 2024-04-24T17:19:13.016401+0000 mon.smithi028 (mon.0) 454 : audit [DBG] from='client.? 172.21.15.28:0/2532758122' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:14.714 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:19:16.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:15 smithi105 bash[20254]: cluster 2024-04-24T17:19:14.436127+0000 mgr.smithi028.zkmzde (mgr.14197) 265 : cluster [DBG] pgmap v212: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:16.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:15 smithi105 bash[20254]: cluster 2024-04-24T17:19:14.436127+0000 mgr.smithi028.zkmzde (mgr.14197) 265 : cluster [DBG] pgmap v212: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:16.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:15 smithi028 bash[18631]: cluster 2024-04-24T17:19:14.436127+0000 mgr.smithi028.zkmzde (mgr.14197) 265 : cluster [DBG] pgmap v212: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:16.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:15 smithi028 bash[18631]: cluster 2024-04-24T17:19:14.436127+0000 mgr.smithi028.zkmzde (mgr.14197) 265 : cluster [DBG] pgmap v212: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:18.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:17 smithi105 bash[20254]: cluster 2024-04-24T17:19:16.437127+0000 mgr.smithi028.zkmzde (mgr.14197) 266 : cluster [DBG] pgmap v213: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:18.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:17 smithi105 bash[20254]: cluster 2024-04-24T17:19:16.437127+0000 mgr.smithi028.zkmzde (mgr.14197) 266 : cluster [DBG] pgmap v213: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:18.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:17 smithi028 bash[18631]: cluster 2024-04-24T17:19:16.437127+0000 mgr.smithi028.zkmzde (mgr.14197) 266 : cluster [DBG] pgmap v213: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:18.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:17 smithi028 bash[18631]: cluster 2024-04-24T17:19:16.437127+0000 mgr.smithi028.zkmzde (mgr.14197) 266 : cluster [DBG] pgmap v213: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:19.484 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:19:20.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:19 smithi105 bash[20254]: cluster 2024-04-24T17:19:18.438218+0000 mgr.smithi028.zkmzde (mgr.14197) 267 : cluster [DBG] pgmap v214: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:20.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:19 smithi105 bash[20254]: cluster 2024-04-24T17:19:18.438218+0000 mgr.smithi028.zkmzde (mgr.14197) 267 : cluster [DBG] pgmap v214: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:20.270 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:19 smithi028 bash[18631]: cluster 2024-04-24T17:19:18.438218+0000 mgr.smithi028.zkmzde (mgr.14197) 267 : cluster [DBG] pgmap v214: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:20.270 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:19 smithi028 bash[18631]: cluster 2024-04-24T17:19:18.438218+0000 mgr.smithi028.zkmzde (mgr.14197) 267 : cluster [DBG] pgmap v214: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:20.672 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:19:21.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:21 smithi105 bash[20254]: audit 2024-04-24T17:19:20.676351+0000 mon.smithi028 (mon.0) 455 : audit [DBG] from='client.? 172.21.15.28:0/3402458004' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:21.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:21 smithi105 bash[20254]: audit 2024-04-24T17:19:20.676351+0000 mon.smithi028 (mon.0) 455 : audit [DBG] from='client.? 172.21.15.28:0/3402458004' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:21.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:21 smithi028 bash[18631]: audit 2024-04-24T17:19:20.676351+0000 mon.smithi028 (mon.0) 455 : audit [DBG] from='client.? 172.21.15.28:0/3402458004' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:21.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:21 smithi028 bash[18631]: audit 2024-04-24T17:19:20.676351+0000 mon.smithi028 (mon.0) 455 : audit [DBG] from='client.? 172.21.15.28:0/3402458004' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:21.284 INFO:teuthology.orchestra.run.smithi028.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-24T17:19:22.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:22 smithi105 bash[20254]: cluster 2024-04-24T17:19:20.439307+0000 mgr.smithi028.zkmzde (mgr.14197) 268 : cluster [DBG] pgmap v215: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:22.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:22 smithi105 bash[20254]: cluster 2024-04-24T17:19:20.439307+0000 mgr.smithi028.zkmzde (mgr.14197) 268 : cluster [DBG] pgmap v215: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:22.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:22 smithi028 bash[18631]: cluster 2024-04-24T17:19:20.439307+0000 mgr.smithi028.zkmzde (mgr.14197) 268 : cluster [DBG] pgmap v215: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:22.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:22 smithi028 bash[18631]: cluster 2024-04-24T17:19:20.439307+0000 mgr.smithi028.zkmzde (mgr.14197) 268 : cluster [DBG] pgmap v215: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:22.284 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:19:24.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:24 smithi105 bash[20254]: cluster 2024-04-24T17:19:22.440335+0000 mgr.smithi028.zkmzde (mgr.14197) 269 : cluster [DBG] pgmap v216: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:24.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:24 smithi105 bash[20254]: cluster 2024-04-24T17:19:22.440335+0000 mgr.smithi028.zkmzde (mgr.14197) 269 : cluster [DBG] pgmap v216: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:24.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:24 smithi028 bash[18631]: cluster 2024-04-24T17:19:22.440335+0000 mgr.smithi028.zkmzde (mgr.14197) 269 : cluster [DBG] pgmap v216: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:24.282 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:24 smithi028 bash[18631]: cluster 2024-04-24T17:19:22.440335+0000 mgr.smithi028.zkmzde (mgr.14197) 269 : cluster [DBG] pgmap v216: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:26.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:26 smithi105 bash[20254]: cluster 2024-04-24T17:19:24.441334+0000 mgr.smithi028.zkmzde (mgr.14197) 270 : cluster [DBG] pgmap v217: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:26.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:26 smithi105 bash[20254]: cluster 2024-04-24T17:19:24.441334+0000 mgr.smithi028.zkmzde (mgr.14197) 270 : cluster [DBG] pgmap v217: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:26.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:26 smithi028 bash[18631]: cluster 2024-04-24T17:19:24.441334+0000 mgr.smithi028.zkmzde (mgr.14197) 270 : cluster [DBG] pgmap v217: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:26.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:26 smithi028 bash[18631]: cluster 2024-04-24T17:19:24.441334+0000 mgr.smithi028.zkmzde (mgr.14197) 270 : cluster [DBG] pgmap v217: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:27.057 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:19:28.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:28 smithi028 bash[18631]: cluster 2024-04-24T17:19:26.442251+0000 mgr.smithi028.zkmzde (mgr.14197) 271 : cluster [DBG] pgmap v218: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:28.196 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:28 smithi028 bash[18631]: cluster 2024-04-24T17:19:26.442251+0000 mgr.smithi028.zkmzde (mgr.14197) 271 : cluster [DBG] pgmap v218: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:28.197 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:28 smithi028 bash[18631]: audit 2024-04-24T17:19:27.827740+0000 mon.smithi028 (mon.0) 456 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:28.197 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:28 smithi028 bash[18631]: audit 2024-04-24T17:19:27.827740+0000 mon.smithi028 (mon.0) 456 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:28.209 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:19:28.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:28 smithi105 bash[20254]: cluster 2024-04-24T17:19:26.442251+0000 mgr.smithi028.zkmzde (mgr.14197) 271 : cluster [DBG] pgmap v218: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:28.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:28 smithi105 bash[20254]: cluster 2024-04-24T17:19:26.442251+0000 mgr.smithi028.zkmzde (mgr.14197) 271 : cluster [DBG] pgmap v218: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:28.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:28 smithi105 bash[20254]: audit 2024-04-24T17:19:27.827740+0000 mon.smithi028 (mon.0) 456 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:28.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:28 smithi105 bash[20254]: audit 2024-04-24T17:19:27.827740+0000 mon.smithi028 (mon.0) 456 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:28.866 INFO:teuthology.orchestra.run.smithi028.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-24T17:19:29.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:29 smithi028 bash[18631]: audit 2024-04-24T17:19:28.213621+0000 mon.smithi028 (mon.0) 457 : audit [DBG] from='client.? 172.21.15.28:0/3150590194' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:29.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:29 smithi028 bash[18631]: audit 2024-04-24T17:19:28.213621+0000 mon.smithi028 (mon.0) 457 : audit [DBG] from='client.? 172.21.15.28:0/3150590194' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:29.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:29 smithi105 bash[20254]: audit 2024-04-24T17:19:28.213621+0000 mon.smithi028 (mon.0) 457 : audit [DBG] from='client.? 172.21.15.28:0/3150590194' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:29.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:29 smithi105 bash[20254]: audit 2024-04-24T17:19:28.213621+0000 mon.smithi028 (mon.0) 457 : audit [DBG] from='client.? 172.21.15.28:0/3150590194' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:29.867 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:19:30.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:30 smithi028 bash[18631]: cluster 2024-04-24T17:19:28.443256+0000 mgr.smithi028.zkmzde (mgr.14197) 272 : cluster [DBG] pgmap v219: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:30.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:30 smithi028 bash[18631]: cluster 2024-04-24T17:19:28.443256+0000 mgr.smithi028.zkmzde (mgr.14197) 272 : cluster [DBG] pgmap v219: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:30.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:30 smithi105 bash[20254]: cluster 2024-04-24T17:19:28.443256+0000 mgr.smithi028.zkmzde (mgr.14197) 272 : cluster [DBG] pgmap v219: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:30.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:30 smithi105 bash[20254]: cluster 2024-04-24T17:19:28.443256+0000 mgr.smithi028.zkmzde (mgr.14197) 272 : cluster [DBG] pgmap v219: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:31.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:31 smithi028 bash[18631]: audit 2024-04-24T17:19:30.529047+0000 mon.smithi028 (mon.0) 458 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:19:31.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:31 smithi028 bash[18631]: audit 2024-04-24T17:19:30.529047+0000 mon.smithi028 (mon.0) 458 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:19:31.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:31 smithi105 bash[20254]: audit 2024-04-24T17:19:30.529047+0000 mon.smithi028 (mon.0) 458 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:19:31.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:31 smithi105 bash[20254]: audit 2024-04-24T17:19:30.529047+0000 mon.smithi028 (mon.0) 458 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:19:32.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:32 smithi105 bash[20254]: cluster 2024-04-24T17:19:30.444241+0000 mgr.smithi028.zkmzde (mgr.14197) 273 : cluster [DBG] pgmap v220: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:32.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:32 smithi105 bash[20254]: cluster 2024-04-24T17:19:30.444241+0000 mgr.smithi028.zkmzde (mgr.14197) 273 : cluster [DBG] pgmap v220: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:32.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:32 smithi028 bash[18631]: cluster 2024-04-24T17:19:30.444241+0000 mgr.smithi028.zkmzde (mgr.14197) 273 : cluster [DBG] pgmap v220: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:32.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:32 smithi028 bash[18631]: cluster 2024-04-24T17:19:30.444241+0000 mgr.smithi028.zkmzde (mgr.14197) 273 : cluster [DBG] pgmap v220: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:34.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:34 smithi105 bash[20254]: cluster 2024-04-24T17:19:32.445223+0000 mgr.smithi028.zkmzde (mgr.14197) 274 : cluster [DBG] pgmap v221: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:34.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:34 smithi105 bash[20254]: cluster 2024-04-24T17:19:32.445223+0000 mgr.smithi028.zkmzde (mgr.14197) 274 : cluster [DBG] pgmap v221: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:34.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:34 smithi028 bash[18631]: cluster 2024-04-24T17:19:32.445223+0000 mgr.smithi028.zkmzde (mgr.14197) 274 : cluster [DBG] pgmap v221: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:34.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:34 smithi028 bash[18631]: cluster 2024-04-24T17:19:32.445223+0000 mgr.smithi028.zkmzde (mgr.14197) 274 : cluster [DBG] pgmap v221: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:34.634 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:19:35.797 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:19:36.438 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:36 smithi028 bash[18631]: cluster 2024-04-24T17:19:34.446222+0000 mgr.smithi028.zkmzde (mgr.14197) 275 : cluster [DBG] pgmap v222: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:36.438 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:36 smithi028 bash[18631]: cluster 2024-04-24T17:19:34.446222+0000 mgr.smithi028.zkmzde (mgr.14197) 275 : cluster [DBG] pgmap v222: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:36.438 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:36 smithi028 bash[18631]: audit 2024-04-24T17:19:35.801118+0000 mon.smithi028 (mon.0) 459 : audit [DBG] from='client.? 172.21.15.28:0/2753518391' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:36.439 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:36 smithi028 bash[18631]: audit 2024-04-24T17:19:35.801118+0000 mon.smithi028 (mon.0) 459 : audit [DBG] from='client.? 172.21.15.28:0/2753518391' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:36.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:36 smithi105 bash[20254]: cluster 2024-04-24T17:19:34.446222+0000 mgr.smithi028.zkmzde (mgr.14197) 275 : cluster [DBG] pgmap v222: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:36.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:36 smithi105 bash[20254]: cluster 2024-04-24T17:19:34.446222+0000 mgr.smithi028.zkmzde (mgr.14197) 275 : cluster [DBG] pgmap v222: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:36.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:36 smithi105 bash[20254]: audit 2024-04-24T17:19:35.801118+0000 mon.smithi028 (mon.0) 459 : audit [DBG] from='client.? 172.21.15.28:0/2753518391' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:36.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:36 smithi105 bash[20254]: audit 2024-04-24T17:19:35.801118+0000 mon.smithi028 (mon.0) 459 : audit [DBG] from='client.? 172.21.15.28:0/2753518391' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:36.821 INFO:teuthology.orchestra.run.smithi028.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-24T17:19:37.822 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:19:38.182 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:38 smithi028 bash[18631]: cluster 2024-04-24T17:19:36.447159+0000 mgr.smithi028.zkmzde (mgr.14197) 276 : cluster [DBG] pgmap v223: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:38.183 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:38 smithi028 bash[18631]: cluster 2024-04-24T17:19:36.447159+0000 mgr.smithi028.zkmzde (mgr.14197) 276 : cluster [DBG] pgmap v223: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:38.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:38 smithi105 bash[20254]: cluster 2024-04-24T17:19:36.447159+0000 mgr.smithi028.zkmzde (mgr.14197) 276 : cluster [DBG] pgmap v223: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:38.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:38 smithi105 bash[20254]: cluster 2024-04-24T17:19:36.447159+0000 mgr.smithi028.zkmzde (mgr.14197) 276 : cluster [DBG] pgmap v223: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:39.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:39 smithi105 bash[20254]: audit 2024-04-24T17:19:38.093637+0000 mon.smithi028 (mon.0) 460 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:19:39.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:39 smithi105 bash[20254]: audit 2024-04-24T17:19:38.093637+0000 mon.smithi028 (mon.0) 460 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:19:39.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:39 smithi105 bash[20254]: audit 2024-04-24T17:19:38.094896+0000 mon.smithi028 (mon.0) 461 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:19:39.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:39 smithi105 bash[20254]: audit 2024-04-24T17:19:38.094896+0000 mon.smithi028 (mon.0) 461 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:19:39.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:39 smithi105 bash[20254]: cluster 2024-04-24T17:19:38.097051+0000 mgr.smithi028.zkmzde (mgr.14197) 277 : cluster [DBG] pgmap v224: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:39.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:39 smithi105 bash[20254]: cluster 2024-04-24T17:19:38.097051+0000 mgr.smithi028.zkmzde (mgr.14197) 277 : cluster [DBG] pgmap v224: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:39.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:39 smithi105 bash[20254]: cluster 2024-04-24T17:19:38.098259+0000 mgr.smithi028.zkmzde (mgr.14197) 278 : cluster [DBG] pgmap v225: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:39.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:39 smithi105 bash[20254]: cluster 2024-04-24T17:19:38.098259+0000 mgr.smithi028.zkmzde (mgr.14197) 278 : cluster [DBG] pgmap v225: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:39.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:39 smithi105 bash[20254]: audit 2024-04-24T17:19:38.104712+0000 mon.smithi028 (mon.0) 462 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:19:39.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:39 smithi105 bash[20254]: audit 2024-04-24T17:19:38.104712+0000 mon.smithi028 (mon.0) 462 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:19:39.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:39 smithi105 bash[20254]: audit 2024-04-24T17:19:38.108176+0000 mon.smithi028 (mon.0) 463 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:19:39.520 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:39 smithi105 bash[20254]: audit 2024-04-24T17:19:38.108176+0000 mon.smithi028 (mon.0) 463 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:19:39.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:39 smithi028 bash[18631]: audit 2024-04-24T17:19:38.093637+0000 mon.smithi028 (mon.0) 460 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:19:39.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:39 smithi028 bash[18631]: audit 2024-04-24T17:19:38.093637+0000 mon.smithi028 (mon.0) 460 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:19:39.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:39 smithi028 bash[18631]: audit 2024-04-24T17:19:38.094896+0000 mon.smithi028 (mon.0) 461 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:19:39.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:39 smithi028 bash[18631]: audit 2024-04-24T17:19:38.094896+0000 mon.smithi028 (mon.0) 461 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:19:39.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:39 smithi028 bash[18631]: cluster 2024-04-24T17:19:38.097051+0000 mgr.smithi028.zkmzde (mgr.14197) 277 : cluster [DBG] pgmap v224: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:39.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:39 smithi028 bash[18631]: cluster 2024-04-24T17:19:38.097051+0000 mgr.smithi028.zkmzde (mgr.14197) 277 : cluster [DBG] pgmap v224: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:39.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:39 smithi028 bash[18631]: cluster 2024-04-24T17:19:38.098259+0000 mgr.smithi028.zkmzde (mgr.14197) 278 : cluster [DBG] pgmap v225: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:39.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:39 smithi028 bash[18631]: cluster 2024-04-24T17:19:38.098259+0000 mgr.smithi028.zkmzde (mgr.14197) 278 : cluster [DBG] pgmap v225: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:39.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:39 smithi028 bash[18631]: audit 2024-04-24T17:19:38.104712+0000 mon.smithi028 (mon.0) 462 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:19:39.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:39 smithi028 bash[18631]: audit 2024-04-24T17:19:38.104712+0000 mon.smithi028 (mon.0) 462 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:19:39.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:39 smithi028 bash[18631]: audit 2024-04-24T17:19:38.108176+0000 mon.smithi028 (mon.0) 463 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:19:39.532 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:39 smithi028 bash[18631]: audit 2024-04-24T17:19:38.108176+0000 mon.smithi028 (mon.0) 463 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:19:41.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:41 smithi105 bash[20254]: cluster 2024-04-24T17:19:40.099278+0000 mgr.smithi028.zkmzde (mgr.14197) 279 : cluster [DBG] pgmap v226: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:41.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:41 smithi105 bash[20254]: cluster 2024-04-24T17:19:40.099278+0000 mgr.smithi028.zkmzde (mgr.14197) 279 : cluster [DBG] pgmap v226: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:41.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:41 smithi028 bash[18631]: cluster 2024-04-24T17:19:40.099278+0000 mgr.smithi028.zkmzde (mgr.14197) 279 : cluster [DBG] pgmap v226: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:41.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:41 smithi028 bash[18631]: cluster 2024-04-24T17:19:40.099278+0000 mgr.smithi028.zkmzde (mgr.14197) 279 : cluster [DBG] pgmap v226: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:42.588 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:19:43.413 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:43 smithi028 bash[18631]: cluster 2024-04-24T17:19:42.100046+0000 mgr.smithi028.zkmzde (mgr.14197) 280 : cluster [DBG] pgmap v227: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:43.427 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:43 smithi028 bash[18631]: cluster 2024-04-24T17:19:42.100046+0000 mgr.smithi028.zkmzde (mgr.14197) 280 : cluster [DBG] pgmap v227: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:43.427 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:43 smithi028 bash[18631]: audit 2024-04-24T17:19:42.828553+0000 mon.smithi028 (mon.0) 464 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:43.427 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:43 smithi028 bash[18631]: audit 2024-04-24T17:19:42.828553+0000 mon.smithi028 (mon.0) 464 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:43.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:43 smithi105 bash[20254]: cluster 2024-04-24T17:19:42.100046+0000 mgr.smithi028.zkmzde (mgr.14197) 280 : cluster [DBG] pgmap v227: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:43.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:43 smithi105 bash[20254]: cluster 2024-04-24T17:19:42.100046+0000 mgr.smithi028.zkmzde (mgr.14197) 280 : cluster [DBG] pgmap v227: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:43.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:43 smithi105 bash[20254]: audit 2024-04-24T17:19:42.828553+0000 mon.smithi028 (mon.0) 464 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:43.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:43 smithi105 bash[20254]: audit 2024-04-24T17:19:42.828553+0000 mon.smithi028 (mon.0) 464 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:43.793 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:19:44.409 INFO:teuthology.orchestra.run.smithi028.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-24T17:19:44.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:44 smithi105 bash[20254]: audit 2024-04-24T17:19:43.797686+0000 mon.smithi028 (mon.0) 465 : audit [DBG] from='client.? 172.21.15.28:0/3581862457' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:44.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:44 smithi105 bash[20254]: audit 2024-04-24T17:19:43.797686+0000 mon.smithi028 (mon.0) 465 : audit [DBG] from='client.? 172.21.15.28:0/3581862457' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:44.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:44 smithi028 bash[18631]: audit 2024-04-24T17:19:43.797686+0000 mon.smithi028 (mon.0) 465 : audit [DBG] from='client.? 172.21.15.28:0/3581862457' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:44.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:44 smithi028 bash[18631]: audit 2024-04-24T17:19:43.797686+0000 mon.smithi028 (mon.0) 465 : audit [DBG] from='client.? 172.21.15.28:0/3581862457' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:45.410 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:19:45.422 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:45 smithi028 bash[18631]: cluster 2024-04-24T17:19:44.100989+0000 mgr.smithi028.zkmzde (mgr.14197) 281 : cluster [DBG] pgmap v228: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:45.422 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:45 smithi028 bash[18631]: cluster 2024-04-24T17:19:44.100989+0000 mgr.smithi028.zkmzde (mgr.14197) 281 : cluster [DBG] pgmap v228: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:45.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:45 smithi105 bash[20254]: cluster 2024-04-24T17:19:44.100989+0000 mgr.smithi028.zkmzde (mgr.14197) 281 : cluster [DBG] pgmap v228: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:45.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:45 smithi105 bash[20254]: cluster 2024-04-24T17:19:44.100989+0000 mgr.smithi028.zkmzde (mgr.14197) 281 : cluster [DBG] pgmap v228: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:47.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:47 smithi105 bash[20254]: cluster 2024-04-24T17:19:46.102002+0000 mgr.smithi028.zkmzde (mgr.14197) 282 : cluster [DBG] pgmap v229: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:47.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:47 smithi105 bash[20254]: cluster 2024-04-24T17:19:46.102002+0000 mgr.smithi028.zkmzde (mgr.14197) 282 : cluster [DBG] pgmap v229: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:47.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:47 smithi028 bash[18631]: cluster 2024-04-24T17:19:46.102002+0000 mgr.smithi028.zkmzde (mgr.14197) 282 : cluster [DBG] pgmap v229: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:47.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:47 smithi028 bash[18631]: cluster 2024-04-24T17:19:46.102002+0000 mgr.smithi028.zkmzde (mgr.14197) 282 : cluster [DBG] pgmap v229: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:49.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:49 smithi105 bash[20254]: cluster 2024-04-24T17:19:48.102986+0000 mgr.smithi028.zkmzde (mgr.14197) 283 : cluster [DBG] pgmap v230: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:49.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:49 smithi105 bash[20254]: cluster 2024-04-24T17:19:48.102986+0000 mgr.smithi028.zkmzde (mgr.14197) 283 : cluster [DBG] pgmap v230: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:49.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:49 smithi028 bash[18631]: cluster 2024-04-24T17:19:48.102986+0000 mgr.smithi028.zkmzde (mgr.14197) 283 : cluster [DBG] pgmap v230: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:49.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:49 smithi028 bash[18631]: cluster 2024-04-24T17:19:48.102986+0000 mgr.smithi028.zkmzde (mgr.14197) 283 : cluster [DBG] pgmap v230: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:50.185 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:19:51.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:51 smithi028 bash[18631]: cluster 2024-04-24T17:19:50.104010+0000 mgr.smithi028.zkmzde (mgr.14197) 284 : cluster [DBG] pgmap v231: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:51.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:51 smithi028 bash[18631]: cluster 2024-04-24T17:19:50.104010+0000 mgr.smithi028.zkmzde (mgr.14197) 284 : cluster [DBG] pgmap v231: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:51.386 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:19:51.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:51 smithi105 bash[20254]: cluster 2024-04-24T17:19:50.104010+0000 mgr.smithi028.zkmzde (mgr.14197) 284 : cluster [DBG] pgmap v231: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:51.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:51 smithi105 bash[20254]: cluster 2024-04-24T17:19:50.104010+0000 mgr.smithi028.zkmzde (mgr.14197) 284 : cluster [DBG] pgmap v231: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:52.000 INFO:teuthology.orchestra.run.smithi028.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-24T17:19:52.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:52 smithi028 bash[18631]: audit 2024-04-24T17:19:51.390877+0000 mon.smithi028 (mon.0) 466 : audit [DBG] from='client.? 172.21.15.28:0/1990178133' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:52.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:52 smithi028 bash[18631]: audit 2024-04-24T17:19:51.390877+0000 mon.smithi028 (mon.0) 466 : audit [DBG] from='client.? 172.21.15.28:0/1990178133' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:52.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:52 smithi105 bash[20254]: audit 2024-04-24T17:19:51.390877+0000 mon.smithi028 (mon.0) 466 : audit [DBG] from='client.? 172.21.15.28:0/1990178133' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:52.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:52 smithi105 bash[20254]: audit 2024-04-24T17:19:51.390877+0000 mon.smithi028 (mon.0) 466 : audit [DBG] from='client.? 172.21.15.28:0/1990178133' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:53.001 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:19:53.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:53 smithi028 bash[18631]: cluster 2024-04-24T17:19:52.105011+0000 mgr.smithi028.zkmzde (mgr.14197) 285 : cluster [DBG] pgmap v232: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:53.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:53 smithi028 bash[18631]: cluster 2024-04-24T17:19:52.105011+0000 mgr.smithi028.zkmzde (mgr.14197) 285 : cluster [DBG] pgmap v232: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:53.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:53 smithi105 bash[20254]: cluster 2024-04-24T17:19:52.105011+0000 mgr.smithi028.zkmzde (mgr.14197) 285 : cluster [DBG] pgmap v232: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:53.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:53 smithi105 bash[20254]: cluster 2024-04-24T17:19:52.105011+0000 mgr.smithi028.zkmzde (mgr.14197) 285 : cluster [DBG] pgmap v232: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:55.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:55 smithi105 bash[20254]: cluster 2024-04-24T17:19:54.106010+0000 mgr.smithi028.zkmzde (mgr.14197) 286 : cluster [DBG] pgmap v233: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:55.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:55 smithi105 bash[20254]: cluster 2024-04-24T17:19:54.106010+0000 mgr.smithi028.zkmzde (mgr.14197) 286 : cluster [DBG] pgmap v233: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:55.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:55 smithi028 bash[18631]: cluster 2024-04-24T17:19:54.106010+0000 mgr.smithi028.zkmzde (mgr.14197) 286 : cluster [DBG] pgmap v233: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:55.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:55 smithi028 bash[18631]: cluster 2024-04-24T17:19:54.106010+0000 mgr.smithi028.zkmzde (mgr.14197) 286 : cluster [DBG] pgmap v233: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:57.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:57 smithi105 bash[20254]: cluster 2024-04-24T17:19:56.107006+0000 mgr.smithi028.zkmzde (mgr.14197) 287 : cluster [DBG] pgmap v234: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:57.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:57 smithi105 bash[20254]: cluster 2024-04-24T17:19:56.107006+0000 mgr.smithi028.zkmzde (mgr.14197) 287 : cluster [DBG] pgmap v234: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:57.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:57 smithi028 bash[18631]: cluster 2024-04-24T17:19:56.107006+0000 mgr.smithi028.zkmzde (mgr.14197) 287 : cluster [DBG] pgmap v234: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:57.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:57 smithi028 bash[18631]: cluster 2024-04-24T17:19:56.107006+0000 mgr.smithi028.zkmzde (mgr.14197) 287 : cluster [DBG] pgmap v234: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:57.781 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:19:58.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:58 smithi105 bash[20254]: audit 2024-04-24T17:19:57.828355+0000 mon.smithi028 (mon.0) 467 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:58.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:58 smithi105 bash[20254]: audit 2024-04-24T17:19:57.828355+0000 mon.smithi028 (mon.0) 467 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:58.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:58 smithi028 bash[18631]: audit 2024-04-24T17:19:57.828355+0000 mon.smithi028 (mon.0) 467 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:58.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:58 smithi028 bash[18631]: audit 2024-04-24T17:19:57.828355+0000 mon.smithi028 (mon.0) 467 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:19:59.002 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:19:59.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:59 smithi028 bash[18631]: cluster 2024-04-24T17:19:58.107984+0000 mgr.smithi028.zkmzde (mgr.14197) 288 : cluster [DBG] pgmap v235: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:59.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:59 smithi028 bash[18631]: cluster 2024-04-24T17:19:58.107984+0000 mgr.smithi028.zkmzde (mgr.14197) 288 : cluster [DBG] pgmap v235: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:59.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:59 smithi028 bash[18631]: audit 2024-04-24T17:19:59.006807+0000 mon.smithi028 (mon.0) 468 : audit [DBG] from='client.? 172.21.15.28:0/1577738521' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:59.281 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:19:59 smithi028 bash[18631]: audit 2024-04-24T17:19:59.006807+0000 mon.smithi028 (mon.0) 468 : audit [DBG] from='client.? 172.21.15.28:0/1577738521' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:59.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:59 smithi105 bash[20254]: cluster 2024-04-24T17:19:58.107984+0000 mgr.smithi028.zkmzde (mgr.14197) 288 : cluster [DBG] pgmap v235: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:59.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:59 smithi105 bash[20254]: cluster 2024-04-24T17:19:58.107984+0000 mgr.smithi028.zkmzde (mgr.14197) 288 : cluster [DBG] pgmap v235: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:19:59.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:59 smithi105 bash[20254]: audit 2024-04-24T17:19:59.006807+0000 mon.smithi028 (mon.0) 468 : audit [DBG] from='client.? 172.21.15.28:0/1577738521' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:59.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:19:59 smithi105 bash[20254]: audit 2024-04-24T17:19:59.006807+0000 mon.smithi028 (mon.0) 468 : audit [DBG] from='client.? 172.21.15.28:0/1577738521' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:19:59.599 INFO:teuthology.orchestra.run.smithi028.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-24T17:20:00.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:00 smithi105 bash[20254]: cluster 2024-04-24T17:20:00.000141+0000 mon.smithi028 (mon.0) 469 : cluster [WRN] overall HEALTH_WARN failed to probe daemons or devices 2024-04-24T17:20:00.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:00 smithi105 bash[20254]: cluster 2024-04-24T17:20:00.000141+0000 mon.smithi028 (mon.0) 469 : cluster [WRN] overall HEALTH_WARN failed to probe daemons or devices 2024-04-24T17:20:00.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:00 smithi028 bash[18631]: cluster 2024-04-24T17:20:00.000141+0000 mon.smithi028 (mon.0) 469 : cluster [WRN] overall HEALTH_WARN failed to probe daemons or devices 2024-04-24T17:20:00.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:00 smithi028 bash[18631]: cluster 2024-04-24T17:20:00.000141+0000 mon.smithi028 (mon.0) 469 : cluster [WRN] overall HEALTH_WARN failed to probe daemons or devices 2024-04-24T17:20:00.601 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:20:01.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:01 smithi105 bash[20254]: cluster 2024-04-24T17:20:00.109038+0000 mgr.smithi028.zkmzde (mgr.14197) 289 : cluster [DBG] pgmap v236: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:01.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:01 smithi105 bash[20254]: cluster 2024-04-24T17:20:00.109038+0000 mgr.smithi028.zkmzde (mgr.14197) 289 : cluster [DBG] pgmap v236: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:01.533 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:01 smithi028 bash[18631]: cluster 2024-04-24T17:20:00.109038+0000 mgr.smithi028.zkmzde (mgr.14197) 289 : cluster [DBG] pgmap v236: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:01.534 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:01 smithi028 bash[18631]: cluster 2024-04-24T17:20:00.109038+0000 mgr.smithi028.zkmzde (mgr.14197) 289 : cluster [DBG] pgmap v236: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:03.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:03 smithi105 bash[20254]: cluster 2024-04-24T17:20:02.110071+0000 mgr.smithi028.zkmzde (mgr.14197) 290 : cluster [DBG] pgmap v237: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:03.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:03 smithi105 bash[20254]: cluster 2024-04-24T17:20:02.110071+0000 mgr.smithi028.zkmzde (mgr.14197) 290 : cluster [DBG] pgmap v237: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:03.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:03 smithi028 bash[18631]: cluster 2024-04-24T17:20:02.110071+0000 mgr.smithi028.zkmzde (mgr.14197) 290 : cluster [DBG] pgmap v237: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:03.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:03 smithi028 bash[18631]: cluster 2024-04-24T17:20:02.110071+0000 mgr.smithi028.zkmzde (mgr.14197) 290 : cluster [DBG] pgmap v237: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:05.376 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:20:05.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:05 smithi105 bash[20254]: cluster 2024-04-24T17:20:04.111046+0000 mgr.smithi028.zkmzde (mgr.14197) 291 : cluster [DBG] pgmap v238: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:05.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:05 smithi105 bash[20254]: cluster 2024-04-24T17:20:04.111046+0000 mgr.smithi028.zkmzde (mgr.14197) 291 : cluster [DBG] pgmap v238: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:05.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:05 smithi028 bash[18631]: cluster 2024-04-24T17:20:04.111046+0000 mgr.smithi028.zkmzde (mgr.14197) 291 : cluster [DBG] pgmap v238: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:05.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:05 smithi028 bash[18631]: cluster 2024-04-24T17:20:04.111046+0000 mgr.smithi028.zkmzde (mgr.14197) 291 : cluster [DBG] pgmap v238: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:06.616 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:20:07.177 INFO:teuthology.orchestra.run.smithi028.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-24T17:20:07.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:07 smithi105 bash[20254]: cluster 2024-04-24T17:20:06.112092+0000 mgr.smithi028.zkmzde (mgr.14197) 292 : cluster [DBG] pgmap v239: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:07.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:07 smithi105 bash[20254]: cluster 2024-04-24T17:20:06.112092+0000 mgr.smithi028.zkmzde (mgr.14197) 292 : cluster [DBG] pgmap v239: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:07.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:07 smithi105 bash[20254]: audit 2024-04-24T17:20:06.621311+0000 mon.smithi028 (mon.0) 470 : audit [DBG] from='client.? 172.21.15.28:0/1533118674' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:07.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:07 smithi105 bash[20254]: audit 2024-04-24T17:20:06.621311+0000 mon.smithi028 (mon.0) 470 : audit [DBG] from='client.? 172.21.15.28:0/1533118674' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:07.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:07 smithi028 bash[18631]: cluster 2024-04-24T17:20:06.112092+0000 mgr.smithi028.zkmzde (mgr.14197) 292 : cluster [DBG] pgmap v239: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:07.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:07 smithi028 bash[18631]: cluster 2024-04-24T17:20:06.112092+0000 mgr.smithi028.zkmzde (mgr.14197) 292 : cluster [DBG] pgmap v239: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:07.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:07 smithi028 bash[18631]: audit 2024-04-24T17:20:06.621311+0000 mon.smithi028 (mon.0) 470 : audit [DBG] from='client.? 172.21.15.28:0/1533118674' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:07.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:07 smithi028 bash[18631]: audit 2024-04-24T17:20:06.621311+0000 mon.smithi028 (mon.0) 470 : audit [DBG] from='client.? 172.21.15.28:0/1533118674' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:08.178 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:20:09.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:09 smithi105 bash[20254]: cluster 2024-04-24T17:20:08.113073+0000 mgr.smithi028.zkmzde (mgr.14197) 293 : cluster [DBG] pgmap v240: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:09.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:09 smithi105 bash[20254]: cluster 2024-04-24T17:20:08.113073+0000 mgr.smithi028.zkmzde (mgr.14197) 293 : cluster [DBG] pgmap v240: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:09.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:09 smithi028 bash[18631]: cluster 2024-04-24T17:20:08.113073+0000 mgr.smithi028.zkmzde (mgr.14197) 293 : cluster [DBG] pgmap v240: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:09.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:09 smithi028 bash[18631]: cluster 2024-04-24T17:20:08.113073+0000 mgr.smithi028.zkmzde (mgr.14197) 293 : cluster [DBG] pgmap v240: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:11.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:11 smithi105 bash[20254]: cluster 2024-04-24T17:20:10.114130+0000 mgr.smithi028.zkmzde (mgr.14197) 294 : cluster [DBG] pgmap v241: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:11.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:11 smithi105 bash[20254]: cluster 2024-04-24T17:20:10.114130+0000 mgr.smithi028.zkmzde (mgr.14197) 294 : cluster [DBG] pgmap v241: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:11.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:11 smithi028 bash[18631]: cluster 2024-04-24T17:20:10.114130+0000 mgr.smithi028.zkmzde (mgr.14197) 294 : cluster [DBG] pgmap v241: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:11.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:11 smithi028 bash[18631]: cluster 2024-04-24T17:20:10.114130+0000 mgr.smithi028.zkmzde (mgr.14197) 294 : cluster [DBG] pgmap v241: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:12.956 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:20:13.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:13 smithi105 bash[20254]: cluster 2024-04-24T17:20:12.115121+0000 mgr.smithi028.zkmzde (mgr.14197) 295 : cluster [DBG] pgmap v242: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:13.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:13 smithi105 bash[20254]: cluster 2024-04-24T17:20:12.115121+0000 mgr.smithi028.zkmzde (mgr.14197) 295 : cluster [DBG] pgmap v242: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:13.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:13 smithi105 bash[20254]: audit 2024-04-24T17:20:12.829163+0000 mon.smithi028 (mon.0) 471 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:13.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:13 smithi105 bash[20254]: audit 2024-04-24T17:20:12.829163+0000 mon.smithi028 (mon.0) 471 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:13.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:13 smithi028 bash[18631]: cluster 2024-04-24T17:20:12.115121+0000 mgr.smithi028.zkmzde (mgr.14197) 295 : cluster [DBG] pgmap v242: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:13.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:13 smithi028 bash[18631]: cluster 2024-04-24T17:20:12.115121+0000 mgr.smithi028.zkmzde (mgr.14197) 295 : cluster [DBG] pgmap v242: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:13.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:13 smithi028 bash[18631]: audit 2024-04-24T17:20:12.829163+0000 mon.smithi028 (mon.0) 471 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:13.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:13 smithi028 bash[18631]: audit 2024-04-24T17:20:12.829163+0000 mon.smithi028 (mon.0) 471 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:14.263 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:20:14.913 INFO:teuthology.orchestra.run.smithi028.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-24T17:20:15.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:15 smithi105 bash[20254]: cluster 2024-04-24T17:20:14.115623+0000 mgr.smithi028.zkmzde (mgr.14197) 296 : cluster [DBG] pgmap v243: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:15.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:15 smithi105 bash[20254]: cluster 2024-04-24T17:20:14.115623+0000 mgr.smithi028.zkmzde (mgr.14197) 296 : cluster [DBG] pgmap v243: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:15.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:15 smithi105 bash[20254]: audit 2024-04-24T17:20:14.267173+0000 mon.smithi028 (mon.0) 472 : audit [DBG] from='client.? 172.21.15.28:0/3707411830' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:15.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:15 smithi105 bash[20254]: audit 2024-04-24T17:20:14.267173+0000 mon.smithi028 (mon.0) 472 : audit [DBG] from='client.? 172.21.15.28:0/3707411830' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:15.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:15 smithi028 bash[18631]: cluster 2024-04-24T17:20:14.115623+0000 mgr.smithi028.zkmzde (mgr.14197) 296 : cluster [DBG] pgmap v243: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:15.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:15 smithi028 bash[18631]: cluster 2024-04-24T17:20:14.115623+0000 mgr.smithi028.zkmzde (mgr.14197) 296 : cluster [DBG] pgmap v243: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:15.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:15 smithi028 bash[18631]: audit 2024-04-24T17:20:14.267173+0000 mon.smithi028 (mon.0) 472 : audit [DBG] from='client.? 172.21.15.28:0/3707411830' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:15.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:15 smithi028 bash[18631]: audit 2024-04-24T17:20:14.267173+0000 mon.smithi028 (mon.0) 472 : audit [DBG] from='client.? 172.21.15.28:0/3707411830' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:15.915 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:20:17.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:17 smithi105 bash[20254]: cluster 2024-04-24T17:20:16.116088+0000 mgr.smithi028.zkmzde (mgr.14197) 297 : cluster [DBG] pgmap v244: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:17.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:17 smithi105 bash[20254]: cluster 2024-04-24T17:20:16.116088+0000 mgr.smithi028.zkmzde (mgr.14197) 297 : cluster [DBG] pgmap v244: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:17.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:17 smithi028 bash[18631]: cluster 2024-04-24T17:20:16.116088+0000 mgr.smithi028.zkmzde (mgr.14197) 297 : cluster [DBG] pgmap v244: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:17.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:17 smithi028 bash[18631]: cluster 2024-04-24T17:20:16.116088+0000 mgr.smithi028.zkmzde (mgr.14197) 297 : cluster [DBG] pgmap v244: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:19.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:19 smithi105 bash[20254]: cluster 2024-04-24T17:20:18.117049+0000 mgr.smithi028.zkmzde (mgr.14197) 298 : cluster [DBG] pgmap v245: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:19.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:19 smithi105 bash[20254]: cluster 2024-04-24T17:20:18.117049+0000 mgr.smithi028.zkmzde (mgr.14197) 298 : cluster [DBG] pgmap v245: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:19.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:19 smithi028 bash[18631]: cluster 2024-04-24T17:20:18.117049+0000 mgr.smithi028.zkmzde (mgr.14197) 298 : cluster [DBG] pgmap v245: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:19.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:19 smithi028 bash[18631]: cluster 2024-04-24T17:20:18.117049+0000 mgr.smithi028.zkmzde (mgr.14197) 298 : cluster [DBG] pgmap v245: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:20.693 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:20:21.512 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:21 smithi028 bash[18631]: cluster 2024-04-24T17:20:20.118081+0000 mgr.smithi028.zkmzde (mgr.14197) 299 : cluster [DBG] pgmap v246: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:21.512 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:21 smithi028 bash[18631]: cluster 2024-04-24T17:20:20.118081+0000 mgr.smithi028.zkmzde (mgr.14197) 299 : cluster [DBG] pgmap v246: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:21.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:21 smithi105 bash[20254]: cluster 2024-04-24T17:20:20.118081+0000 mgr.smithi028.zkmzde (mgr.14197) 299 : cluster [DBG] pgmap v246: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:21.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:21 smithi105 bash[20254]: cluster 2024-04-24T17:20:20.118081+0000 mgr.smithi028.zkmzde (mgr.14197) 299 : cluster [DBG] pgmap v246: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:21.861 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:20:22.482 INFO:teuthology.orchestra.run.smithi028.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-24T17:20:22.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:22 smithi105 bash[20254]: audit 2024-04-24T17:20:21.866303+0000 mon.smithi028 (mon.0) 473 : audit [DBG] from='client.? 172.21.15.28:0/4076053294' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:22.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:22 smithi105 bash[20254]: audit 2024-04-24T17:20:21.866303+0000 mon.smithi028 (mon.0) 473 : audit [DBG] from='client.? 172.21.15.28:0/4076053294' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:22.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:22 smithi028 bash[18631]: audit 2024-04-24T17:20:21.866303+0000 mon.smithi028 (mon.0) 473 : audit [DBG] from='client.? 172.21.15.28:0/4076053294' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:22.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:22 smithi028 bash[18631]: audit 2024-04-24T17:20:21.866303+0000 mon.smithi028 (mon.0) 473 : audit [DBG] from='client.? 172.21.15.28:0/4076053294' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:23.483 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:20:23.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:23 smithi105 bash[20254]: cluster 2024-04-24T17:20:22.119111+0000 mgr.smithi028.zkmzde (mgr.14197) 300 : cluster [DBG] pgmap v247: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:23.519 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:23 smithi105 bash[20254]: cluster 2024-04-24T17:20:22.119111+0000 mgr.smithi028.zkmzde (mgr.14197) 300 : cluster [DBG] pgmap v247: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:23.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:23 smithi028 bash[18631]: cluster 2024-04-24T17:20:22.119111+0000 mgr.smithi028.zkmzde (mgr.14197) 300 : cluster [DBG] pgmap v247: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:23.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:23 smithi028 bash[18631]: cluster 2024-04-24T17:20:22.119111+0000 mgr.smithi028.zkmzde (mgr.14197) 300 : cluster [DBG] pgmap v247: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:25.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:25 smithi028 bash[18631]: cluster 2024-04-24T17:20:24.120166+0000 mgr.smithi028.zkmzde (mgr.14197) 301 : cluster [DBG] pgmap v248: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:25.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:25 smithi028 bash[18631]: cluster 2024-04-24T17:20:24.120166+0000 mgr.smithi028.zkmzde (mgr.14197) 301 : cluster [DBG] pgmap v248: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:25.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:25 smithi105 bash[20254]: cluster 2024-04-24T17:20:24.120166+0000 mgr.smithi028.zkmzde (mgr.14197) 301 : cluster [DBG] pgmap v248: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:25.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:25 smithi105 bash[20254]: cluster 2024-04-24T17:20:24.120166+0000 mgr.smithi028.zkmzde (mgr.14197) 301 : cluster [DBG] pgmap v248: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:27.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:27 smithi028 bash[18631]: cluster 2024-04-24T17:20:26.121268+0000 mgr.smithi028.zkmzde (mgr.14197) 302 : cluster [DBG] pgmap v249: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:27.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:27 smithi028 bash[18631]: cluster 2024-04-24T17:20:26.121268+0000 mgr.smithi028.zkmzde (mgr.14197) 302 : cluster [DBG] pgmap v249: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:27.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:27 smithi105 bash[20254]: cluster 2024-04-24T17:20:26.121268+0000 mgr.smithi028.zkmzde (mgr.14197) 302 : cluster [DBG] pgmap v249: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:27.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:27 smithi105 bash[20254]: cluster 2024-04-24T17:20:26.121268+0000 mgr.smithi028.zkmzde (mgr.14197) 302 : cluster [DBG] pgmap v249: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:28.252 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:20:28.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:28 smithi028 bash[18631]: audit 2024-04-24T17:20:27.829698+0000 mon.smithi028 (mon.0) 474 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:28.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:28 smithi028 bash[18631]: audit 2024-04-24T17:20:27.829698+0000 mon.smithi028 (mon.0) 474 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:28.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:28 smithi105 bash[20254]: audit 2024-04-24T17:20:27.829698+0000 mon.smithi028 (mon.0) 474 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:28.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:28 smithi105 bash[20254]: audit 2024-04-24T17:20:27.829698+0000 mon.smithi028 (mon.0) 474 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:29.456 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:20:29.470 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:29 smithi028 bash[18631]: cluster 2024-04-24T17:20:28.122247+0000 mgr.smithi028.zkmzde (mgr.14197) 303 : cluster [DBG] pgmap v250: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:29.471 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:29 smithi028 bash[18631]: cluster 2024-04-24T17:20:28.122247+0000 mgr.smithi028.zkmzde (mgr.14197) 303 : cluster [DBG] pgmap v250: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:29.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:29 smithi105 bash[20254]: cluster 2024-04-24T17:20:28.122247+0000 mgr.smithi028.zkmzde (mgr.14197) 303 : cluster [DBG] pgmap v250: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:29.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:29 smithi105 bash[20254]: cluster 2024-04-24T17:20:28.122247+0000 mgr.smithi028.zkmzde (mgr.14197) 303 : cluster [DBG] pgmap v250: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:30.038 INFO:teuthology.orchestra.run.smithi028.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-24T17:20:30.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:30 smithi105 bash[20254]: audit 2024-04-24T17:20:29.460495+0000 mon.smithi028 (mon.0) 475 : audit [DBG] from='client.? 172.21.15.28:0/4119907677' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:30.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:30 smithi105 bash[20254]: audit 2024-04-24T17:20:29.460495+0000 mon.smithi028 (mon.0) 475 : audit [DBG] from='client.? 172.21.15.28:0/4119907677' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:30.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:30 smithi028 bash[18631]: audit 2024-04-24T17:20:29.460495+0000 mon.smithi028 (mon.0) 475 : audit [DBG] from='client.? 172.21.15.28:0/4119907677' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:30.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:30 smithi028 bash[18631]: audit 2024-04-24T17:20:29.460495+0000 mon.smithi028 (mon.0) 475 : audit [DBG] from='client.? 172.21.15.28:0/4119907677' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:31.039 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:20:31.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:31 smithi028 bash[18631]: cluster 2024-04-24T17:20:30.123292+0000 mgr.smithi028.zkmzde (mgr.14197) 304 : cluster [DBG] pgmap v251: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:31.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:31 smithi028 bash[18631]: cluster 2024-04-24T17:20:30.123292+0000 mgr.smithi028.zkmzde (mgr.14197) 304 : cluster [DBG] pgmap v251: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:31.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:31 smithi105 bash[20254]: cluster 2024-04-24T17:20:30.123292+0000 mgr.smithi028.zkmzde (mgr.14197) 304 : cluster [DBG] pgmap v251: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:31.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:31 smithi105 bash[20254]: cluster 2024-04-24T17:20:30.123292+0000 mgr.smithi028.zkmzde (mgr.14197) 304 : cluster [DBG] pgmap v251: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:33.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:33 smithi105 bash[20254]: cluster 2024-04-24T17:20:32.124275+0000 mgr.smithi028.zkmzde (mgr.14197) 305 : cluster [DBG] pgmap v252: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:33.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:33 smithi105 bash[20254]: cluster 2024-04-24T17:20:32.124275+0000 mgr.smithi028.zkmzde (mgr.14197) 305 : cluster [DBG] pgmap v252: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:33.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:33 smithi028 bash[18631]: cluster 2024-04-24T17:20:32.124275+0000 mgr.smithi028.zkmzde (mgr.14197) 305 : cluster [DBG] pgmap v252: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:33.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:33 smithi028 bash[18631]: cluster 2024-04-24T17:20:32.124275+0000 mgr.smithi028.zkmzde (mgr.14197) 305 : cluster [DBG] pgmap v252: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:35.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:35 smithi105 bash[20254]: cluster 2024-04-24T17:20:34.125264+0000 mgr.smithi028.zkmzde (mgr.14197) 306 : cluster [DBG] pgmap v253: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:35.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:35 smithi105 bash[20254]: cluster 2024-04-24T17:20:34.125264+0000 mgr.smithi028.zkmzde (mgr.14197) 306 : cluster [DBG] pgmap v253: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:35.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:35 smithi028 bash[18631]: cluster 2024-04-24T17:20:34.125264+0000 mgr.smithi028.zkmzde (mgr.14197) 306 : cluster [DBG] pgmap v253: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:35.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:35 smithi028 bash[18631]: cluster 2024-04-24T17:20:34.125264+0000 mgr.smithi028.zkmzde (mgr.14197) 306 : cluster [DBG] pgmap v253: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:35.814 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:20:36.937 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:20:37.471 INFO:teuthology.orchestra.run.smithi028.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-24T17:20:37.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:37 smithi105 bash[20254]: cluster 2024-04-24T17:20:36.126254+0000 mgr.smithi028.zkmzde (mgr.14197) 307 : cluster [DBG] pgmap v254: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:37.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:37 smithi105 bash[20254]: cluster 2024-04-24T17:20:36.126254+0000 mgr.smithi028.zkmzde (mgr.14197) 307 : cluster [DBG] pgmap v254: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:37.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:37 smithi105 bash[20254]: audit 2024-04-24T17:20:36.942023+0000 mon.smithi028 (mon.0) 476 : audit [DBG] from='client.? 172.21.15.28:0/1903432381' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:37.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:37 smithi105 bash[20254]: audit 2024-04-24T17:20:36.942023+0000 mon.smithi028 (mon.0) 476 : audit [DBG] from='client.? 172.21.15.28:0/1903432381' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:37.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:37 smithi028 bash[18631]: cluster 2024-04-24T17:20:36.126254+0000 mgr.smithi028.zkmzde (mgr.14197) 307 : cluster [DBG] pgmap v254: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:37.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:37 smithi028 bash[18631]: cluster 2024-04-24T17:20:36.126254+0000 mgr.smithi028.zkmzde (mgr.14197) 307 : cluster [DBG] pgmap v254: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:37.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:37 smithi028 bash[18631]: audit 2024-04-24T17:20:36.942023+0000 mon.smithi028 (mon.0) 476 : audit [DBG] from='client.? 172.21.15.28:0/1903432381' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:37.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:37 smithi028 bash[18631]: audit 2024-04-24T17:20:36.942023+0000 mon.smithi028 (mon.0) 476 : audit [DBG] from='client.? 172.21.15.28:0/1903432381' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:38.473 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:20:38.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:38 smithi028 bash[18631]: audit 2024-04-24T17:20:38.169091+0000 mon.smithi028 (mon.0) 477 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:20:38.483 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:38 smithi028 bash[18631]: audit 2024-04-24T17:20:38.169091+0000 mon.smithi028 (mon.0) 477 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:20:38.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:38 smithi105 bash[20254]: audit 2024-04-24T17:20:38.169091+0000 mon.smithi028 (mon.0) 477 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:20:38.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:38 smithi105 bash[20254]: audit 2024-04-24T17:20:38.169091+0000 mon.smithi028 (mon.0) 477 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:20:39.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:39 smithi105 bash[20254]: cluster 2024-04-24T17:20:38.127267+0000 mgr.smithi028.zkmzde (mgr.14197) 308 : cluster [DBG] pgmap v255: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:39.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:39 smithi105 bash[20254]: cluster 2024-04-24T17:20:38.127267+0000 mgr.smithi028.zkmzde (mgr.14197) 308 : cluster [DBG] pgmap v255: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:39.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:39 smithi105 bash[20254]: audit 2024-04-24T17:20:38.694088+0000 mon.smithi028 (mon.0) 478 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:20:39.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:39 smithi105 bash[20254]: audit 2024-04-24T17:20:38.694088+0000 mon.smithi028 (mon.0) 478 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:20:39.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:39 smithi028 bash[18631]: cluster 2024-04-24T17:20:38.127267+0000 mgr.smithi028.zkmzde (mgr.14197) 308 : cluster [DBG] pgmap v255: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:39.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:39 smithi028 bash[18631]: cluster 2024-04-24T17:20:38.127267+0000 mgr.smithi028.zkmzde (mgr.14197) 308 : cluster [DBG] pgmap v255: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:39.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:39 smithi028 bash[18631]: audit 2024-04-24T17:20:38.694088+0000 mon.smithi028 (mon.0) 478 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:20:39.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:39 smithi028 bash[18631]: audit 2024-04-24T17:20:38.694088+0000 mon.smithi028 (mon.0) 478 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:20:41.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:41 smithi105 bash[20254]: cluster 2024-04-24T17:20:40.128281+0000 mgr.smithi028.zkmzde (mgr.14197) 309 : cluster [DBG] pgmap v256: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:41.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:41 smithi105 bash[20254]: cluster 2024-04-24T17:20:40.128281+0000 mgr.smithi028.zkmzde (mgr.14197) 309 : cluster [DBG] pgmap v256: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:41.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:41 smithi028 bash[18631]: cluster 2024-04-24T17:20:40.128281+0000 mgr.smithi028.zkmzde (mgr.14197) 309 : cluster [DBG] pgmap v256: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:41.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:41 smithi028 bash[18631]: cluster 2024-04-24T17:20:40.128281+0000 mgr.smithi028.zkmzde (mgr.14197) 309 : cluster [DBG] pgmap v256: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:43.245 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:20:43.731 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:43 smithi105 bash[20254]: cluster 2024-04-24T17:20:42.129279+0000 mgr.smithi028.zkmzde (mgr.14197) 310 : cluster [DBG] pgmap v257: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:43.731 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:43 smithi105 bash[20254]: cluster 2024-04-24T17:20:42.129279+0000 mgr.smithi028.zkmzde (mgr.14197) 310 : cluster [DBG] pgmap v257: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:43.731 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:43 smithi105 bash[20254]: audit 2024-04-24T17:20:42.830441+0000 mon.smithi028 (mon.0) 479 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:43.731 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:43 smithi105 bash[20254]: audit 2024-04-24T17:20:42.830441+0000 mon.smithi028 (mon.0) 479 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:43.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:43 smithi028 bash[18631]: cluster 2024-04-24T17:20:42.129279+0000 mgr.smithi028.zkmzde (mgr.14197) 310 : cluster [DBG] pgmap v257: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:43.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:43 smithi028 bash[18631]: cluster 2024-04-24T17:20:42.129279+0000 mgr.smithi028.zkmzde (mgr.14197) 310 : cluster [DBG] pgmap v257: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:43.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:43 smithi028 bash[18631]: audit 2024-04-24T17:20:42.830441+0000 mon.smithi028 (mon.0) 479 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:43.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:43 smithi028 bash[18631]: audit 2024-04-24T17:20:42.830441+0000 mon.smithi028 (mon.0) 479 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:44.522 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:20:45.503 INFO:teuthology.orchestra.run.smithi028.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-24T17:20:45.523 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:45 smithi028 bash[18631]: cluster 2024-04-24T17:20:44.130041+0000 mgr.smithi028.zkmzde (mgr.14197) 311 : cluster [DBG] pgmap v258: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:45.523 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:45 smithi028 bash[18631]: cluster 2024-04-24T17:20:44.130041+0000 mgr.smithi028.zkmzde (mgr.14197) 311 : cluster [DBG] pgmap v258: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:45.523 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:45 smithi028 bash[18631]: audit 2024-04-24T17:20:44.527415+0000 mon.smithi028 (mon.0) 480 : audit [DBG] from='client.? 172.21.15.28:0/2913657239' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:45.523 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:45 smithi028 bash[18631]: audit 2024-04-24T17:20:44.527415+0000 mon.smithi028 (mon.0) 480 : audit [DBG] from='client.? 172.21.15.28:0/2913657239' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:45.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:45 smithi105 bash[20254]: cluster 2024-04-24T17:20:44.130041+0000 mgr.smithi028.zkmzde (mgr.14197) 311 : cluster [DBG] pgmap v258: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:45.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:45 smithi105 bash[20254]: cluster 2024-04-24T17:20:44.130041+0000 mgr.smithi028.zkmzde (mgr.14197) 311 : cluster [DBG] pgmap v258: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:45.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:45 smithi105 bash[20254]: audit 2024-04-24T17:20:44.527415+0000 mon.smithi028 (mon.0) 480 : audit [DBG] from='client.? 172.21.15.28:0/2913657239' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:45.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:45 smithi105 bash[20254]: audit 2024-04-24T17:20:44.527415+0000 mon.smithi028 (mon.0) 480 : audit [DBG] from='client.? 172.21.15.28:0/2913657239' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:46.505 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:20:47.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:47 smithi105 bash[20254]: cluster 2024-04-24T17:20:46.130995+0000 mgr.smithi028.zkmzde (mgr.14197) 312 : cluster [DBG] pgmap v259: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:47.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:47 smithi105 bash[20254]: cluster 2024-04-24T17:20:46.130995+0000 mgr.smithi028.zkmzde (mgr.14197) 312 : cluster [DBG] pgmap v259: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:47.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:47 smithi105 bash[20254]: audit 2024-04-24T17:20:46.552452+0000 mon.smithi028 (mon.0) 481 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:20:47.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:47 smithi105 bash[20254]: audit 2024-04-24T17:20:46.552452+0000 mon.smithi028 (mon.0) 481 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:20:47.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:47 smithi105 bash[20254]: audit 2024-04-24T17:20:46.554124+0000 mon.smithi028 (mon.0) 482 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:20:47.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:47 smithi105 bash[20254]: audit 2024-04-24T17:20:46.554124+0000 mon.smithi028 (mon.0) 482 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:20:47.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:47 smithi105 bash[20254]: audit 2024-04-24T17:20:46.563355+0000 mon.smithi028 (mon.0) 483 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:20:47.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:47 smithi105 bash[20254]: audit 2024-04-24T17:20:46.563355+0000 mon.smithi028 (mon.0) 483 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:20:47.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:47 smithi105 bash[20254]: audit 2024-04-24T17:20:46.568085+0000 mon.smithi028 (mon.0) 484 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:20:47.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:47 smithi105 bash[20254]: audit 2024-04-24T17:20:46.568085+0000 mon.smithi028 (mon.0) 484 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:20:47.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:47 smithi028 bash[18631]: cluster 2024-04-24T17:20:46.130995+0000 mgr.smithi028.zkmzde (mgr.14197) 312 : cluster [DBG] pgmap v259: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:47.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:47 smithi028 bash[18631]: cluster 2024-04-24T17:20:46.130995+0000 mgr.smithi028.zkmzde (mgr.14197) 312 : cluster [DBG] pgmap v259: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:47.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:47 smithi028 bash[18631]: audit 2024-04-24T17:20:46.552452+0000 mon.smithi028 (mon.0) 481 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:20:47.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:47 smithi028 bash[18631]: audit 2024-04-24T17:20:46.552452+0000 mon.smithi028 (mon.0) 481 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:20:47.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:47 smithi028 bash[18631]: audit 2024-04-24T17:20:46.554124+0000 mon.smithi028 (mon.0) 482 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:20:47.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:47 smithi028 bash[18631]: audit 2024-04-24T17:20:46.554124+0000 mon.smithi028 (mon.0) 482 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:20:47.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:47 smithi028 bash[18631]: audit 2024-04-24T17:20:46.563355+0000 mon.smithi028 (mon.0) 483 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:20:47.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:47 smithi028 bash[18631]: audit 2024-04-24T17:20:46.563355+0000 mon.smithi028 (mon.0) 483 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:20:47.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:47 smithi028 bash[18631]: audit 2024-04-24T17:20:46.568085+0000 mon.smithi028 (mon.0) 484 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:20:47.781 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:47 smithi028 bash[18631]: audit 2024-04-24T17:20:46.568085+0000 mon.smithi028 (mon.0) 484 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:20:48.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:48 smithi028 bash[18631]: cluster 2024-04-24T17:20:46.556618+0000 mgr.smithi028.zkmzde (mgr.14197) 313 : cluster [DBG] pgmap v260: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:48.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:48 smithi028 bash[18631]: cluster 2024-04-24T17:20:46.556618+0000 mgr.smithi028.zkmzde (mgr.14197) 313 : cluster [DBG] pgmap v260: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:48.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:48 smithi028 bash[18631]: cluster 2024-04-24T17:20:46.557209+0000 mgr.smithi028.zkmzde (mgr.14197) 314 : cluster [DBG] pgmap v261: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:48.531 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:48 smithi028 bash[18631]: cluster 2024-04-24T17:20:46.557209+0000 mgr.smithi028.zkmzde (mgr.14197) 314 : cluster [DBG] pgmap v261: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:48.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:48 smithi105 bash[20254]: cluster 2024-04-24T17:20:46.556618+0000 mgr.smithi028.zkmzde (mgr.14197) 313 : cluster [DBG] pgmap v260: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:48.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:48 smithi105 bash[20254]: cluster 2024-04-24T17:20:46.556618+0000 mgr.smithi028.zkmzde (mgr.14197) 313 : cluster [DBG] pgmap v260: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:48.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:48 smithi105 bash[20254]: cluster 2024-04-24T17:20:46.557209+0000 mgr.smithi028.zkmzde (mgr.14197) 314 : cluster [DBG] pgmap v261: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:48.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:48 smithi105 bash[20254]: cluster 2024-04-24T17:20:46.557209+0000 mgr.smithi028.zkmzde (mgr.14197) 314 : cluster [DBG] pgmap v261: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:49.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:49 smithi105 bash[20254]: cluster 2024-04-24T17:20:48.558172+0000 mgr.smithi028.zkmzde (mgr.14197) 315 : cluster [DBG] pgmap v262: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:49.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:49 smithi105 bash[20254]: cluster 2024-04-24T17:20:48.558172+0000 mgr.smithi028.zkmzde (mgr.14197) 315 : cluster [DBG] pgmap v262: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:49.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:49 smithi028 bash[18631]: cluster 2024-04-24T17:20:48.558172+0000 mgr.smithi028.zkmzde (mgr.14197) 315 : cluster [DBG] pgmap v262: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:49.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:49 smithi028 bash[18631]: cluster 2024-04-24T17:20:48.558172+0000 mgr.smithi028.zkmzde (mgr.14197) 315 : cluster [DBG] pgmap v262: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:51.293 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:20:52.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:51 smithi105 bash[20254]: cluster 2024-04-24T17:20:50.559166+0000 mgr.smithi028.zkmzde (mgr.14197) 316 : cluster [DBG] pgmap v263: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:52.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:51 smithi105 bash[20254]: cluster 2024-04-24T17:20:50.559166+0000 mgr.smithi028.zkmzde (mgr.14197) 316 : cluster [DBG] pgmap v263: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:52.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:51 smithi028 bash[18631]: cluster 2024-04-24T17:20:50.559166+0000 mgr.smithi028.zkmzde (mgr.14197) 316 : cluster [DBG] pgmap v263: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:52.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:51 smithi028 bash[18631]: cluster 2024-04-24T17:20:50.559166+0000 mgr.smithi028.zkmzde (mgr.14197) 316 : cluster [DBG] pgmap v263: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:52.479 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:20:52.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:52 smithi028 bash[18631]: audit 2024-04-24T17:20:52.484120+0000 mon.smithi028 (mon.0) 485 : audit [DBG] from='client.? 172.21.15.28:0/4096645682' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:52.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:52 smithi028 bash[18631]: audit 2024-04-24T17:20:52.484120+0000 mon.smithi028 (mon.0) 485 : audit [DBG] from='client.? 172.21.15.28:0/4096645682' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:53.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:52 smithi105 bash[20254]: audit 2024-04-24T17:20:52.484120+0000 mon.smithi028 (mon.0) 485 : audit [DBG] from='client.? 172.21.15.28:0/4096645682' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:53.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:52 smithi105 bash[20254]: audit 2024-04-24T17:20:52.484120+0000 mon.smithi028 (mon.0) 485 : audit [DBG] from='client.? 172.21.15.28:0/4096645682' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:20:53.093 INFO:teuthology.orchestra.run.smithi028.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-24T17:20:54.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:53 smithi105 bash[20254]: cluster 2024-04-24T17:20:52.559709+0000 mgr.smithi028.zkmzde (mgr.14197) 317 : cluster [DBG] pgmap v264: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:54.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:53 smithi105 bash[20254]: cluster 2024-04-24T17:20:52.559709+0000 mgr.smithi028.zkmzde (mgr.14197) 317 : cluster [DBG] pgmap v264: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:54.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:53 smithi028 bash[18631]: cluster 2024-04-24T17:20:52.559709+0000 mgr.smithi028.zkmzde (mgr.14197) 317 : cluster [DBG] pgmap v264: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:54.031 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:53 smithi028 bash[18631]: cluster 2024-04-24T17:20:52.559709+0000 mgr.smithi028.zkmzde (mgr.14197) 317 : cluster [DBG] pgmap v264: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:54.094 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:20:56.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:55 smithi105 bash[20254]: cluster 2024-04-24T17:20:54.560682+0000 mgr.smithi028.zkmzde (mgr.14197) 318 : cluster [DBG] pgmap v265: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:56.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:55 smithi105 bash[20254]: cluster 2024-04-24T17:20:54.560682+0000 mgr.smithi028.zkmzde (mgr.14197) 318 : cluster [DBG] pgmap v265: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:56.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:55 smithi028 bash[18631]: cluster 2024-04-24T17:20:54.560682+0000 mgr.smithi028.zkmzde (mgr.14197) 318 : cluster [DBG] pgmap v265: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:56.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:55 smithi028 bash[18631]: cluster 2024-04-24T17:20:54.560682+0000 mgr.smithi028.zkmzde (mgr.14197) 318 : cluster [DBG] pgmap v265: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:58.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:57 smithi105 bash[20254]: cluster 2024-04-24T17:20:56.561814+0000 mgr.smithi028.zkmzde (mgr.14197) 319 : cluster [DBG] pgmap v266: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:58.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:57 smithi105 bash[20254]: cluster 2024-04-24T17:20:56.561814+0000 mgr.smithi028.zkmzde (mgr.14197) 319 : cluster [DBG] pgmap v266: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:58.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:57 smithi028 bash[18631]: cluster 2024-04-24T17:20:56.561814+0000 mgr.smithi028.zkmzde (mgr.14197) 319 : cluster [DBG] pgmap v266: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:58.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:57 smithi028 bash[18631]: cluster 2024-04-24T17:20:56.561814+0000 mgr.smithi028.zkmzde (mgr.14197) 319 : cluster [DBG] pgmap v266: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:20:58.865 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:20:59.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:58 smithi105 bash[20254]: audit 2024-04-24T17:20:57.830589+0000 mon.smithi028 (mon.0) 486 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:59.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:58 smithi105 bash[20254]: audit 2024-04-24T17:20:57.830589+0000 mon.smithi028 (mon.0) 486 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:59.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:58 smithi028 bash[18631]: audit 2024-04-24T17:20:57.830589+0000 mon.smithi028 (mon.0) 486 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:20:59.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:58 smithi028 bash[18631]: audit 2024-04-24T17:20:57.830589+0000 mon.smithi028 (mon.0) 486 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:00.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:59 smithi105 bash[20254]: cluster 2024-04-24T17:20:58.562860+0000 mgr.smithi028.zkmzde (mgr.14197) 320 : cluster [DBG] pgmap v267: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:00.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:20:59 smithi105 bash[20254]: cluster 2024-04-24T17:20:58.562860+0000 mgr.smithi028.zkmzde (mgr.14197) 320 : cluster [DBG] pgmap v267: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:00.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:59 smithi028 bash[18631]: cluster 2024-04-24T17:20:58.562860+0000 mgr.smithi028.zkmzde (mgr.14197) 320 : cluster [DBG] pgmap v267: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:00.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:20:59 smithi028 bash[18631]: cluster 2024-04-24T17:20:58.562860+0000 mgr.smithi028.zkmzde (mgr.14197) 320 : cluster [DBG] pgmap v267: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:00.129 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:21:00.782 INFO:teuthology.orchestra.run.smithi028.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-24T17:21:01.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:00 smithi105 bash[20254]: audit 2024-04-24T17:21:00.134815+0000 mon.smithi028 (mon.0) 487 : audit [DBG] from='client.? 172.21.15.28:0/2391251451' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:01.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:00 smithi105 bash[20254]: audit 2024-04-24T17:21:00.134815+0000 mon.smithi028 (mon.0) 487 : audit [DBG] from='client.? 172.21.15.28:0/2391251451' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:01.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:00 smithi028 bash[18631]: audit 2024-04-24T17:21:00.134815+0000 mon.smithi028 (mon.0) 487 : audit [DBG] from='client.? 172.21.15.28:0/2391251451' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:01.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:00 smithi028 bash[18631]: audit 2024-04-24T17:21:00.134815+0000 mon.smithi028 (mon.0) 487 : audit [DBG] from='client.? 172.21.15.28:0/2391251451' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:01.784 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:21:02.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:01 smithi105 bash[20254]: cluster 2024-04-24T17:21:00.563866+0000 mgr.smithi028.zkmzde (mgr.14197) 321 : cluster [DBG] pgmap v268: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:02.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:01 smithi105 bash[20254]: cluster 2024-04-24T17:21:00.563866+0000 mgr.smithi028.zkmzde (mgr.14197) 321 : cluster [DBG] pgmap v268: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:02.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:01 smithi028 bash[18631]: cluster 2024-04-24T17:21:00.563866+0000 mgr.smithi028.zkmzde (mgr.14197) 321 : cluster [DBG] pgmap v268: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:02.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:01 smithi028 bash[18631]: cluster 2024-04-24T17:21:00.563866+0000 mgr.smithi028.zkmzde (mgr.14197) 321 : cluster [DBG] pgmap v268: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:04.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:03 smithi105 bash[20254]: cluster 2024-04-24T17:21:02.564783+0000 mgr.smithi028.zkmzde (mgr.14197) 322 : cluster [DBG] pgmap v269: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:04.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:03 smithi105 bash[20254]: cluster 2024-04-24T17:21:02.564783+0000 mgr.smithi028.zkmzde (mgr.14197) 322 : cluster [DBG] pgmap v269: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:04.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:03 smithi028 bash[18631]: cluster 2024-04-24T17:21:02.564783+0000 mgr.smithi028.zkmzde (mgr.14197) 322 : cluster [DBG] pgmap v269: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:04.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:03 smithi028 bash[18631]: cluster 2024-04-24T17:21:02.564783+0000 mgr.smithi028.zkmzde (mgr.14197) 322 : cluster [DBG] pgmap v269: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:06.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:05 smithi105 bash[20254]: cluster 2024-04-24T17:21:04.565394+0000 mgr.smithi028.zkmzde (mgr.14197) 323 : cluster [DBG] pgmap v270: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:06.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:05 smithi105 bash[20254]: cluster 2024-04-24T17:21:04.565394+0000 mgr.smithi028.zkmzde (mgr.14197) 323 : cluster [DBG] pgmap v270: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:06.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:05 smithi028 bash[18631]: cluster 2024-04-24T17:21:04.565394+0000 mgr.smithi028.zkmzde (mgr.14197) 323 : cluster [DBG] pgmap v270: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:06.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:05 smithi028 bash[18631]: cluster 2024-04-24T17:21:04.565394+0000 mgr.smithi028.zkmzde (mgr.14197) 323 : cluster [DBG] pgmap v270: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:06.556 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:21:07.803 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:21:07.998 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:07 smithi028 bash[18631]: cluster 2024-04-24T17:21:06.566199+0000 mgr.smithi028.zkmzde (mgr.14197) 324 : cluster [DBG] pgmap v271: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:07.999 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:07 smithi028 bash[18631]: cluster 2024-04-24T17:21:06.566199+0000 mgr.smithi028.zkmzde (mgr.14197) 324 : cluster [DBG] pgmap v271: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:08.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:07 smithi105 bash[20254]: cluster 2024-04-24T17:21:06.566199+0000 mgr.smithi028.zkmzde (mgr.14197) 324 : cluster [DBG] pgmap v271: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:08.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:07 smithi105 bash[20254]: cluster 2024-04-24T17:21:06.566199+0000 mgr.smithi028.zkmzde (mgr.14197) 324 : cluster [DBG] pgmap v271: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:08.374 INFO:teuthology.orchestra.run.smithi028.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-24T17:21:09.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:08 smithi105 bash[20254]: audit 2024-04-24T17:21:07.808707+0000 mon.smithi028 (mon.0) 488 : audit [DBG] from='client.? 172.21.15.28:0/2689334633' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:09.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:08 smithi105 bash[20254]: audit 2024-04-24T17:21:07.808707+0000 mon.smithi028 (mon.0) 488 : audit [DBG] from='client.? 172.21.15.28:0/2689334633' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:09.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:08 smithi028 bash[18631]: audit 2024-04-24T17:21:07.808707+0000 mon.smithi028 (mon.0) 488 : audit [DBG] from='client.? 172.21.15.28:0/2689334633' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:09.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:08 smithi028 bash[18631]: audit 2024-04-24T17:21:07.808707+0000 mon.smithi028 (mon.0) 488 : audit [DBG] from='client.? 172.21.15.28:0/2689334633' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:09.375 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:21:10.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:09 smithi105 bash[20254]: cluster 2024-04-24T17:21:08.567311+0000 mgr.smithi028.zkmzde (mgr.14197) 325 : cluster [DBG] pgmap v272: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:10.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:09 smithi105 bash[20254]: cluster 2024-04-24T17:21:08.567311+0000 mgr.smithi028.zkmzde (mgr.14197) 325 : cluster [DBG] pgmap v272: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:10.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:09 smithi028 bash[18631]: cluster 2024-04-24T17:21:08.567311+0000 mgr.smithi028.zkmzde (mgr.14197) 325 : cluster [DBG] pgmap v272: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:10.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:09 smithi028 bash[18631]: cluster 2024-04-24T17:21:08.567311+0000 mgr.smithi028.zkmzde (mgr.14197) 325 : cluster [DBG] pgmap v272: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:12.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:11 smithi105 bash[20254]: cluster 2024-04-24T17:21:10.568464+0000 mgr.smithi028.zkmzde (mgr.14197) 326 : cluster [DBG] pgmap v273: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:12.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:11 smithi105 bash[20254]: cluster 2024-04-24T17:21:10.568464+0000 mgr.smithi028.zkmzde (mgr.14197) 326 : cluster [DBG] pgmap v273: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:12.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:11 smithi028 bash[18631]: cluster 2024-04-24T17:21:10.568464+0000 mgr.smithi028.zkmzde (mgr.14197) 326 : cluster [DBG] pgmap v273: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:12.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:11 smithi028 bash[18631]: cluster 2024-04-24T17:21:10.568464+0000 mgr.smithi028.zkmzde (mgr.14197) 326 : cluster [DBG] pgmap v273: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:14.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:13 smithi105 bash[20254]: cluster 2024-04-24T17:21:12.569521+0000 mgr.smithi028.zkmzde (mgr.14197) 327 : cluster [DBG] pgmap v274: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:14.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:13 smithi105 bash[20254]: cluster 2024-04-24T17:21:12.569521+0000 mgr.smithi028.zkmzde (mgr.14197) 327 : cluster [DBG] pgmap v274: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:14.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:13 smithi105 bash[20254]: audit 2024-04-24T17:21:12.831028+0000 mon.smithi028 (mon.0) 489 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:14.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:13 smithi105 bash[20254]: audit 2024-04-24T17:21:12.831028+0000 mon.smithi028 (mon.0) 489 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:14.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:13 smithi028 bash[18631]: cluster 2024-04-24T17:21:12.569521+0000 mgr.smithi028.zkmzde (mgr.14197) 327 : cluster [DBG] pgmap v274: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:14.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:13 smithi028 bash[18631]: cluster 2024-04-24T17:21:12.569521+0000 mgr.smithi028.zkmzde (mgr.14197) 327 : cluster [DBG] pgmap v274: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:14.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:13 smithi028 bash[18631]: audit 2024-04-24T17:21:12.831028+0000 mon.smithi028 (mon.0) 489 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:14.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:13 smithi028 bash[18631]: audit 2024-04-24T17:21:12.831028+0000 mon.smithi028 (mon.0) 489 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:14.155 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:21:15.354 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:21:15.921 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:15 smithi028 bash[18631]: cluster 2024-04-24T17:21:14.570537+0000 mgr.smithi028.zkmzde (mgr.14197) 328 : cluster [DBG] pgmap v275: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:15.921 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:15 smithi028 bash[18631]: cluster 2024-04-24T17:21:14.570537+0000 mgr.smithi028.zkmzde (mgr.14197) 328 : cluster [DBG] pgmap v275: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:15.921 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:15 smithi028 bash[18631]: audit 2024-04-24T17:21:15.359752+0000 mon.smithi028 (mon.0) 490 : audit [DBG] from='client.? 172.21.15.28:0/2908556954' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:15.921 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:15 smithi028 bash[18631]: audit 2024-04-24T17:21:15.359752+0000 mon.smithi028 (mon.0) 490 : audit [DBG] from='client.? 172.21.15.28:0/2908556954' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:15.922 INFO:teuthology.orchestra.run.smithi028.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-24T17:21:16.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:15 smithi105 bash[20254]: cluster 2024-04-24T17:21:14.570537+0000 mgr.smithi028.zkmzde (mgr.14197) 328 : cluster [DBG] pgmap v275: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:16.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:15 smithi105 bash[20254]: cluster 2024-04-24T17:21:14.570537+0000 mgr.smithi028.zkmzde (mgr.14197) 328 : cluster [DBG] pgmap v275: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:16.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:15 smithi105 bash[20254]: audit 2024-04-24T17:21:15.359752+0000 mon.smithi028 (mon.0) 490 : audit [DBG] from='client.? 172.21.15.28:0/2908556954' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:16.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:15 smithi105 bash[20254]: audit 2024-04-24T17:21:15.359752+0000 mon.smithi028 (mon.0) 490 : audit [DBG] from='client.? 172.21.15.28:0/2908556954' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:16.923 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:21:18.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:17 smithi105 bash[20254]: cluster 2024-04-24T17:21:16.571558+0000 mgr.smithi028.zkmzde (mgr.14197) 329 : cluster [DBG] pgmap v276: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:18.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:17 smithi105 bash[20254]: cluster 2024-04-24T17:21:16.571558+0000 mgr.smithi028.zkmzde (mgr.14197) 329 : cluster [DBG] pgmap v276: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:18.031 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:17 smithi028 bash[18631]: cluster 2024-04-24T17:21:16.571558+0000 mgr.smithi028.zkmzde (mgr.14197) 329 : cluster [DBG] pgmap v276: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:18.031 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:17 smithi028 bash[18631]: cluster 2024-04-24T17:21:16.571558+0000 mgr.smithi028.zkmzde (mgr.14197) 329 : cluster [DBG] pgmap v276: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:20.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:19 smithi105 bash[20254]: cluster 2024-04-24T17:21:18.572560+0000 mgr.smithi028.zkmzde (mgr.14197) 330 : cluster [DBG] pgmap v277: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:20.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:19 smithi105 bash[20254]: cluster 2024-04-24T17:21:18.572560+0000 mgr.smithi028.zkmzde (mgr.14197) 330 : cluster [DBG] pgmap v277: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:20.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:19 smithi028 bash[18631]: cluster 2024-04-24T17:21:18.572560+0000 mgr.smithi028.zkmzde (mgr.14197) 330 : cluster [DBG] pgmap v277: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:20.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:19 smithi028 bash[18631]: cluster 2024-04-24T17:21:18.572560+0000 mgr.smithi028.zkmzde (mgr.14197) 330 : cluster [DBG] pgmap v277: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:21.698 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:21:21.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:21 smithi028 bash[18631]: cluster 2024-04-24T17:21:20.573580+0000 mgr.smithi028.zkmzde (mgr.14197) 331 : cluster [DBG] pgmap v278: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:21.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:21 smithi028 bash[18631]: cluster 2024-04-24T17:21:20.573580+0000 mgr.smithi028.zkmzde (mgr.14197) 331 : cluster [DBG] pgmap v278: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:22.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:21 smithi105 bash[20254]: cluster 2024-04-24T17:21:20.573580+0000 mgr.smithi028.zkmzde (mgr.14197) 331 : cluster [DBG] pgmap v278: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:22.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:21 smithi105 bash[20254]: cluster 2024-04-24T17:21:20.573580+0000 mgr.smithi028.zkmzde (mgr.14197) 331 : cluster [DBG] pgmap v278: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:22.923 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:21:23.529 INFO:teuthology.orchestra.run.smithi028.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-24T17:21:23.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:23 smithi028 bash[18631]: cluster 2024-04-24T17:21:22.574113+0000 mgr.smithi028.zkmzde (mgr.14197) 332 : cluster [DBG] pgmap v279: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:23.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:23 smithi028 bash[18631]: cluster 2024-04-24T17:21:22.574113+0000 mgr.smithi028.zkmzde (mgr.14197) 332 : cluster [DBG] pgmap v279: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:23.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:23 smithi028 bash[18631]: audit 2024-04-24T17:21:22.928154+0000 mon.smithi028 (mon.0) 491 : audit [DBG] from='client.? 172.21.15.28:0/926158447' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:23.780 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:23 smithi028 bash[18631]: audit 2024-04-24T17:21:22.928154+0000 mon.smithi028 (mon.0) 491 : audit [DBG] from='client.? 172.21.15.28:0/926158447' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:24.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:23 smithi105 bash[20254]: cluster 2024-04-24T17:21:22.574113+0000 mgr.smithi028.zkmzde (mgr.14197) 332 : cluster [DBG] pgmap v279: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:24.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:23 smithi105 bash[20254]: cluster 2024-04-24T17:21:22.574113+0000 mgr.smithi028.zkmzde (mgr.14197) 332 : cluster [DBG] pgmap v279: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:24.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:23 smithi105 bash[20254]: audit 2024-04-24T17:21:22.928154+0000 mon.smithi028 (mon.0) 491 : audit [DBG] from='client.? 172.21.15.28:0/926158447' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:24.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:23 smithi105 bash[20254]: audit 2024-04-24T17:21:22.928154+0000 mon.smithi028 (mon.0) 491 : audit [DBG] from='client.? 172.21.15.28:0/926158447' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:24.530 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:21:26.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:25 smithi105 bash[20254]: cluster 2024-04-24T17:21:24.575064+0000 mgr.smithi028.zkmzde (mgr.14197) 333 : cluster [DBG] pgmap v280: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:26.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:25 smithi105 bash[20254]: cluster 2024-04-24T17:21:24.575064+0000 mgr.smithi028.zkmzde (mgr.14197) 333 : cluster [DBG] pgmap v280: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:26.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:25 smithi028 bash[18631]: cluster 2024-04-24T17:21:24.575064+0000 mgr.smithi028.zkmzde (mgr.14197) 333 : cluster [DBG] pgmap v280: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:26.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:25 smithi028 bash[18631]: cluster 2024-04-24T17:21:24.575064+0000 mgr.smithi028.zkmzde (mgr.14197) 333 : cluster [DBG] pgmap v280: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:28.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:27 smithi105 bash[20254]: cluster 2024-04-24T17:21:26.576087+0000 mgr.smithi028.zkmzde (mgr.14197) 334 : cluster [DBG] pgmap v281: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:28.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:27 smithi105 bash[20254]: cluster 2024-04-24T17:21:26.576087+0000 mgr.smithi028.zkmzde (mgr.14197) 334 : cluster [DBG] pgmap v281: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:28.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:27 smithi028 bash[18631]: cluster 2024-04-24T17:21:26.576087+0000 mgr.smithi028.zkmzde (mgr.14197) 334 : cluster [DBG] pgmap v281: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:28.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:27 smithi028 bash[18631]: cluster 2024-04-24T17:21:26.576087+0000 mgr.smithi028.zkmzde (mgr.14197) 334 : cluster [DBG] pgmap v281: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:29.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:28 smithi105 bash[20254]: audit 2024-04-24T17:21:27.831446+0000 mon.smithi028 (mon.0) 492 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:29.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:28 smithi105 bash[20254]: audit 2024-04-24T17:21:27.831446+0000 mon.smithi028 (mon.0) 492 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:29.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:28 smithi028 bash[18631]: audit 2024-04-24T17:21:27.831446+0000 mon.smithi028 (mon.0) 492 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:29.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:28 smithi028 bash[18631]: audit 2024-04-24T17:21:27.831446+0000 mon.smithi028 (mon.0) 492 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:29.311 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:21:30.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:29 smithi105 bash[20254]: cluster 2024-04-24T17:21:28.577068+0000 mgr.smithi028.zkmzde (mgr.14197) 335 : cluster [DBG] pgmap v282: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:30.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:29 smithi105 bash[20254]: cluster 2024-04-24T17:21:28.577068+0000 mgr.smithi028.zkmzde (mgr.14197) 335 : cluster [DBG] pgmap v282: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:30.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:29 smithi028 bash[18631]: cluster 2024-04-24T17:21:28.577068+0000 mgr.smithi028.zkmzde (mgr.14197) 335 : cluster [DBG] pgmap v282: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:30.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:29 smithi028 bash[18631]: cluster 2024-04-24T17:21:28.577068+0000 mgr.smithi028.zkmzde (mgr.14197) 335 : cluster [DBG] pgmap v282: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:30.640 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:21:31.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:30 smithi105 bash[20254]: audit 2024-04-24T17:21:30.646238+0000 mon.smithi028 (mon.0) 493 : audit [DBG] from='client.? 172.21.15.28:0/74510715' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:31.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:30 smithi105 bash[20254]: audit 2024-04-24T17:21:30.646238+0000 mon.smithi028 (mon.0) 493 : audit [DBG] from='client.? 172.21.15.28:0/74510715' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:31.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:30 smithi028 bash[18631]: audit 2024-04-24T17:21:30.646238+0000 mon.smithi028 (mon.0) 493 : audit [DBG] from='client.? 172.21.15.28:0/74510715' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:31.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:30 smithi028 bash[18631]: audit 2024-04-24T17:21:30.646238+0000 mon.smithi028 (mon.0) 493 : audit [DBG] from='client.? 172.21.15.28:0/74510715' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:31.237 INFO:teuthology.orchestra.run.smithi028.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-24T17:21:32.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:31 smithi105 bash[20254]: cluster 2024-04-24T17:21:30.578061+0000 mgr.smithi028.zkmzde (mgr.14197) 336 : cluster [DBG] pgmap v283: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:32.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:31 smithi105 bash[20254]: cluster 2024-04-24T17:21:30.578061+0000 mgr.smithi028.zkmzde (mgr.14197) 336 : cluster [DBG] pgmap v283: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:32.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:31 smithi028 bash[18631]: cluster 2024-04-24T17:21:30.578061+0000 mgr.smithi028.zkmzde (mgr.14197) 336 : cluster [DBG] pgmap v283: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:32.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:31 smithi028 bash[18631]: cluster 2024-04-24T17:21:30.578061+0000 mgr.smithi028.zkmzde (mgr.14197) 336 : cluster [DBG] pgmap v283: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:32.238 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:21:34.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:33 smithi105 bash[20254]: cluster 2024-04-24T17:21:32.579060+0000 mgr.smithi028.zkmzde (mgr.14197) 337 : cluster [DBG] pgmap v284: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:34.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:33 smithi105 bash[20254]: cluster 2024-04-24T17:21:32.579060+0000 mgr.smithi028.zkmzde (mgr.14197) 337 : cluster [DBG] pgmap v284: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:34.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:33 smithi028 bash[18631]: cluster 2024-04-24T17:21:32.579060+0000 mgr.smithi028.zkmzde (mgr.14197) 337 : cluster [DBG] pgmap v284: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:34.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:33 smithi028 bash[18631]: cluster 2024-04-24T17:21:32.579060+0000 mgr.smithi028.zkmzde (mgr.14197) 337 : cluster [DBG] pgmap v284: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:36.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:35 smithi105 bash[20254]: cluster 2024-04-24T17:21:34.580096+0000 mgr.smithi028.zkmzde (mgr.14197) 338 : cluster [DBG] pgmap v285: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:36.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:35 smithi105 bash[20254]: cluster 2024-04-24T17:21:34.580096+0000 mgr.smithi028.zkmzde (mgr.14197) 338 : cluster [DBG] pgmap v285: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:36.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:35 smithi028 bash[18631]: cluster 2024-04-24T17:21:34.580096+0000 mgr.smithi028.zkmzde (mgr.14197) 338 : cluster [DBG] pgmap v285: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:36.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:35 smithi028 bash[18631]: cluster 2024-04-24T17:21:34.580096+0000 mgr.smithi028.zkmzde (mgr.14197) 338 : cluster [DBG] pgmap v285: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:37.009 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:21:38.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:37 smithi105 bash[20254]: cluster 2024-04-24T17:21:36.581117+0000 mgr.smithi028.zkmzde (mgr.14197) 339 : cluster [DBG] pgmap v286: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:38.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:37 smithi105 bash[20254]: cluster 2024-04-24T17:21:36.581117+0000 mgr.smithi028.zkmzde (mgr.14197) 339 : cluster [DBG] pgmap v286: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:38.029 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:37 smithi028 bash[18631]: cluster 2024-04-24T17:21:36.581117+0000 mgr.smithi028.zkmzde (mgr.14197) 339 : cluster [DBG] pgmap v286: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:38.029 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:37 smithi028 bash[18631]: cluster 2024-04-24T17:21:36.581117+0000 mgr.smithi028.zkmzde (mgr.14197) 339 : cluster [DBG] pgmap v286: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:38.208 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:21:38.867 INFO:teuthology.orchestra.run.smithi028.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-24T17:21:39.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:38 smithi105 bash[20254]: audit 2024-04-24T17:21:38.213699+0000 mon.smithi028 (mon.0) 494 : audit [DBG] from='client.? 172.21.15.28:0/920556814' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:39.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:38 smithi105 bash[20254]: audit 2024-04-24T17:21:38.213699+0000 mon.smithi028 (mon.0) 494 : audit [DBG] from='client.? 172.21.15.28:0/920556814' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:39.029 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:38 smithi028 bash[18631]: audit 2024-04-24T17:21:38.213699+0000 mon.smithi028 (mon.0) 494 : audit [DBG] from='client.? 172.21.15.28:0/920556814' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:39.029 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:38 smithi028 bash[18631]: audit 2024-04-24T17:21:38.213699+0000 mon.smithi028 (mon.0) 494 : audit [DBG] from='client.? 172.21.15.28:0/920556814' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:39.868 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:21:40.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:39 smithi105 bash[20254]: cluster 2024-04-24T17:21:38.582166+0000 mgr.smithi028.zkmzde (mgr.14197) 340 : cluster [DBG] pgmap v287: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:40.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:39 smithi105 bash[20254]: cluster 2024-04-24T17:21:38.582166+0000 mgr.smithi028.zkmzde (mgr.14197) 340 : cluster [DBG] pgmap v287: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:40.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:39 smithi028 bash[18631]: cluster 2024-04-24T17:21:38.582166+0000 mgr.smithi028.zkmzde (mgr.14197) 340 : cluster [DBG] pgmap v287: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:40.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:39 smithi028 bash[18631]: cluster 2024-04-24T17:21:38.582166+0000 mgr.smithi028.zkmzde (mgr.14197) 340 : cluster [DBG] pgmap v287: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:42.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:41 smithi105 bash[20254]: cluster 2024-04-24T17:21:40.583211+0000 mgr.smithi028.zkmzde (mgr.14197) 341 : cluster [DBG] pgmap v288: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:42.019 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:41 smithi105 bash[20254]: cluster 2024-04-24T17:21:40.583211+0000 mgr.smithi028.zkmzde (mgr.14197) 341 : cluster [DBG] pgmap v288: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:42.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:41 smithi028 bash[18631]: cluster 2024-04-24T17:21:40.583211+0000 mgr.smithi028.zkmzde (mgr.14197) 341 : cluster [DBG] pgmap v288: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:42.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:41 smithi028 bash[18631]: cluster 2024-04-24T17:21:40.583211+0000 mgr.smithi028.zkmzde (mgr.14197) 341 : cluster [DBG] pgmap v288: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:43.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:42 smithi105 bash[20254]: audit 2024-04-24T17:21:42.831900+0000 mon.smithi028 (mon.0) 495 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:43.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:42 smithi105 bash[20254]: audit 2024-04-24T17:21:42.831900+0000 mon.smithi028 (mon.0) 495 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:43.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:42 smithi028 bash[18631]: audit 2024-04-24T17:21:42.831900+0000 mon.smithi028 (mon.0) 495 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:43.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:42 smithi028 bash[18631]: audit 2024-04-24T17:21:42.831900+0000 mon.smithi028 (mon.0) 495 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:44.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:43 smithi105 bash[20254]: cluster 2024-04-24T17:21:42.584230+0000 mgr.smithi028.zkmzde (mgr.14197) 342 : cluster [DBG] pgmap v289: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:44.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:43 smithi105 bash[20254]: cluster 2024-04-24T17:21:42.584230+0000 mgr.smithi028.zkmzde (mgr.14197) 342 : cluster [DBG] pgmap v289: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:44.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:43 smithi028 bash[18631]: cluster 2024-04-24T17:21:42.584230+0000 mgr.smithi028.zkmzde (mgr.14197) 342 : cluster [DBG] pgmap v289: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:44.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:43 smithi028 bash[18631]: cluster 2024-04-24T17:21:42.584230+0000 mgr.smithi028.zkmzde (mgr.14197) 342 : cluster [DBG] pgmap v289: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:44.642 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:21:45.786 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:21:46.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:45 smithi028 bash[18631]: cluster 2024-04-24T17:21:44.585225+0000 mgr.smithi028.zkmzde (mgr.14197) 343 : cluster [DBG] pgmap v290: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:46.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:45 smithi028 bash[18631]: cluster 2024-04-24T17:21:44.585225+0000 mgr.smithi028.zkmzde (mgr.14197) 343 : cluster [DBG] pgmap v290: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:46.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:45 smithi028 bash[18631]: audit 2024-04-24T17:21:45.791671+0000 mon.smithi028 (mon.0) 496 : audit [DBG] from='client.? 172.21.15.28:0/1400224720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:46.030 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:45 smithi028 bash[18631]: audit 2024-04-24T17:21:45.791671+0000 mon.smithi028 (mon.0) 496 : audit [DBG] from='client.? 172.21.15.28:0/1400224720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:46.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:45 smithi105 bash[20254]: cluster 2024-04-24T17:21:44.585225+0000 mgr.smithi028.zkmzde (mgr.14197) 343 : cluster [DBG] pgmap v290: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:46.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:45 smithi105 bash[20254]: cluster 2024-04-24T17:21:44.585225+0000 mgr.smithi028.zkmzde (mgr.14197) 343 : cluster [DBG] pgmap v290: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:46.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:45 smithi105 bash[20254]: audit 2024-04-24T17:21:45.791671+0000 mon.smithi028 (mon.0) 496 : audit [DBG] from='client.? 172.21.15.28:0/1400224720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:46.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:45 smithi105 bash[20254]: audit 2024-04-24T17:21:45.791671+0000 mon.smithi028 (mon.0) 496 : audit [DBG] from='client.? 172.21.15.28:0/1400224720' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:46.407 INFO:teuthology.orchestra.run.smithi028.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-24T17:21:47.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:46 smithi105 bash[20254]: audit 2024-04-24T17:21:46.658350+0000 mon.smithi028 (mon.0) 497 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:21:47.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:46 smithi105 bash[20254]: audit 2024-04-24T17:21:46.658350+0000 mon.smithi028 (mon.0) 497 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:21:47.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:46 smithi028 bash[18631]: audit 2024-04-24T17:21:46.658350+0000 mon.smithi028 (mon.0) 497 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:21:47.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:46 smithi028 bash[18631]: audit 2024-04-24T17:21:46.658350+0000 mon.smithi028 (mon.0) 497 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:21:47.408 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:21:48.181 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:47 smithi028 bash[18631]: cluster 2024-04-24T17:21:46.586261+0000 mgr.smithi028.zkmzde (mgr.14197) 344 : cluster [DBG] pgmap v291: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:48.181 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:47 smithi028 bash[18631]: cluster 2024-04-24T17:21:46.586261+0000 mgr.smithi028.zkmzde (mgr.14197) 344 : cluster [DBG] pgmap v291: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:48.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:47 smithi105 bash[20254]: cluster 2024-04-24T17:21:46.586261+0000 mgr.smithi028.zkmzde (mgr.14197) 344 : cluster [DBG] pgmap v291: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:48.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:47 smithi105 bash[20254]: cluster 2024-04-24T17:21:46.586261+0000 mgr.smithi028.zkmzde (mgr.14197) 344 : cluster [DBG] pgmap v291: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:50.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:49 smithi105 bash[20254]: cluster 2024-04-24T17:21:48.587274+0000 mgr.smithi028.zkmzde (mgr.14197) 345 : cluster [DBG] pgmap v292: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:50.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:49 smithi105 bash[20254]: cluster 2024-04-24T17:21:48.587274+0000 mgr.smithi028.zkmzde (mgr.14197) 345 : cluster [DBG] pgmap v292: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:50.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:49 smithi028 bash[18631]: cluster 2024-04-24T17:21:48.587274+0000 mgr.smithi028.zkmzde (mgr.14197) 345 : cluster [DBG] pgmap v292: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:50.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:49 smithi028 bash[18631]: cluster 2024-04-24T17:21:48.587274+0000 mgr.smithi028.zkmzde (mgr.14197) 345 : cluster [DBG] pgmap v292: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:52.179 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:21:52.199 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:51 smithi028 bash[18631]: cluster 2024-04-24T17:21:50.588346+0000 mgr.smithi028.zkmzde (mgr.14197) 346 : cluster [DBG] pgmap v293: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:52.199 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:51 smithi028 bash[18631]: cluster 2024-04-24T17:21:50.588346+0000 mgr.smithi028.zkmzde (mgr.14197) 346 : cluster [DBG] pgmap v293: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:52.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:51 smithi105 bash[20254]: cluster 2024-04-24T17:21:50.588346+0000 mgr.smithi028.zkmzde (mgr.14197) 346 : cluster [DBG] pgmap v293: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:52.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:51 smithi105 bash[20254]: cluster 2024-04-24T17:21:50.588346+0000 mgr.smithi028.zkmzde (mgr.14197) 346 : cluster [DBG] pgmap v293: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:53.644 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:21:54.197 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:53 smithi028 bash[18631]: cluster 2024-04-24T17:21:52.589369+0000 mgr.smithi028.zkmzde (mgr.14197) 347 : cluster [DBG] pgmap v294: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:54.197 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:53 smithi028 bash[18631]: cluster 2024-04-24T17:21:52.589369+0000 mgr.smithi028.zkmzde (mgr.14197) 347 : cluster [DBG] pgmap v294: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:54.197 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:53 smithi028 bash[18631]: audit 2024-04-24T17:21:53.649836+0000 mon.smithi028 (mon.0) 498 : audit [DBG] from='client.? 172.21.15.28:0/1179068460' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:54.197 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:53 smithi028 bash[18631]: audit 2024-04-24T17:21:53.649836+0000 mon.smithi028 (mon.0) 498 : audit [DBG] from='client.? 172.21.15.28:0/1179068460' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:54.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:53 smithi105 bash[20254]: cluster 2024-04-24T17:21:52.589369+0000 mgr.smithi028.zkmzde (mgr.14197) 347 : cluster [DBG] pgmap v294: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:54.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:53 smithi105 bash[20254]: cluster 2024-04-24T17:21:52.589369+0000 mgr.smithi028.zkmzde (mgr.14197) 347 : cluster [DBG] pgmap v294: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:54.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:53 smithi105 bash[20254]: audit 2024-04-24T17:21:53.649836+0000 mon.smithi028 (mon.0) 498 : audit [DBG] from='client.? 172.21.15.28:0/1179068460' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:54.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:53 smithi105 bash[20254]: audit 2024-04-24T17:21:53.649836+0000 mon.smithi028 (mon.0) 498 : audit [DBG] from='client.? 172.21.15.28:0/1179068460' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:21:54.461 INFO:teuthology.orchestra.run.smithi028.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-24T17:21:55.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:54 smithi105 bash[20254]: audit 2024-04-24T17:21:54.422474+0000 mon.smithi028 (mon.0) 499 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:21:55.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:54 smithi105 bash[20254]: audit 2024-04-24T17:21:54.422474+0000 mon.smithi028 (mon.0) 499 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:21:55.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:54 smithi105 bash[20254]: audit 2024-04-24T17:21:54.424067+0000 mon.smithi028 (mon.0) 500 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:21:55.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:54 smithi105 bash[20254]: audit 2024-04-24T17:21:54.424067+0000 mon.smithi028 (mon.0) 500 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:21:55.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:54 smithi105 bash[20254]: audit 2024-04-24T17:21:54.434577+0000 mon.smithi028 (mon.0) 501 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:21:55.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:54 smithi105 bash[20254]: audit 2024-04-24T17:21:54.434577+0000 mon.smithi028 (mon.0) 501 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:21:55.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:54 smithi105 bash[20254]: audit 2024-04-24T17:21:54.440624+0000 mon.smithi028 (mon.0) 502 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:21:55.269 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:54 smithi105 bash[20254]: audit 2024-04-24T17:21:54.440624+0000 mon.smithi028 (mon.0) 502 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:21:55.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:54 smithi028 bash[18631]: audit 2024-04-24T17:21:54.422474+0000 mon.smithi028 (mon.0) 499 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:21:55.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:54 smithi028 bash[18631]: audit 2024-04-24T17:21:54.422474+0000 mon.smithi028 (mon.0) 499 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:21:55.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:54 smithi028 bash[18631]: audit 2024-04-24T17:21:54.424067+0000 mon.smithi028 (mon.0) 500 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:21:55.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:54 smithi028 bash[18631]: audit 2024-04-24T17:21:54.424067+0000 mon.smithi028 (mon.0) 500 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:21:55.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:54 smithi028 bash[18631]: audit 2024-04-24T17:21:54.434577+0000 mon.smithi028 (mon.0) 501 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:21:55.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:54 smithi028 bash[18631]: audit 2024-04-24T17:21:54.434577+0000 mon.smithi028 (mon.0) 501 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:21:55.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:54 smithi028 bash[18631]: audit 2024-04-24T17:21:54.440624+0000 mon.smithi028 (mon.0) 502 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:21:55.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:54 smithi028 bash[18631]: audit 2024-04-24T17:21:54.440624+0000 mon.smithi028 (mon.0) 502 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:21:55.462 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:21:56.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:55 smithi105 bash[20254]: cluster 2024-04-24T17:21:54.426635+0000 mgr.smithi028.zkmzde (mgr.14197) 348 : cluster [DBG] pgmap v295: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:56.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:55 smithi105 bash[20254]: cluster 2024-04-24T17:21:54.426635+0000 mgr.smithi028.zkmzde (mgr.14197) 348 : cluster [DBG] pgmap v295: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:56.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:55 smithi105 bash[20254]: cluster 2024-04-24T17:21:54.427620+0000 mgr.smithi028.zkmzde (mgr.14197) 349 : cluster [DBG] pgmap v296: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:56.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:55 smithi105 bash[20254]: cluster 2024-04-24T17:21:54.427620+0000 mgr.smithi028.zkmzde (mgr.14197) 349 : cluster [DBG] pgmap v296: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:56.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:55 smithi028 bash[18631]: cluster 2024-04-24T17:21:54.426635+0000 mgr.smithi028.zkmzde (mgr.14197) 348 : cluster [DBG] pgmap v295: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:56.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:55 smithi028 bash[18631]: cluster 2024-04-24T17:21:54.426635+0000 mgr.smithi028.zkmzde (mgr.14197) 348 : cluster [DBG] pgmap v295: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:56.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:55 smithi028 bash[18631]: cluster 2024-04-24T17:21:54.427620+0000 mgr.smithi028.zkmzde (mgr.14197) 349 : cluster [DBG] pgmap v296: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:56.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:55 smithi028 bash[18631]: cluster 2024-04-24T17:21:54.427620+0000 mgr.smithi028.zkmzde (mgr.14197) 349 : cluster [DBG] pgmap v296: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:58.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:57 smithi105 bash[20254]: cluster 2024-04-24T17:21:56.428650+0000 mgr.smithi028.zkmzde (mgr.14197) 350 : cluster [DBG] pgmap v297: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:58.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:57 smithi105 bash[20254]: cluster 2024-04-24T17:21:56.428650+0000 mgr.smithi028.zkmzde (mgr.14197) 350 : cluster [DBG] pgmap v297: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:58.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:57 smithi105 bash[20254]: audit 2024-04-24T17:21:57.832422+0000 mon.smithi028 (mon.0) 503 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:58.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:57 smithi105 bash[20254]: audit 2024-04-24T17:21:57.832422+0000 mon.smithi028 (mon.0) 503 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:58.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:57 smithi028 bash[18631]: cluster 2024-04-24T17:21:56.428650+0000 mgr.smithi028.zkmzde (mgr.14197) 350 : cluster [DBG] pgmap v297: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:58.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:57 smithi028 bash[18631]: cluster 2024-04-24T17:21:56.428650+0000 mgr.smithi028.zkmzde (mgr.14197) 350 : cluster [DBG] pgmap v297: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:21:58.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:57 smithi028 bash[18631]: audit 2024-04-24T17:21:57.832422+0000 mon.smithi028 (mon.0) 503 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:21:58.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:57 smithi028 bash[18631]: audit 2024-04-24T17:21:57.832422+0000 mon.smithi028 (mon.0) 503 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:00.233 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:22:00.255 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:59 smithi028 bash[18631]: cluster 2024-04-24T17:21:58.429773+0000 mgr.smithi028.zkmzde (mgr.14197) 351 : cluster [DBG] pgmap v298: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:00.255 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:21:59 smithi028 bash[18631]: cluster 2024-04-24T17:21:58.429773+0000 mgr.smithi028.zkmzde (mgr.14197) 351 : cluster [DBG] pgmap v298: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:00.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:59 smithi105 bash[20254]: cluster 2024-04-24T17:21:58.429773+0000 mgr.smithi028.zkmzde (mgr.14197) 351 : cluster [DBG] pgmap v298: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:00.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:21:59 smithi105 bash[20254]: cluster 2024-04-24T17:21:58.429773+0000 mgr.smithi028.zkmzde (mgr.14197) 351 : cluster [DBG] pgmap v298: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:01.552 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:22:02.131 INFO:teuthology.orchestra.run.smithi028.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-24T17:22:02.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:01 smithi105 bash[20254]: cluster 2024-04-24T17:22:00.430964+0000 mgr.smithi028.zkmzde (mgr.14197) 352 : cluster [DBG] pgmap v299: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:02.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:01 smithi105 bash[20254]: cluster 2024-04-24T17:22:00.430964+0000 mgr.smithi028.zkmzde (mgr.14197) 352 : cluster [DBG] pgmap v299: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:02.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:01 smithi105 bash[20254]: audit 2024-04-24T17:22:01.557553+0000 mon.smithi028 (mon.0) 504 : audit [DBG] from='client.? 172.21.15.28:0/1054630777' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:02.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:01 smithi105 bash[20254]: audit 2024-04-24T17:22:01.557553+0000 mon.smithi028 (mon.0) 504 : audit [DBG] from='client.? 172.21.15.28:0/1054630777' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:02.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:01 smithi028 bash[18631]: cluster 2024-04-24T17:22:00.430964+0000 mgr.smithi028.zkmzde (mgr.14197) 352 : cluster [DBG] pgmap v299: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:02.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:01 smithi028 bash[18631]: cluster 2024-04-24T17:22:00.430964+0000 mgr.smithi028.zkmzde (mgr.14197) 352 : cluster [DBG] pgmap v299: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:02.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:01 smithi028 bash[18631]: audit 2024-04-24T17:22:01.557553+0000 mon.smithi028 (mon.0) 504 : audit [DBG] from='client.? 172.21.15.28:0/1054630777' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:02.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:01 smithi028 bash[18631]: audit 2024-04-24T17:22:01.557553+0000 mon.smithi028 (mon.0) 504 : audit [DBG] from='client.? 172.21.15.28:0/1054630777' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:03.132 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:22:04.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:03 smithi105 bash[20254]: cluster 2024-04-24T17:22:02.432106+0000 mgr.smithi028.zkmzde (mgr.14197) 353 : cluster [DBG] pgmap v300: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:04.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:03 smithi105 bash[20254]: cluster 2024-04-24T17:22:02.432106+0000 mgr.smithi028.zkmzde (mgr.14197) 353 : cluster [DBG] pgmap v300: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:04.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:03 smithi028 bash[18631]: cluster 2024-04-24T17:22:02.432106+0000 mgr.smithi028.zkmzde (mgr.14197) 353 : cluster [DBG] pgmap v300: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:04.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:03 smithi028 bash[18631]: cluster 2024-04-24T17:22:02.432106+0000 mgr.smithi028.zkmzde (mgr.14197) 353 : cluster [DBG] pgmap v300: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:06.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:05 smithi105 bash[20254]: cluster 2024-04-24T17:22:04.433100+0000 mgr.smithi028.zkmzde (mgr.14197) 354 : cluster [DBG] pgmap v301: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:06.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:05 smithi105 bash[20254]: cluster 2024-04-24T17:22:04.433100+0000 mgr.smithi028.zkmzde (mgr.14197) 354 : cluster [DBG] pgmap v301: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:06.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:05 smithi028 bash[18631]: cluster 2024-04-24T17:22:04.433100+0000 mgr.smithi028.zkmzde (mgr.14197) 354 : cluster [DBG] pgmap v301: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:06.280 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:05 smithi028 bash[18631]: cluster 2024-04-24T17:22:04.433100+0000 mgr.smithi028.zkmzde (mgr.14197) 354 : cluster [DBG] pgmap v301: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:07.904 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:22:08.181 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:07 smithi028 bash[18631]: cluster 2024-04-24T17:22:06.434139+0000 mgr.smithi028.zkmzde (mgr.14197) 355 : cluster [DBG] pgmap v302: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:08.181 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:07 smithi028 bash[18631]: cluster 2024-04-24T17:22:06.434139+0000 mgr.smithi028.zkmzde (mgr.14197) 355 : cluster [DBG] pgmap v302: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:08.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:07 smithi105 bash[20254]: cluster 2024-04-24T17:22:06.434139+0000 mgr.smithi028.zkmzde (mgr.14197) 355 : cluster [DBG] pgmap v302: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:08.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:07 smithi105 bash[20254]: cluster 2024-04-24T17:22:06.434139+0000 mgr.smithi028.zkmzde (mgr.14197) 355 : cluster [DBG] pgmap v302: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:09.208 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:22:09.803 INFO:teuthology.orchestra.run.smithi028.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-24T17:22:10.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:09 smithi105 bash[20254]: cluster 2024-04-24T17:22:08.435110+0000 mgr.smithi028.zkmzde (mgr.14197) 356 : cluster [DBG] pgmap v303: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:10.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:09 smithi105 bash[20254]: cluster 2024-04-24T17:22:08.435110+0000 mgr.smithi028.zkmzde (mgr.14197) 356 : cluster [DBG] pgmap v303: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:10.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:09 smithi105 bash[20254]: audit 2024-04-24T17:22:09.214214+0000 mon.smithi028 (mon.0) 505 : audit [DBG] from='client.? 172.21.15.28:0/2955963020' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:10.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:09 smithi105 bash[20254]: audit 2024-04-24T17:22:09.214214+0000 mon.smithi028 (mon.0) 505 : audit [DBG] from='client.? 172.21.15.28:0/2955963020' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:10.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:09 smithi028 bash[18631]: cluster 2024-04-24T17:22:08.435110+0000 mgr.smithi028.zkmzde (mgr.14197) 356 : cluster [DBG] pgmap v303: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:10.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:09 smithi028 bash[18631]: cluster 2024-04-24T17:22:08.435110+0000 mgr.smithi028.zkmzde (mgr.14197) 356 : cluster [DBG] pgmap v303: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:10.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:09 smithi028 bash[18631]: audit 2024-04-24T17:22:09.214214+0000 mon.smithi028 (mon.0) 505 : audit [DBG] from='client.? 172.21.15.28:0/2955963020' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:10.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:09 smithi028 bash[18631]: audit 2024-04-24T17:22:09.214214+0000 mon.smithi028 (mon.0) 505 : audit [DBG] from='client.? 172.21.15.28:0/2955963020' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:10.805 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:22:12.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:11 smithi105 bash[20254]: cluster 2024-04-24T17:22:10.436094+0000 mgr.smithi028.zkmzde (mgr.14197) 357 : cluster [DBG] pgmap v304: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:12.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:11 smithi105 bash[20254]: cluster 2024-04-24T17:22:10.436094+0000 mgr.smithi028.zkmzde (mgr.14197) 357 : cluster [DBG] pgmap v304: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:12.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:11 smithi028 bash[18631]: cluster 2024-04-24T17:22:10.436094+0000 mgr.smithi028.zkmzde (mgr.14197) 357 : cluster [DBG] pgmap v304: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:12.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:11 smithi028 bash[18631]: cluster 2024-04-24T17:22:10.436094+0000 mgr.smithi028.zkmzde (mgr.14197) 357 : cluster [DBG] pgmap v304: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:13.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:12 smithi105 bash[20254]: audit 2024-04-24T17:22:12.832777+0000 mon.smithi028 (mon.0) 506 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:13.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:12 smithi105 bash[20254]: audit 2024-04-24T17:22:12.832777+0000 mon.smithi028 (mon.0) 506 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:13.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:12 smithi028 bash[18631]: audit 2024-04-24T17:22:12.832777+0000 mon.smithi028 (mon.0) 506 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:13.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:12 smithi028 bash[18631]: audit 2024-04-24T17:22:12.832777+0000 mon.smithi028 (mon.0) 506 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:14.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:13 smithi105 bash[20254]: cluster 2024-04-24T17:22:12.437124+0000 mgr.smithi028.zkmzde (mgr.14197) 358 : cluster [DBG] pgmap v305: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:14.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:13 smithi105 bash[20254]: cluster 2024-04-24T17:22:12.437124+0000 mgr.smithi028.zkmzde (mgr.14197) 358 : cluster [DBG] pgmap v305: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:14.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:13 smithi028 bash[18631]: cluster 2024-04-24T17:22:12.437124+0000 mgr.smithi028.zkmzde (mgr.14197) 358 : cluster [DBG] pgmap v305: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:14.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:13 smithi028 bash[18631]: cluster 2024-04-24T17:22:12.437124+0000 mgr.smithi028.zkmzde (mgr.14197) 358 : cluster [DBG] pgmap v305: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:15.582 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:22:16.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:15 smithi105 bash[20254]: cluster 2024-04-24T17:22:14.438172+0000 mgr.smithi028.zkmzde (mgr.14197) 359 : cluster [DBG] pgmap v306: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:16.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:15 smithi105 bash[20254]: cluster 2024-04-24T17:22:14.438172+0000 mgr.smithi028.zkmzde (mgr.14197) 359 : cluster [DBG] pgmap v306: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:16.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:15 smithi028 bash[18631]: cluster 2024-04-24T17:22:14.438172+0000 mgr.smithi028.zkmzde (mgr.14197) 359 : cluster [DBG] pgmap v306: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:16.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:15 smithi028 bash[18631]: cluster 2024-04-24T17:22:14.438172+0000 mgr.smithi028.zkmzde (mgr.14197) 359 : cluster [DBG] pgmap v306: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:16.833 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:22:17.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:16 smithi105 bash[20254]: audit 2024-04-24T17:22:16.839595+0000 mon.smithi028 (mon.0) 507 : audit [DBG] from='client.? 172.21.15.28:0/3199253904' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:17.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:16 smithi105 bash[20254]: audit 2024-04-24T17:22:16.839595+0000 mon.smithi028 (mon.0) 507 : audit [DBG] from='client.? 172.21.15.28:0/3199253904' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:17.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:16 smithi028 bash[18631]: audit 2024-04-24T17:22:16.839595+0000 mon.smithi028 (mon.0) 507 : audit [DBG] from='client.? 172.21.15.28:0/3199253904' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:17.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:16 smithi028 bash[18631]: audit 2024-04-24T17:22:16.839595+0000 mon.smithi028 (mon.0) 507 : audit [DBG] from='client.? 172.21.15.28:0/3199253904' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:17.476 INFO:teuthology.orchestra.run.smithi028.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-24T17:22:18.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:17 smithi105 bash[20254]: cluster 2024-04-24T17:22:16.439175+0000 mgr.smithi028.zkmzde (mgr.14197) 360 : cluster [DBG] pgmap v307: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:18.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:17 smithi105 bash[20254]: cluster 2024-04-24T17:22:16.439175+0000 mgr.smithi028.zkmzde (mgr.14197) 360 : cluster [DBG] pgmap v307: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:18.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:17 smithi028 bash[18631]: cluster 2024-04-24T17:22:16.439175+0000 mgr.smithi028.zkmzde (mgr.14197) 360 : cluster [DBG] pgmap v307: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:18.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:17 smithi028 bash[18631]: cluster 2024-04-24T17:22:16.439175+0000 mgr.smithi028.zkmzde (mgr.14197) 360 : cluster [DBG] pgmap v307: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:18.477 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:22:20.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:20 smithi105 bash[20254]: cluster 2024-04-24T17:22:18.440173+0000 mgr.smithi028.zkmzde (mgr.14197) 361 : cluster [DBG] pgmap v308: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:20.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:20 smithi105 bash[20254]: cluster 2024-04-24T17:22:18.440173+0000 mgr.smithi028.zkmzde (mgr.14197) 361 : cluster [DBG] pgmap v308: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:20.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:20 smithi028 bash[18631]: cluster 2024-04-24T17:22:18.440173+0000 mgr.smithi028.zkmzde (mgr.14197) 361 : cluster [DBG] pgmap v308: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:20.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:20 smithi028 bash[18631]: cluster 2024-04-24T17:22:18.440173+0000 mgr.smithi028.zkmzde (mgr.14197) 361 : cluster [DBG] pgmap v308: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:22.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:22 smithi105 bash[20254]: cluster 2024-04-24T17:22:20.441156+0000 mgr.smithi028.zkmzde (mgr.14197) 362 : cluster [DBG] pgmap v309: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:22.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:22 smithi105 bash[20254]: cluster 2024-04-24T17:22:20.441156+0000 mgr.smithi028.zkmzde (mgr.14197) 362 : cluster [DBG] pgmap v309: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:22.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:22 smithi028 bash[18631]: cluster 2024-04-24T17:22:20.441156+0000 mgr.smithi028.zkmzde (mgr.14197) 362 : cluster [DBG] pgmap v309: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:22.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:22 smithi028 bash[18631]: cluster 2024-04-24T17:22:20.441156+0000 mgr.smithi028.zkmzde (mgr.14197) 362 : cluster [DBG] pgmap v309: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:23.254 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:22:24.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:24 smithi105 bash[20254]: cluster 2024-04-24T17:22:22.442288+0000 mgr.smithi028.zkmzde (mgr.14197) 363 : cluster [DBG] pgmap v310: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:24.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:24 smithi105 bash[20254]: cluster 2024-04-24T17:22:22.442288+0000 mgr.smithi028.zkmzde (mgr.14197) 363 : cluster [DBG] pgmap v310: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:24.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:24 smithi028 bash[18631]: cluster 2024-04-24T17:22:22.442288+0000 mgr.smithi028.zkmzde (mgr.14197) 363 : cluster [DBG] pgmap v310: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:24.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:24 smithi028 bash[18631]: cluster 2024-04-24T17:22:22.442288+0000 mgr.smithi028.zkmzde (mgr.14197) 363 : cluster [DBG] pgmap v310: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:24.525 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:22:25.098 INFO:teuthology.orchestra.run.smithi028.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-24T17:22:25.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:25 smithi105 bash[20254]: audit 2024-04-24T17:22:24.530914+0000 mon.smithi028 (mon.0) 508 : audit [DBG] from='client.? 172.21.15.28:0/2957810745' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:25.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:25 smithi105 bash[20254]: audit 2024-04-24T17:22:24.530914+0000 mon.smithi028 (mon.0) 508 : audit [DBG] from='client.? 172.21.15.28:0/2957810745' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:25.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:25 smithi028 bash[18631]: audit 2024-04-24T17:22:24.530914+0000 mon.smithi028 (mon.0) 508 : audit [DBG] from='client.? 172.21.15.28:0/2957810745' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:25.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:25 smithi028 bash[18631]: audit 2024-04-24T17:22:24.530914+0000 mon.smithi028 (mon.0) 508 : audit [DBG] from='client.? 172.21.15.28:0/2957810745' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:26.099 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:22:26.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:26 smithi105 bash[20254]: cluster 2024-04-24T17:22:24.443256+0000 mgr.smithi028.zkmzde (mgr.14197) 364 : cluster [DBG] pgmap v311: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:26.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:26 smithi105 bash[20254]: cluster 2024-04-24T17:22:24.443256+0000 mgr.smithi028.zkmzde (mgr.14197) 364 : cluster [DBG] pgmap v311: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:26.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:26 smithi028 bash[18631]: cluster 2024-04-24T17:22:24.443256+0000 mgr.smithi028.zkmzde (mgr.14197) 364 : cluster [DBG] pgmap v311: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:26.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:26 smithi028 bash[18631]: cluster 2024-04-24T17:22:24.443256+0000 mgr.smithi028.zkmzde (mgr.14197) 364 : cluster [DBG] pgmap v311: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:28.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:28 smithi028 bash[18631]: cluster 2024-04-24T17:22:26.444263+0000 mgr.smithi028.zkmzde (mgr.14197) 365 : cluster [DBG] pgmap v312: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:28.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:28 smithi028 bash[18631]: cluster 2024-04-24T17:22:26.444263+0000 mgr.smithi028.zkmzde (mgr.14197) 365 : cluster [DBG] pgmap v312: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:28.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:28 smithi028 bash[18631]: audit 2024-04-24T17:22:27.833294+0000 mon.smithi028 (mon.0) 509 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:28.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:28 smithi028 bash[18631]: audit 2024-04-24T17:22:27.833294+0000 mon.smithi028 (mon.0) 509 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:28.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:28 smithi105 bash[20254]: cluster 2024-04-24T17:22:26.444263+0000 mgr.smithi028.zkmzde (mgr.14197) 365 : cluster [DBG] pgmap v312: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:28.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:28 smithi105 bash[20254]: cluster 2024-04-24T17:22:26.444263+0000 mgr.smithi028.zkmzde (mgr.14197) 365 : cluster [DBG] pgmap v312: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:28.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:28 smithi105 bash[20254]: audit 2024-04-24T17:22:27.833294+0000 mon.smithi028 (mon.0) 509 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:28.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:28 smithi105 bash[20254]: audit 2024-04-24T17:22:27.833294+0000 mon.smithi028 (mon.0) 509 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:30.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:30 smithi028 bash[18631]: cluster 2024-04-24T17:22:28.445292+0000 mgr.smithi028.zkmzde (mgr.14197) 366 : cluster [DBG] pgmap v313: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:30.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:30 smithi028 bash[18631]: cluster 2024-04-24T17:22:28.445292+0000 mgr.smithi028.zkmzde (mgr.14197) 366 : cluster [DBG] pgmap v313: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:30.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:30 smithi105 bash[20254]: cluster 2024-04-24T17:22:28.445292+0000 mgr.smithi028.zkmzde (mgr.14197) 366 : cluster [DBG] pgmap v313: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:30.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:30 smithi105 bash[20254]: cluster 2024-04-24T17:22:28.445292+0000 mgr.smithi028.zkmzde (mgr.14197) 366 : cluster [DBG] pgmap v313: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:30.875 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:22:32.126 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:22:32.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:32 smithi028 bash[18631]: cluster 2024-04-24T17:22:30.446322+0000 mgr.smithi028.zkmzde (mgr.14197) 367 : cluster [DBG] pgmap v314: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:32.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:32 smithi028 bash[18631]: cluster 2024-04-24T17:22:30.446322+0000 mgr.smithi028.zkmzde (mgr.14197) 367 : cluster [DBG] pgmap v314: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:32.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:32 smithi105 bash[20254]: cluster 2024-04-24T17:22:30.446322+0000 mgr.smithi028.zkmzde (mgr.14197) 367 : cluster [DBG] pgmap v314: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:32.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:32 smithi105 bash[20254]: cluster 2024-04-24T17:22:30.446322+0000 mgr.smithi028.zkmzde (mgr.14197) 367 : cluster [DBG] pgmap v314: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:32.728 INFO:teuthology.orchestra.run.smithi028.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-24T17:22:33.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:33 smithi105 bash[20254]: audit 2024-04-24T17:22:32.132781+0000 mon.smithi028 (mon.0) 510 : audit [DBG] from='client.? 172.21.15.28:0/3734022497' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:33.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:33 smithi105 bash[20254]: audit 2024-04-24T17:22:32.132781+0000 mon.smithi028 (mon.0) 510 : audit [DBG] from='client.? 172.21.15.28:0/3734022497' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:33.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:33 smithi028 bash[18631]: audit 2024-04-24T17:22:32.132781+0000 mon.smithi028 (mon.0) 510 : audit [DBG] from='client.? 172.21.15.28:0/3734022497' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:33.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:33 smithi028 bash[18631]: audit 2024-04-24T17:22:32.132781+0000 mon.smithi028 (mon.0) 510 : audit [DBG] from='client.? 172.21.15.28:0/3734022497' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:33.730 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:22:34.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:34 smithi105 bash[20254]: cluster 2024-04-24T17:22:32.447381+0000 mgr.smithi028.zkmzde (mgr.14197) 368 : cluster [DBG] pgmap v315: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:34.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:34 smithi105 bash[20254]: cluster 2024-04-24T17:22:32.447381+0000 mgr.smithi028.zkmzde (mgr.14197) 368 : cluster [DBG] pgmap v315: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:34.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:34 smithi028 bash[18631]: cluster 2024-04-24T17:22:32.447381+0000 mgr.smithi028.zkmzde (mgr.14197) 368 : cluster [DBG] pgmap v315: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:34.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:34 smithi028 bash[18631]: cluster 2024-04-24T17:22:32.447381+0000 mgr.smithi028.zkmzde (mgr.14197) 368 : cluster [DBG] pgmap v315: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:36.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:36 smithi028 bash[18631]: cluster 2024-04-24T17:22:34.448393+0000 mgr.smithi028.zkmzde (mgr.14197) 369 : cluster [DBG] pgmap v316: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:36.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:36 smithi028 bash[18631]: cluster 2024-04-24T17:22:34.448393+0000 mgr.smithi028.zkmzde (mgr.14197) 369 : cluster [DBG] pgmap v316: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:36.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:36 smithi105 bash[20254]: cluster 2024-04-24T17:22:34.448393+0000 mgr.smithi028.zkmzde (mgr.14197) 369 : cluster [DBG] pgmap v316: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:36.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:36 smithi105 bash[20254]: cluster 2024-04-24T17:22:34.448393+0000 mgr.smithi028.zkmzde (mgr.14197) 369 : cluster [DBG] pgmap v316: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:38.504 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:22:38.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:38 smithi105 bash[20254]: cluster 2024-04-24T17:22:36.449403+0000 mgr.smithi028.zkmzde (mgr.14197) 370 : cluster [DBG] pgmap v317: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:38.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:38 smithi105 bash[20254]: cluster 2024-04-24T17:22:36.449403+0000 mgr.smithi028.zkmzde (mgr.14197) 370 : cluster [DBG] pgmap v317: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:38.525 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:38 smithi028 bash[18631]: cluster 2024-04-24T17:22:36.449403+0000 mgr.smithi028.zkmzde (mgr.14197) 370 : cluster [DBG] pgmap v317: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:38.525 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:38 smithi028 bash[18631]: cluster 2024-04-24T17:22:36.449403+0000 mgr.smithi028.zkmzde (mgr.14197) 370 : cluster [DBG] pgmap v317: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:39.717 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:22:40.271 INFO:teuthology.orchestra.run.smithi028.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-24T17:22:40.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:40 smithi105 bash[20254]: cluster 2024-04-24T17:22:38.450443+0000 mgr.smithi028.zkmzde (mgr.14197) 371 : cluster [DBG] pgmap v318: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:40.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:40 smithi105 bash[20254]: cluster 2024-04-24T17:22:38.450443+0000 mgr.smithi028.zkmzde (mgr.14197) 371 : cluster [DBG] pgmap v318: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:40.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:40 smithi105 bash[20254]: audit 2024-04-24T17:22:39.723304+0000 mon.smithi028 (mon.0) 511 : audit [DBG] from='client.? 172.21.15.28:0/3269261035' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:40.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:40 smithi105 bash[20254]: audit 2024-04-24T17:22:39.723304+0000 mon.smithi028 (mon.0) 511 : audit [DBG] from='client.? 172.21.15.28:0/3269261035' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:40.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:40 smithi028 bash[18631]: cluster 2024-04-24T17:22:38.450443+0000 mgr.smithi028.zkmzde (mgr.14197) 371 : cluster [DBG] pgmap v318: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:40.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:40 smithi028 bash[18631]: cluster 2024-04-24T17:22:38.450443+0000 mgr.smithi028.zkmzde (mgr.14197) 371 : cluster [DBG] pgmap v318: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:40.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:40 smithi028 bash[18631]: audit 2024-04-24T17:22:39.723304+0000 mon.smithi028 (mon.0) 511 : audit [DBG] from='client.? 172.21.15.28:0/3269261035' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:40.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:40 smithi028 bash[18631]: audit 2024-04-24T17:22:39.723304+0000 mon.smithi028 (mon.0) 511 : audit [DBG] from='client.? 172.21.15.28:0/3269261035' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:41.273 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:22:42.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:42 smithi105 bash[20254]: cluster 2024-04-24T17:22:40.451496+0000 mgr.smithi028.zkmzde (mgr.14197) 372 : cluster [DBG] pgmap v319: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:42.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:42 smithi105 bash[20254]: cluster 2024-04-24T17:22:40.451496+0000 mgr.smithi028.zkmzde (mgr.14197) 372 : cluster [DBG] pgmap v319: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:42.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:42 smithi028 bash[18631]: cluster 2024-04-24T17:22:40.451496+0000 mgr.smithi028.zkmzde (mgr.14197) 372 : cluster [DBG] pgmap v319: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:42.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:42 smithi028 bash[18631]: cluster 2024-04-24T17:22:40.451496+0000 mgr.smithi028.zkmzde (mgr.14197) 372 : cluster [DBG] pgmap v319: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:43.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:43 smithi105 bash[20254]: audit 2024-04-24T17:22:42.833914+0000 mon.smithi028 (mon.0) 512 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:43.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:43 smithi105 bash[20254]: audit 2024-04-24T17:22:42.833914+0000 mon.smithi028 (mon.0) 512 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:43.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:43 smithi028 bash[18631]: audit 2024-04-24T17:22:42.833914+0000 mon.smithi028 (mon.0) 512 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:43.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:43 smithi028 bash[18631]: audit 2024-04-24T17:22:42.833914+0000 mon.smithi028 (mon.0) 512 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:44.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:44 smithi105 bash[20254]: cluster 2024-04-24T17:22:42.452484+0000 mgr.smithi028.zkmzde (mgr.14197) 373 : cluster [DBG] pgmap v320: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:44.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:44 smithi105 bash[20254]: cluster 2024-04-24T17:22:42.452484+0000 mgr.smithi028.zkmzde (mgr.14197) 373 : cluster [DBG] pgmap v320: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:44.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:44 smithi028 bash[18631]: cluster 2024-04-24T17:22:42.452484+0000 mgr.smithi028.zkmzde (mgr.14197) 373 : cluster [DBG] pgmap v320: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:44.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:44 smithi028 bash[18631]: cluster 2024-04-24T17:22:42.452484+0000 mgr.smithi028.zkmzde (mgr.14197) 373 : cluster [DBG] pgmap v320: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:46.052 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:22:46.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:46 smithi028 bash[18631]: cluster 2024-04-24T17:22:44.453549+0000 mgr.smithi028.zkmzde (mgr.14197) 374 : cluster [DBG] pgmap v321: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:46.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:46 smithi028 bash[18631]: cluster 2024-04-24T17:22:44.453549+0000 mgr.smithi028.zkmzde (mgr.14197) 374 : cluster [DBG] pgmap v321: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:46.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:46 smithi105 bash[20254]: cluster 2024-04-24T17:22:44.453549+0000 mgr.smithi028.zkmzde (mgr.14197) 374 : cluster [DBG] pgmap v321: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:46.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:46 smithi105 bash[20254]: cluster 2024-04-24T17:22:44.453549+0000 mgr.smithi028.zkmzde (mgr.14197) 374 : cluster [DBG] pgmap v321: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:47.235 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:22:47.807 INFO:teuthology.orchestra.run.smithi028.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-24T17:22:48.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:48 smithi105 bash[20254]: cluster 2024-04-24T17:22:46.454557+0000 mgr.smithi028.zkmzde (mgr.14197) 375 : cluster [DBG] pgmap v322: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:48.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:48 smithi105 bash[20254]: cluster 2024-04-24T17:22:46.454557+0000 mgr.smithi028.zkmzde (mgr.14197) 375 : cluster [DBG] pgmap v322: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:48.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:48 smithi105 bash[20254]: audit 2024-04-24T17:22:47.241550+0000 mon.smithi028 (mon.0) 513 : audit [DBG] from='client.? 172.21.15.28:0/2955530361' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:48.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:48 smithi105 bash[20254]: audit 2024-04-24T17:22:47.241550+0000 mon.smithi028 (mon.0) 513 : audit [DBG] from='client.? 172.21.15.28:0/2955530361' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:48.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:48 smithi028 bash[18631]: cluster 2024-04-24T17:22:46.454557+0000 mgr.smithi028.zkmzde (mgr.14197) 375 : cluster [DBG] pgmap v322: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:48.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:48 smithi028 bash[18631]: cluster 2024-04-24T17:22:46.454557+0000 mgr.smithi028.zkmzde (mgr.14197) 375 : cluster [DBG] pgmap v322: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:48.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:48 smithi028 bash[18631]: audit 2024-04-24T17:22:47.241550+0000 mon.smithi028 (mon.0) 513 : audit [DBG] from='client.? 172.21.15.28:0/2955530361' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:48.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:48 smithi028 bash[18631]: audit 2024-04-24T17:22:47.241550+0000 mon.smithi028 (mon.0) 513 : audit [DBG] from='client.? 172.21.15.28:0/2955530361' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:48.808 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:22:50.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:50 smithi105 bash[20254]: cluster 2024-04-24T17:22:48.455582+0000 mgr.smithi028.zkmzde (mgr.14197) 376 : cluster [DBG] pgmap v323: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:50.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:50 smithi105 bash[20254]: cluster 2024-04-24T17:22:48.455582+0000 mgr.smithi028.zkmzde (mgr.14197) 376 : cluster [DBG] pgmap v323: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:50.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:50 smithi028 bash[18631]: cluster 2024-04-24T17:22:48.455582+0000 mgr.smithi028.zkmzde (mgr.14197) 376 : cluster [DBG] pgmap v323: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:50.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:50 smithi028 bash[18631]: cluster 2024-04-24T17:22:48.455582+0000 mgr.smithi028.zkmzde (mgr.14197) 376 : cluster [DBG] pgmap v323: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:52.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:52 smithi105 bash[20254]: cluster 2024-04-24T17:22:50.456572+0000 mgr.smithi028.zkmzde (mgr.14197) 377 : cluster [DBG] pgmap v324: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:52.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:52 smithi105 bash[20254]: cluster 2024-04-24T17:22:50.456572+0000 mgr.smithi028.zkmzde (mgr.14197) 377 : cluster [DBG] pgmap v324: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:52.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:52 smithi028 bash[18631]: cluster 2024-04-24T17:22:50.456572+0000 mgr.smithi028.zkmzde (mgr.14197) 377 : cluster [DBG] pgmap v324: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:52.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:52 smithi028 bash[18631]: cluster 2024-04-24T17:22:50.456572+0000 mgr.smithi028.zkmzde (mgr.14197) 377 : cluster [DBG] pgmap v324: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:53.577 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:22:54.342 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:54 smithi028 bash[18631]: cluster 2024-04-24T17:22:52.457579+0000 mgr.smithi028.zkmzde (mgr.14197) 378 : cluster [DBG] pgmap v325: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:54.342 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:54 smithi028 bash[18631]: cluster 2024-04-24T17:22:52.457579+0000 mgr.smithi028.zkmzde (mgr.14197) 378 : cluster [DBG] pgmap v325: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:54.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:54 smithi105 bash[20254]: cluster 2024-04-24T17:22:52.457579+0000 mgr.smithi028.zkmzde (mgr.14197) 378 : cluster [DBG] pgmap v325: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:54.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:54 smithi105 bash[20254]: cluster 2024-04-24T17:22:52.457579+0000 mgr.smithi028.zkmzde (mgr.14197) 378 : cluster [DBG] pgmap v325: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:54.752 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:22:55.366 INFO:teuthology.orchestra.run.smithi028.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-24T17:22:55.367 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:55 smithi028 bash[18631]: audit 2024-04-24T17:22:54.527646+0000 mon.smithi028 (mon.0) 514 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:22:55.368 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:55 smithi028 bash[18631]: audit 2024-04-24T17:22:54.527646+0000 mon.smithi028 (mon.0) 514 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:22:55.368 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:55 smithi028 bash[18631]: audit 2024-04-24T17:22:54.759259+0000 mon.smithi028 (mon.0) 515 : audit [DBG] from='client.? 172.21.15.28:0/2402842653' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:55.368 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:55 smithi028 bash[18631]: audit 2024-04-24T17:22:54.759259+0000 mon.smithi028 (mon.0) 515 : audit [DBG] from='client.? 172.21.15.28:0/2402842653' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:55.368 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:55 smithi028 bash[18631]: audit 2024-04-24T17:22:54.999809+0000 mon.smithi028 (mon.0) 516 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:22:55.368 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:55 smithi028 bash[18631]: audit 2024-04-24T17:22:54.999809+0000 mon.smithi028 (mon.0) 516 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:22:55.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:55 smithi105 bash[20254]: audit 2024-04-24T17:22:54.527646+0000 mon.smithi028 (mon.0) 514 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:22:55.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:55 smithi105 bash[20254]: audit 2024-04-24T17:22:54.527646+0000 mon.smithi028 (mon.0) 514 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:22:55.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:55 smithi105 bash[20254]: audit 2024-04-24T17:22:54.759259+0000 mon.smithi028 (mon.0) 515 : audit [DBG] from='client.? 172.21.15.28:0/2402842653' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:55.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:55 smithi105 bash[20254]: audit 2024-04-24T17:22:54.759259+0000 mon.smithi028 (mon.0) 515 : audit [DBG] from='client.? 172.21.15.28:0/2402842653' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:22:55.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:55 smithi105 bash[20254]: audit 2024-04-24T17:22:54.999809+0000 mon.smithi028 (mon.0) 516 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:22:55.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:55 smithi105 bash[20254]: audit 2024-04-24T17:22:54.999809+0000 mon.smithi028 (mon.0) 516 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:22:56.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:56 smithi028 bash[18631]: cluster 2024-04-24T17:22:54.458077+0000 mgr.smithi028.zkmzde (mgr.14197) 379 : cluster [DBG] pgmap v326: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:56.279 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:56 smithi028 bash[18631]: cluster 2024-04-24T17:22:54.458077+0000 mgr.smithi028.zkmzde (mgr.14197) 379 : cluster [DBG] pgmap v326: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:56.369 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:22:56.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:56 smithi105 bash[20254]: cluster 2024-04-24T17:22:54.458077+0000 mgr.smithi028.zkmzde (mgr.14197) 379 : cluster [DBG] pgmap v326: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:56.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:56 smithi105 bash[20254]: cluster 2024-04-24T17:22:54.458077+0000 mgr.smithi028.zkmzde (mgr.14197) 379 : cluster [DBG] pgmap v326: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:58.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:58 smithi105 bash[20254]: cluster 2024-04-24T17:22:56.459013+0000 mgr.smithi028.zkmzde (mgr.14197) 380 : cluster [DBG] pgmap v327: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:58.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:58 smithi105 bash[20254]: cluster 2024-04-24T17:22:56.459013+0000 mgr.smithi028.zkmzde (mgr.14197) 380 : cluster [DBG] pgmap v327: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:58.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:58 smithi105 bash[20254]: audit 2024-04-24T17:22:57.834322+0000 mon.smithi028 (mon.0) 517 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:58.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:22:58 smithi105 bash[20254]: audit 2024-04-24T17:22:57.834322+0000 mon.smithi028 (mon.0) 517 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:58.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:58 smithi028 bash[18631]: cluster 2024-04-24T17:22:56.459013+0000 mgr.smithi028.zkmzde (mgr.14197) 380 : cluster [DBG] pgmap v327: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:58.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:58 smithi028 bash[18631]: cluster 2024-04-24T17:22:56.459013+0000 mgr.smithi028.zkmzde (mgr.14197) 380 : cluster [DBG] pgmap v327: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:22:58.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:58 smithi028 bash[18631]: audit 2024-04-24T17:22:57.834322+0000 mon.smithi028 (mon.0) 517 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:22:58.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:22:58 smithi028 bash[18631]: audit 2024-04-24T17:22:57.834322+0000 mon.smithi028 (mon.0) 517 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:00.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:00 smithi105 bash[20254]: cluster 2024-04-24T17:22:58.459955+0000 mgr.smithi028.zkmzde (mgr.14197) 381 : cluster [DBG] pgmap v328: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:00.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:00 smithi105 bash[20254]: cluster 2024-04-24T17:22:58.459955+0000 mgr.smithi028.zkmzde (mgr.14197) 381 : cluster [DBG] pgmap v328: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:00.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:00 smithi028 bash[18631]: cluster 2024-04-24T17:22:58.459955+0000 mgr.smithi028.zkmzde (mgr.14197) 381 : cluster [DBG] pgmap v328: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:00.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:00 smithi028 bash[18631]: cluster 2024-04-24T17:22:58.459955+0000 mgr.smithi028.zkmzde (mgr.14197) 381 : cluster [DBG] pgmap v328: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:01.073 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:23:02.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:02 smithi105 bash[20254]: cluster 2024-04-24T17:23:00.460890+0000 mgr.smithi028.zkmzde (mgr.14197) 382 : cluster [DBG] pgmap v329: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:02.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:02 smithi105 bash[20254]: cluster 2024-04-24T17:23:00.460890+0000 mgr.smithi028.zkmzde (mgr.14197) 382 : cluster [DBG] pgmap v329: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:02.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:02 smithi028 bash[18631]: cluster 2024-04-24T17:23:00.460890+0000 mgr.smithi028.zkmzde (mgr.14197) 382 : cluster [DBG] pgmap v329: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:02.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:02 smithi028 bash[18631]: cluster 2024-04-24T17:23:00.460890+0000 mgr.smithi028.zkmzde (mgr.14197) 382 : cluster [DBG] pgmap v329: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:02.606 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:23:03.231 INFO:teuthology.orchestra.run.smithi028.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-24T17:23:03.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.266464+0000 mon.smithi028 (mon.0) 518 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi105", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:23:03.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.266464+0000 mon.smithi028 (mon.0) 518 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi105", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:23:03.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.291013+0000 mon.smithi028 (mon.0) 519 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi028", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:23:03.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.291013+0000 mon.smithi028 (mon.0) 519 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi028", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:23:03.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.292035+0000 mon.smithi028 (mon.0) 520 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:23:03.521 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.292035+0000 mon.smithi028 (mon.0) 520 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:23:03.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.292841+0000 mon.smithi028 (mon.0) 521 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:23:03.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.292841+0000 mon.smithi028 (mon.0) 521 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:23:03.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: cluster 2024-04-24T17:23:02.294319+0000 mgr.smithi028.zkmzde (mgr.14197) 383 : cluster [DBG] pgmap v330: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:03.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: cluster 2024-04-24T17:23:02.294319+0000 mgr.smithi028.zkmzde (mgr.14197) 383 : cluster [DBG] pgmap v330: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:03.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: cluster 2024-04-24T17:23:02.294797+0000 mgr.smithi028.zkmzde (mgr.14197) 384 : cluster [DBG] pgmap v331: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:03.522 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: cluster 2024-04-24T17:23:02.294797+0000 mgr.smithi028.zkmzde (mgr.14197) 384 : cluster [DBG] pgmap v331: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:03.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.299942+0000 mon.smithi028 (mon.0) 522 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:23:03.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.299942+0000 mon.smithi028 (mon.0) 522 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:23:03.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.303264+0000 mon.smithi028 (mon.0) 523 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:23:03.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.303264+0000 mon.smithi028 (mon.0) 523 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:23:03.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.612829+0000 mon.smithi028 (mon.0) 524 : audit [DBG] from='client.? 172.21.15.28:0/810523721' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:03.523 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:03 smithi105 bash[20254]: audit 2024-04-24T17:23:02.612829+0000 mon.smithi028 (mon.0) 524 : audit [DBG] from='client.? 172.21.15.28:0/810523721' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:03.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.266464+0000 mon.smithi028 (mon.0) 518 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi105", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:23:03.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.266464+0000 mon.smithi028 (mon.0) 518 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi105", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:23:03.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.291013+0000 mon.smithi028 (mon.0) 519 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi028", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:23:03.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.291013+0000 mon.smithi028 (mon.0) 519 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config rm", "who": "osd/host:smithi028", "name": "osd_memory_target"}]: dispatch 2024-04-24T17:23:03.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.292035+0000 mon.smithi028 (mon.0) 520 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:23:03.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.292035+0000 mon.smithi028 (mon.0) 520 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:23:03.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.292841+0000 mon.smithi028 (mon.0) 521 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:23:03.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.292841+0000 mon.smithi028 (mon.0) 521 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:23:03.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: cluster 2024-04-24T17:23:02.294319+0000 mgr.smithi028.zkmzde (mgr.14197) 383 : cluster [DBG] pgmap v330: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:03.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: cluster 2024-04-24T17:23:02.294319+0000 mgr.smithi028.zkmzde (mgr.14197) 383 : cluster [DBG] pgmap v330: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:03.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: cluster 2024-04-24T17:23:02.294797+0000 mgr.smithi028.zkmzde (mgr.14197) 384 : cluster [DBG] pgmap v331: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:03.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: cluster 2024-04-24T17:23:02.294797+0000 mgr.smithi028.zkmzde (mgr.14197) 384 : cluster [DBG] pgmap v331: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:03.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.299942+0000 mon.smithi028 (mon.0) 522 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:23:03.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.299942+0000 mon.smithi028 (mon.0) 522 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:23:03.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.303264+0000 mon.smithi028 (mon.0) 523 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:23:03.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.303264+0000 mon.smithi028 (mon.0) 523 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:23:03.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.612829+0000 mon.smithi028 (mon.0) 524 : audit [DBG] from='client.? 172.21.15.28:0/810523721' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:03.530 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:03 smithi028 bash[18631]: audit 2024-04-24T17:23:02.612829+0000 mon.smithi028 (mon.0) 524 : audit [DBG] from='client.? 172.21.15.28:0/810523721' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:04.232 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:23:05.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:05 smithi105 bash[20254]: cluster 2024-04-24T17:23:04.295808+0000 mgr.smithi028.zkmzde (mgr.14197) 385 : cluster [DBG] pgmap v332: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:05.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:05 smithi105 bash[20254]: cluster 2024-04-24T17:23:04.295808+0000 mgr.smithi028.zkmzde (mgr.14197) 385 : cluster [DBG] pgmap v332: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:05.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:05 smithi028 bash[18631]: cluster 2024-04-24T17:23:04.295808+0000 mgr.smithi028.zkmzde (mgr.14197) 385 : cluster [DBG] pgmap v332: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:05.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:05 smithi028 bash[18631]: cluster 2024-04-24T17:23:04.295808+0000 mgr.smithi028.zkmzde (mgr.14197) 385 : cluster [DBG] pgmap v332: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:07.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:07 smithi105 bash[20254]: cluster 2024-04-24T17:23:06.296898+0000 mgr.smithi028.zkmzde (mgr.14197) 386 : cluster [DBG] pgmap v333: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:07.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:07 smithi105 bash[20254]: cluster 2024-04-24T17:23:06.296898+0000 mgr.smithi028.zkmzde (mgr.14197) 386 : cluster [DBG] pgmap v333: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:07.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:07 smithi028 bash[18631]: cluster 2024-04-24T17:23:06.296898+0000 mgr.smithi028.zkmzde (mgr.14197) 386 : cluster [DBG] pgmap v333: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:07.779 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:07 smithi028 bash[18631]: cluster 2024-04-24T17:23:06.296898+0000 mgr.smithi028.zkmzde (mgr.14197) 386 : cluster [DBG] pgmap v333: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:09.009 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:23:09.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:09 smithi105 bash[20254]: cluster 2024-04-24T17:23:08.297911+0000 mgr.smithi028.zkmzde (mgr.14197) 387 : cluster [DBG] pgmap v334: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:09.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:09 smithi105 bash[20254]: cluster 2024-04-24T17:23:08.297911+0000 mgr.smithi028.zkmzde (mgr.14197) 387 : cluster [DBG] pgmap v334: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:09.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:09 smithi028 bash[18631]: cluster 2024-04-24T17:23:08.297911+0000 mgr.smithi028.zkmzde (mgr.14197) 387 : cluster [DBG] pgmap v334: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:09.779 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:09 smithi028 bash[18631]: cluster 2024-04-24T17:23:08.297911+0000 mgr.smithi028.zkmzde (mgr.14197) 387 : cluster [DBG] pgmap v334: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:10.256 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:23:10.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:10 smithi028 bash[18631]: audit 2024-04-24T17:23:10.262765+0000 mon.smithi028 (mon.0) 525 : audit [DBG] from='client.? 172.21.15.28:0/3394025045' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:10.529 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:10 smithi028 bash[18631]: audit 2024-04-24T17:23:10.262765+0000 mon.smithi028 (mon.0) 525 : audit [DBG] from='client.? 172.21.15.28:0/3394025045' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:10.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:10 smithi105 bash[20254]: audit 2024-04-24T17:23:10.262765+0000 mon.smithi028 (mon.0) 525 : audit [DBG] from='client.? 172.21.15.28:0/3394025045' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:10.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:10 smithi105 bash[20254]: audit 2024-04-24T17:23:10.262765+0000 mon.smithi028 (mon.0) 525 : audit [DBG] from='client.? 172.21.15.28:0/3394025045' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:10.879 INFO:teuthology.orchestra.run.smithi028.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-24T17:23:11.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:11 smithi105 bash[20254]: cluster 2024-04-24T17:23:10.298410+0000 mgr.smithi028.zkmzde (mgr.14197) 388 : cluster [DBG] pgmap v335: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:11.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:11 smithi105 bash[20254]: cluster 2024-04-24T17:23:10.298410+0000 mgr.smithi028.zkmzde (mgr.14197) 388 : cluster [DBG] pgmap v335: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:11.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:11 smithi028 bash[18631]: cluster 2024-04-24T17:23:10.298410+0000 mgr.smithi028.zkmzde (mgr.14197) 388 : cluster [DBG] pgmap v335: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:11.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:11 smithi028 bash[18631]: cluster 2024-04-24T17:23:10.298410+0000 mgr.smithi028.zkmzde (mgr.14197) 388 : cluster [DBG] pgmap v335: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:11.880 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:23:13.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:13 smithi105 bash[20254]: cluster 2024-04-24T17:23:12.299335+0000 mgr.smithi028.zkmzde (mgr.14197) 389 : cluster [DBG] pgmap v336: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:13.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:13 smithi105 bash[20254]: cluster 2024-04-24T17:23:12.299335+0000 mgr.smithi028.zkmzde (mgr.14197) 389 : cluster [DBG] pgmap v336: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:13.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:13 smithi105 bash[20254]: audit 2024-04-24T17:23:12.834645+0000 mon.smithi028 (mon.0) 526 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:13.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:13 smithi105 bash[20254]: audit 2024-04-24T17:23:12.834645+0000 mon.smithi028 (mon.0) 526 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:13.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:13 smithi028 bash[18631]: cluster 2024-04-24T17:23:12.299335+0000 mgr.smithi028.zkmzde (mgr.14197) 389 : cluster [DBG] pgmap v336: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:13.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:13 smithi028 bash[18631]: cluster 2024-04-24T17:23:12.299335+0000 mgr.smithi028.zkmzde (mgr.14197) 389 : cluster [DBG] pgmap v336: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:13.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:13 smithi028 bash[18631]: audit 2024-04-24T17:23:12.834645+0000 mon.smithi028 (mon.0) 526 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:13.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:13 smithi028 bash[18631]: audit 2024-04-24T17:23:12.834645+0000 mon.smithi028 (mon.0) 526 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:14.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:14 smithi105 bash[20254]: cluster 2024-04-24T17:23:14.300330+0000 mgr.smithi028.zkmzde (mgr.14197) 390 : cluster [DBG] pgmap v337: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:14.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:14 smithi105 bash[20254]: cluster 2024-04-24T17:23:14.300330+0000 mgr.smithi028.zkmzde (mgr.14197) 390 : cluster [DBG] pgmap v337: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:14.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:14 smithi028 bash[18631]: cluster 2024-04-24T17:23:14.300330+0000 mgr.smithi028.zkmzde (mgr.14197) 390 : cluster [DBG] pgmap v337: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:14.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:14 smithi028 bash[18631]: cluster 2024-04-24T17:23:14.300330+0000 mgr.smithi028.zkmzde (mgr.14197) 390 : cluster [DBG] pgmap v337: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:16.650 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:23:17.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:17 smithi105 bash[20254]: cluster 2024-04-24T17:23:16.301307+0000 mgr.smithi028.zkmzde (mgr.14197) 391 : cluster [DBG] pgmap v338: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:17.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:17 smithi105 bash[20254]: cluster 2024-04-24T17:23:16.301307+0000 mgr.smithi028.zkmzde (mgr.14197) 391 : cluster [DBG] pgmap v338: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:17.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:17 smithi028 bash[18631]: cluster 2024-04-24T17:23:16.301307+0000 mgr.smithi028.zkmzde (mgr.14197) 391 : cluster [DBG] pgmap v338: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:17.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:17 smithi028 bash[18631]: cluster 2024-04-24T17:23:16.301307+0000 mgr.smithi028.zkmzde (mgr.14197) 391 : cluster [DBG] pgmap v338: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:17.894 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:23:18.517 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:18 smithi028 bash[18631]: audit 2024-04-24T17:23:17.900942+0000 mon.smithi028 (mon.0) 527 : audit [DBG] from='client.? 172.21.15.28:0/2225720809' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:18.517 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:18 smithi028 bash[18631]: audit 2024-04-24T17:23:17.900942+0000 mon.smithi028 (mon.0) 527 : audit [DBG] from='client.? 172.21.15.28:0/2225720809' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:18.518 INFO:teuthology.orchestra.run.smithi028.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-24T17:23:18.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:18 smithi105 bash[20254]: audit 2024-04-24T17:23:17.900942+0000 mon.smithi028 (mon.0) 527 : audit [DBG] from='client.? 172.21.15.28:0/2225720809' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:18.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:18 smithi105 bash[20254]: audit 2024-04-24T17:23:17.900942+0000 mon.smithi028 (mon.0) 527 : audit [DBG] from='client.? 172.21.15.28:0/2225720809' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:19.519 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:23:19.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:19 smithi028 bash[18631]: cluster 2024-04-24T17:23:18.302233+0000 mgr.smithi028.zkmzde (mgr.14197) 392 : cluster [DBG] pgmap v339: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:19.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:19 smithi028 bash[18631]: cluster 2024-04-24T17:23:18.302233+0000 mgr.smithi028.zkmzde (mgr.14197) 392 : cluster [DBG] pgmap v339: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:19.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:19 smithi105 bash[20254]: cluster 2024-04-24T17:23:18.302233+0000 mgr.smithi028.zkmzde (mgr.14197) 392 : cluster [DBG] pgmap v339: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:19.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:19 smithi105 bash[20254]: cluster 2024-04-24T17:23:18.302233+0000 mgr.smithi028.zkmzde (mgr.14197) 392 : cluster [DBG] pgmap v339: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:21.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:21 smithi105 bash[20254]: cluster 2024-04-24T17:23:20.303194+0000 mgr.smithi028.zkmzde (mgr.14197) 393 : cluster [DBG] pgmap v340: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:21.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:21 smithi105 bash[20254]: cluster 2024-04-24T17:23:20.303194+0000 mgr.smithi028.zkmzde (mgr.14197) 393 : cluster [DBG] pgmap v340: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:21.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:21 smithi028 bash[18631]: cluster 2024-04-24T17:23:20.303194+0000 mgr.smithi028.zkmzde (mgr.14197) 393 : cluster [DBG] pgmap v340: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:21.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:21 smithi028 bash[18631]: cluster 2024-04-24T17:23:20.303194+0000 mgr.smithi028.zkmzde (mgr.14197) 393 : cluster [DBG] pgmap v340: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:23.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:23 smithi105 bash[20254]: cluster 2024-04-24T17:23:22.303936+0000 mgr.smithi028.zkmzde (mgr.14197) 394 : cluster [DBG] pgmap v341: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:23.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:23 smithi105 bash[20254]: cluster 2024-04-24T17:23:22.303936+0000 mgr.smithi028.zkmzde (mgr.14197) 394 : cluster [DBG] pgmap v341: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:23.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:23 smithi028 bash[18631]: cluster 2024-04-24T17:23:22.303936+0000 mgr.smithi028.zkmzde (mgr.14197) 394 : cluster [DBG] pgmap v341: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:23.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:23 smithi028 bash[18631]: cluster 2024-04-24T17:23:22.303936+0000 mgr.smithi028.zkmzde (mgr.14197) 394 : cluster [DBG] pgmap v341: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:24.299 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:23:24.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:24 smithi105 bash[20254]: cluster 2024-04-24T17:23:24.304574+0000 mgr.smithi028.zkmzde (mgr.14197) 395 : cluster [DBG] pgmap v342: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:24.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:24 smithi105 bash[20254]: cluster 2024-04-24T17:23:24.304574+0000 mgr.smithi028.zkmzde (mgr.14197) 395 : cluster [DBG] pgmap v342: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:24.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:24 smithi028 bash[18631]: cluster 2024-04-24T17:23:24.304574+0000 mgr.smithi028.zkmzde (mgr.14197) 395 : cluster [DBG] pgmap v342: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:24.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:24 smithi028 bash[18631]: cluster 2024-04-24T17:23:24.304574+0000 mgr.smithi028.zkmzde (mgr.14197) 395 : cluster [DBG] pgmap v342: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:25.497 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:23:25.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:25 smithi028 bash[18631]: audit 2024-04-24T17:23:25.503951+0000 mon.smithi028 (mon.0) 528 : audit [DBG] from='client.? 172.21.15.28:0/244022326' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:25.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:25 smithi028 bash[18631]: audit 2024-04-24T17:23:25.503951+0000 mon.smithi028 (mon.0) 528 : audit [DBG] from='client.? 172.21.15.28:0/244022326' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:26.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:25 smithi105 bash[20254]: audit 2024-04-24T17:23:25.503951+0000 mon.smithi028 (mon.0) 528 : audit [DBG] from='client.? 172.21.15.28:0/244022326' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:26.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:25 smithi105 bash[20254]: audit 2024-04-24T17:23:25.503951+0000 mon.smithi028 (mon.0) 528 : audit [DBG] from='client.? 172.21.15.28:0/244022326' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:26.063 INFO:teuthology.orchestra.run.smithi028.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-24T17:23:27.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:26 smithi105 bash[20254]: cluster 2024-04-24T17:23:26.305586+0000 mgr.smithi028.zkmzde (mgr.14197) 396 : cluster [DBG] pgmap v343: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:27.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:26 smithi105 bash[20254]: cluster 2024-04-24T17:23:26.305586+0000 mgr.smithi028.zkmzde (mgr.14197) 396 : cluster [DBG] pgmap v343: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:27.028 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:26 smithi028 bash[18631]: cluster 2024-04-24T17:23:26.305586+0000 mgr.smithi028.zkmzde (mgr.14197) 396 : cluster [DBG] pgmap v343: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:27.028 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:26 smithi028 bash[18631]: cluster 2024-04-24T17:23:26.305586+0000 mgr.smithi028.zkmzde (mgr.14197) 396 : cluster [DBG] pgmap v343: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:27.064 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:23:28.179 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:27 smithi028 bash[18631]: audit 2024-04-24T17:23:27.835142+0000 mon.smithi028 (mon.0) 529 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:28.180 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:27 smithi028 bash[18631]: audit 2024-04-24T17:23:27.835142+0000 mon.smithi028 (mon.0) 529 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:28.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:27 smithi105 bash[20254]: audit 2024-04-24T17:23:27.835142+0000 mon.smithi028 (mon.0) 529 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:28.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:27 smithi105 bash[20254]: audit 2024-04-24T17:23:27.835142+0000 mon.smithi028 (mon.0) 529 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:29.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:28 smithi105 bash[20254]: cluster 2024-04-24T17:23:28.306539+0000 mgr.smithi028.zkmzde (mgr.14197) 397 : cluster [DBG] pgmap v344: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:29.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:28 smithi105 bash[20254]: cluster 2024-04-24T17:23:28.306539+0000 mgr.smithi028.zkmzde (mgr.14197) 397 : cluster [DBG] pgmap v344: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:29.278 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:28 smithi028 bash[18631]: cluster 2024-04-24T17:23:28.306539+0000 mgr.smithi028.zkmzde (mgr.14197) 397 : cluster [DBG] pgmap v344: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:29.278 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:28 smithi028 bash[18631]: cluster 2024-04-24T17:23:28.306539+0000 mgr.smithi028.zkmzde (mgr.14197) 397 : cluster [DBG] pgmap v344: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:31.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:31 smithi028 bash[18631]: cluster 2024-04-24T17:23:30.307605+0000 mgr.smithi028.zkmzde (mgr.14197) 398 : cluster [DBG] pgmap v345: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:31.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:31 smithi028 bash[18631]: cluster 2024-04-24T17:23:30.307605+0000 mgr.smithi028.zkmzde (mgr.14197) 398 : cluster [DBG] pgmap v345: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:31.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:31 smithi105 bash[20254]: cluster 2024-04-24T17:23:30.307605+0000 mgr.smithi028.zkmzde (mgr.14197) 398 : cluster [DBG] pgmap v345: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:31.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:31 smithi105 bash[20254]: cluster 2024-04-24T17:23:30.307605+0000 mgr.smithi028.zkmzde (mgr.14197) 398 : cluster [DBG] pgmap v345: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:31.837 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:23:33.025 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:23:33.679 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:33 smithi028 bash[18631]: cluster 2024-04-24T17:23:32.308629+0000 mgr.smithi028.zkmzde (mgr.14197) 399 : cluster [DBG] pgmap v346: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:33.679 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:33 smithi028 bash[18631]: cluster 2024-04-24T17:23:32.308629+0000 mgr.smithi028.zkmzde (mgr.14197) 399 : cluster [DBG] pgmap v346: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:33.679 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:33 smithi028 bash[18631]: audit 2024-04-24T17:23:33.032153+0000 mon.smithi028 (mon.0) 530 : audit [DBG] from='client.? 172.21.15.28:0/2046695239' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:33.680 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:33 smithi028 bash[18631]: audit 2024-04-24T17:23:33.032153+0000 mon.smithi028 (mon.0) 530 : audit [DBG] from='client.? 172.21.15.28:0/2046695239' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:33.680 INFO:teuthology.orchestra.run.smithi028.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-24T17:23:33.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:33 smithi105 bash[20254]: cluster 2024-04-24T17:23:32.308629+0000 mgr.smithi028.zkmzde (mgr.14197) 399 : cluster [DBG] pgmap v346: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:33.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:33 smithi105 bash[20254]: cluster 2024-04-24T17:23:32.308629+0000 mgr.smithi028.zkmzde (mgr.14197) 399 : cluster [DBG] pgmap v346: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:33.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:33 smithi105 bash[20254]: audit 2024-04-24T17:23:33.032153+0000 mon.smithi028 (mon.0) 530 : audit [DBG] from='client.? 172.21.15.28:0/2046695239' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:33.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:33 smithi105 bash[20254]: audit 2024-04-24T17:23:33.032153+0000 mon.smithi028 (mon.0) 530 : audit [DBG] from='client.? 172.21.15.28:0/2046695239' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:34.681 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:23:35.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:35 smithi105 bash[20254]: cluster 2024-04-24T17:23:34.309652+0000 mgr.smithi028.zkmzde (mgr.14197) 400 : cluster [DBG] pgmap v347: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:35.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:35 smithi105 bash[20254]: cluster 2024-04-24T17:23:34.309652+0000 mgr.smithi028.zkmzde (mgr.14197) 400 : cluster [DBG] pgmap v347: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:35.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:35 smithi028 bash[18631]: cluster 2024-04-24T17:23:34.309652+0000 mgr.smithi028.zkmzde (mgr.14197) 400 : cluster [DBG] pgmap v347: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:35.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:35 smithi028 bash[18631]: cluster 2024-04-24T17:23:34.309652+0000 mgr.smithi028.zkmzde (mgr.14197) 400 : cluster [DBG] pgmap v347: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:37.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:37 smithi105 bash[20254]: cluster 2024-04-24T17:23:36.310618+0000 mgr.smithi028.zkmzde (mgr.14197) 401 : cluster [DBG] pgmap v348: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:37.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:37 smithi105 bash[20254]: cluster 2024-04-24T17:23:36.310618+0000 mgr.smithi028.zkmzde (mgr.14197) 401 : cluster [DBG] pgmap v348: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:37.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:37 smithi028 bash[18631]: cluster 2024-04-24T17:23:36.310618+0000 mgr.smithi028.zkmzde (mgr.14197) 401 : cluster [DBG] pgmap v348: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:37.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:37 smithi028 bash[18631]: cluster 2024-04-24T17:23:36.310618+0000 mgr.smithi028.zkmzde (mgr.14197) 401 : cluster [DBG] pgmap v348: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:38.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:38 smithi028 bash[18631]: cluster 2024-04-24T17:23:38.311650+0000 mgr.smithi028.zkmzde (mgr.14197) 402 : cluster [DBG] pgmap v349: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:38.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:38 smithi028 bash[18631]: cluster 2024-04-24T17:23:38.311650+0000 mgr.smithi028.zkmzde (mgr.14197) 402 : cluster [DBG] pgmap v349: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:38.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:38 smithi105 bash[20254]: cluster 2024-04-24T17:23:38.311650+0000 mgr.smithi028.zkmzde (mgr.14197) 402 : cluster [DBG] pgmap v349: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:38.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:38 smithi105 bash[20254]: cluster 2024-04-24T17:23:38.311650+0000 mgr.smithi028.zkmzde (mgr.14197) 402 : cluster [DBG] pgmap v349: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:39.455 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:23:40.603 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:23:41.181 INFO:teuthology.orchestra.run.smithi028.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-24T17:23:41.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:41 smithi028 bash[18631]: cluster 2024-04-24T17:23:40.312156+0000 mgr.smithi028.zkmzde (mgr.14197) 403 : cluster [DBG] pgmap v350: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:41.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:41 smithi028 bash[18631]: cluster 2024-04-24T17:23:40.312156+0000 mgr.smithi028.zkmzde (mgr.14197) 403 : cluster [DBG] pgmap v350: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:41.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:41 smithi028 bash[18631]: audit 2024-04-24T17:23:40.610216+0000 mon.smithi028 (mon.0) 531 : audit [DBG] from='client.? 172.21.15.28:0/2845933056' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:41.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:41 smithi028 bash[18631]: audit 2024-04-24T17:23:40.610216+0000 mon.smithi028 (mon.0) 531 : audit [DBG] from='client.? 172.21.15.28:0/2845933056' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:41.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:41 smithi105 bash[20254]: cluster 2024-04-24T17:23:40.312156+0000 mgr.smithi028.zkmzde (mgr.14197) 403 : cluster [DBG] pgmap v350: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:41.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:41 smithi105 bash[20254]: cluster 2024-04-24T17:23:40.312156+0000 mgr.smithi028.zkmzde (mgr.14197) 403 : cluster [DBG] pgmap v350: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:41.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:41 smithi105 bash[20254]: audit 2024-04-24T17:23:40.610216+0000 mon.smithi028 (mon.0) 531 : audit [DBG] from='client.? 172.21.15.28:0/2845933056' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:41.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:41 smithi105 bash[20254]: audit 2024-04-24T17:23:40.610216+0000 mon.smithi028 (mon.0) 531 : audit [DBG] from='client.? 172.21.15.28:0/2845933056' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:42.182 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:23:43.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:43 smithi105 bash[20254]: cluster 2024-04-24T17:23:42.313096+0000 mgr.smithi028.zkmzde (mgr.14197) 404 : cluster [DBG] pgmap v351: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:43.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:43 smithi105 bash[20254]: cluster 2024-04-24T17:23:42.313096+0000 mgr.smithi028.zkmzde (mgr.14197) 404 : cluster [DBG] pgmap v351: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:43.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:43 smithi105 bash[20254]: audit 2024-04-24T17:23:42.835512+0000 mon.smithi028 (mon.0) 532 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:43.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:43 smithi105 bash[20254]: audit 2024-04-24T17:23:42.835512+0000 mon.smithi028 (mon.0) 532 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:43.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:43 smithi028 bash[18631]: cluster 2024-04-24T17:23:42.313096+0000 mgr.smithi028.zkmzde (mgr.14197) 404 : cluster [DBG] pgmap v351: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:43.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:43 smithi028 bash[18631]: cluster 2024-04-24T17:23:42.313096+0000 mgr.smithi028.zkmzde (mgr.14197) 404 : cluster [DBG] pgmap v351: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:43.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:43 smithi028 bash[18631]: audit 2024-04-24T17:23:42.835512+0000 mon.smithi028 (mon.0) 532 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:43.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:43 smithi028 bash[18631]: audit 2024-04-24T17:23:42.835512+0000 mon.smithi028 (mon.0) 532 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:45.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:45 smithi105 bash[20254]: cluster 2024-04-24T17:23:44.314096+0000 mgr.smithi028.zkmzde (mgr.14197) 405 : cluster [DBG] pgmap v352: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:45.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:45 smithi105 bash[20254]: cluster 2024-04-24T17:23:44.314096+0000 mgr.smithi028.zkmzde (mgr.14197) 405 : cluster [DBG] pgmap v352: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:45.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:45 smithi028 bash[18631]: cluster 2024-04-24T17:23:44.314096+0000 mgr.smithi028.zkmzde (mgr.14197) 405 : cluster [DBG] pgmap v352: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:45.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:45 smithi028 bash[18631]: cluster 2024-04-24T17:23:44.314096+0000 mgr.smithi028.zkmzde (mgr.14197) 405 : cluster [DBG] pgmap v352: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:46.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:46 smithi105 bash[20254]: cluster 2024-04-24T17:23:46.315181+0000 mgr.smithi028.zkmzde (mgr.14197) 406 : cluster [DBG] pgmap v353: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:46.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:46 smithi105 bash[20254]: cluster 2024-04-24T17:23:46.315181+0000 mgr.smithi028.zkmzde (mgr.14197) 406 : cluster [DBG] pgmap v353: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:46.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:46 smithi028 bash[18631]: cluster 2024-04-24T17:23:46.315181+0000 mgr.smithi028.zkmzde (mgr.14197) 406 : cluster [DBG] pgmap v353: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:46.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:46 smithi028 bash[18631]: cluster 2024-04-24T17:23:46.315181+0000 mgr.smithi028.zkmzde (mgr.14197) 406 : cluster [DBG] pgmap v353: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:46.956 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:23:48.153 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:23:48.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:48 smithi105 bash[20254]: audit 2024-04-24T17:23:48.160761+0000 mon.smithi028 (mon.0) 533 : audit [DBG] from='client.? 172.21.15.28:0/4087966975' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:48.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:48 smithi105 bash[20254]: audit 2024-04-24T17:23:48.160761+0000 mon.smithi028 (mon.0) 533 : audit [DBG] from='client.? 172.21.15.28:0/4087966975' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:48.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:48 smithi028 bash[18631]: audit 2024-04-24T17:23:48.160761+0000 mon.smithi028 (mon.0) 533 : audit [DBG] from='client.? 172.21.15.28:0/4087966975' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:48.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:48 smithi028 bash[18631]: audit 2024-04-24T17:23:48.160761+0000 mon.smithi028 (mon.0) 533 : audit [DBG] from='client.? 172.21.15.28:0/4087966975' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:48.784 INFO:teuthology.orchestra.run.smithi028.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-24T17:23:49.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:49 smithi105 bash[20254]: cluster 2024-04-24T17:23:48.316240+0000 mgr.smithi028.zkmzde (mgr.14197) 407 : cluster [DBG] pgmap v354: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:49.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:49 smithi105 bash[20254]: cluster 2024-04-24T17:23:48.316240+0000 mgr.smithi028.zkmzde (mgr.14197) 407 : cluster [DBG] pgmap v354: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:49.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:49 smithi028 bash[18631]: cluster 2024-04-24T17:23:48.316240+0000 mgr.smithi028.zkmzde (mgr.14197) 407 : cluster [DBG] pgmap v354: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:49.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:49 smithi028 bash[18631]: cluster 2024-04-24T17:23:48.316240+0000 mgr.smithi028.zkmzde (mgr.14197) 407 : cluster [DBG] pgmap v354: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:49.785 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:23:51.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:51 smithi028 bash[18631]: cluster 2024-04-24T17:23:50.317276+0000 mgr.smithi028.zkmzde (mgr.14197) 408 : cluster [DBG] pgmap v355: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:51.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:51 smithi028 bash[18631]: cluster 2024-04-24T17:23:50.317276+0000 mgr.smithi028.zkmzde (mgr.14197) 408 : cluster [DBG] pgmap v355: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:51.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:51 smithi105 bash[20254]: cluster 2024-04-24T17:23:50.317276+0000 mgr.smithi028.zkmzde (mgr.14197) 408 : cluster [DBG] pgmap v355: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:51.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:51 smithi105 bash[20254]: cluster 2024-04-24T17:23:50.317276+0000 mgr.smithi028.zkmzde (mgr.14197) 408 : cluster [DBG] pgmap v355: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:53.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:53 smithi105 bash[20254]: cluster 2024-04-24T17:23:52.318322+0000 mgr.smithi028.zkmzde (mgr.14197) 409 : cluster [DBG] pgmap v356: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:53.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:53 smithi105 bash[20254]: cluster 2024-04-24T17:23:52.318322+0000 mgr.smithi028.zkmzde (mgr.14197) 409 : cluster [DBG] pgmap v356: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:53.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:53 smithi028 bash[18631]: cluster 2024-04-24T17:23:52.318322+0000 mgr.smithi028.zkmzde (mgr.14197) 409 : cluster [DBG] pgmap v356: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:53.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:53 smithi028 bash[18631]: cluster 2024-04-24T17:23:52.318322+0000 mgr.smithi028.zkmzde (mgr.14197) 409 : cluster [DBG] pgmap v356: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:54.565 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:23:54.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:54 smithi105 bash[20254]: cluster 2024-04-24T17:23:54.319365+0000 mgr.smithi028.zkmzde (mgr.14197) 410 : cluster [DBG] pgmap v357: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:54.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:54 smithi105 bash[20254]: cluster 2024-04-24T17:23:54.319365+0000 mgr.smithi028.zkmzde (mgr.14197) 410 : cluster [DBG] pgmap v357: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:54.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:54 smithi028 bash[18631]: cluster 2024-04-24T17:23:54.319365+0000 mgr.smithi028.zkmzde (mgr.14197) 410 : cluster [DBG] pgmap v357: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:54.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:54 smithi028 bash[18631]: cluster 2024-04-24T17:23:54.319365+0000 mgr.smithi028.zkmzde (mgr.14197) 410 : cluster [DBG] pgmap v357: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:55.706 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:23:56.017 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:55 smithi105 bash[20254]: audit 2024-04-24T17:23:55.714123+0000 mon.smithi028 (mon.0) 534 : audit [DBG] from='client.? 172.21.15.28:0/2612303689' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:56.017 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:55 smithi105 bash[20254]: audit 2024-04-24T17:23:55.714123+0000 mon.smithi028 (mon.0) 534 : audit [DBG] from='client.? 172.21.15.28:0/2612303689' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:56.028 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:55 smithi028 bash[18631]: audit 2024-04-24T17:23:55.714123+0000 mon.smithi028 (mon.0) 534 : audit [DBG] from='client.? 172.21.15.28:0/2612303689' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:56.028 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:55 smithi028 bash[18631]: audit 2024-04-24T17:23:55.714123+0000 mon.smithi028 (mon.0) 534 : audit [DBG] from='client.? 172.21.15.28:0/2612303689' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:23:56.311 INFO:teuthology.orchestra.run.smithi028.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-24T17:23:57.017 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:56 smithi105 bash[20254]: cluster 2024-04-24T17:23:56.320371+0000 mgr.smithi028.zkmzde (mgr.14197) 411 : cluster [DBG] pgmap v358: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:57.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:56 smithi105 bash[20254]: cluster 2024-04-24T17:23:56.320371+0000 mgr.smithi028.zkmzde (mgr.14197) 411 : cluster [DBG] pgmap v358: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:57.028 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:56 smithi028 bash[18631]: cluster 2024-04-24T17:23:56.320371+0000 mgr.smithi028.zkmzde (mgr.14197) 411 : cluster [DBG] pgmap v358: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:57.028 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:56 smithi028 bash[18631]: cluster 2024-04-24T17:23:56.320371+0000 mgr.smithi028.zkmzde (mgr.14197) 411 : cluster [DBG] pgmap v358: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:57.312 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:23:58.179 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:57 smithi028 bash[18631]: audit 2024-04-24T17:23:57.836016+0000 mon.smithi028 (mon.0) 535 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:58.179 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:57 smithi028 bash[18631]: audit 2024-04-24T17:23:57.836016+0000 mon.smithi028 (mon.0) 535 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:58.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:57 smithi105 bash[20254]: audit 2024-04-24T17:23:57.836016+0000 mon.smithi028 (mon.0) 535 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:58.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:57 smithi105 bash[20254]: audit 2024-04-24T17:23:57.836016+0000 mon.smithi028 (mon.0) 535 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:23:59.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:58 smithi105 bash[20254]: cluster 2024-04-24T17:23:58.321367+0000 mgr.smithi028.zkmzde (mgr.14197) 412 : cluster [DBG] pgmap v359: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:59.268 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:23:58 smithi105 bash[20254]: cluster 2024-04-24T17:23:58.321367+0000 mgr.smithi028.zkmzde (mgr.14197) 412 : cluster [DBG] pgmap v359: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:59.278 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:58 smithi028 bash[18631]: cluster 2024-04-24T17:23:58.321367+0000 mgr.smithi028.zkmzde (mgr.14197) 412 : cluster [DBG] pgmap v359: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:23:59.278 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:23:58 smithi028 bash[18631]: cluster 2024-04-24T17:23:58.321367+0000 mgr.smithi028.zkmzde (mgr.14197) 412 : cluster [DBG] pgmap v359: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:01.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:01 smithi028 bash[18631]: cluster 2024-04-24T17:24:00.322442+0000 mgr.smithi028.zkmzde (mgr.14197) 413 : cluster [DBG] pgmap v360: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:01.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:01 smithi028 bash[18631]: cluster 2024-04-24T17:24:00.322442+0000 mgr.smithi028.zkmzde (mgr.14197) 413 : cluster [DBG] pgmap v360: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:01.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:01 smithi105 bash[20254]: cluster 2024-04-24T17:24:00.322442+0000 mgr.smithi028.zkmzde (mgr.14197) 413 : cluster [DBG] pgmap v360: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:01.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:01 smithi105 bash[20254]: cluster 2024-04-24T17:24:00.322442+0000 mgr.smithi028.zkmzde (mgr.14197) 413 : cluster [DBG] pgmap v360: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:02.081 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:24:02.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:02 smithi105 bash[20254]: audit 2024-04-24T17:24:02.364051+0000 mon.smithi028 (mon.0) 536 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:24:02.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:02 smithi105 bash[20254]: audit 2024-04-24T17:24:02.364051+0000 mon.smithi028 (mon.0) 536 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:24:02.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:02 smithi028 bash[18631]: audit 2024-04-24T17:24:02.364051+0000 mon.smithi028 (mon.0) 536 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:24:02.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:02 smithi028 bash[18631]: audit 2024-04-24T17:24:02.364051+0000 mon.smithi028 (mon.0) 536 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:24:03.362 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:24:03.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:03 smithi105 bash[20254]: cluster 2024-04-24T17:24:02.323602+0000 mgr.smithi028.zkmzde (mgr.14197) 414 : cluster [DBG] pgmap v361: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:03.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:03 smithi105 bash[20254]: cluster 2024-04-24T17:24:02.323602+0000 mgr.smithi028.zkmzde (mgr.14197) 414 : cluster [DBG] pgmap v361: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:03.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:03 smithi105 bash[20254]: audit 2024-04-24T17:24:03.369332+0000 mon.smithi028 (mon.0) 537 : audit [DBG] from='client.? 172.21.15.28:0/52029093' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:03.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:03 smithi105 bash[20254]: audit 2024-04-24T17:24:03.369332+0000 mon.smithi028 (mon.0) 537 : audit [DBG] from='client.? 172.21.15.28:0/52029093' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:03.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:03 smithi028 bash[18631]: cluster 2024-04-24T17:24:02.323602+0000 mgr.smithi028.zkmzde (mgr.14197) 414 : cluster [DBG] pgmap v361: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:03.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:03 smithi028 bash[18631]: cluster 2024-04-24T17:24:02.323602+0000 mgr.smithi028.zkmzde (mgr.14197) 414 : cluster [DBG] pgmap v361: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:03.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:03 smithi028 bash[18631]: audit 2024-04-24T17:24:03.369332+0000 mon.smithi028 (mon.0) 537 : audit [DBG] from='client.? 172.21.15.28:0/52029093' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:03.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:03 smithi028 bash[18631]: audit 2024-04-24T17:24:03.369332+0000 mon.smithi028 (mon.0) 537 : audit [DBG] from='client.? 172.21.15.28:0/52029093' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:03.988 INFO:teuthology.orchestra.run.smithi028.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-24T17:24:04.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:04 smithi105 bash[20254]: cluster 2024-04-24T17:24:04.324704+0000 mgr.smithi028.zkmzde (mgr.14197) 415 : cluster [DBG] pgmap v362: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:04.770 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:04 smithi105 bash[20254]: cluster 2024-04-24T17:24:04.324704+0000 mgr.smithi028.zkmzde (mgr.14197) 415 : cluster [DBG] pgmap v362: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:04.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:04 smithi028 bash[18631]: cluster 2024-04-24T17:24:04.324704+0000 mgr.smithi028.zkmzde (mgr.14197) 415 : cluster [DBG] pgmap v362: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:04.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:04 smithi028 bash[18631]: cluster 2024-04-24T17:24:04.324704+0000 mgr.smithi028.zkmzde (mgr.14197) 415 : cluster [DBG] pgmap v362: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:04.989 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:24:07.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:07 smithi105 bash[20254]: cluster 2024-04-24T17:24:06.325718+0000 mgr.smithi028.zkmzde (mgr.14197) 416 : cluster [DBG] pgmap v363: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:07.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:07 smithi105 bash[20254]: cluster 2024-04-24T17:24:06.325718+0000 mgr.smithi028.zkmzde (mgr.14197) 416 : cluster [DBG] pgmap v363: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:07.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:07 smithi028 bash[18631]: cluster 2024-04-24T17:24:06.325718+0000 mgr.smithi028.zkmzde (mgr.14197) 416 : cluster [DBG] pgmap v363: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:07.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:07 smithi028 bash[18631]: cluster 2024-04-24T17:24:06.325718+0000 mgr.smithi028.zkmzde (mgr.14197) 416 : cluster [DBG] pgmap v363: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:08.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:08 smithi105 bash[20254]: cluster 2024-04-24T17:24:08.326719+0000 mgr.smithi028.zkmzde (mgr.14197) 417 : cluster [DBG] pgmap v364: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:08.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:08 smithi105 bash[20254]: cluster 2024-04-24T17:24:08.326719+0000 mgr.smithi028.zkmzde (mgr.14197) 417 : cluster [DBG] pgmap v364: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:08.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:08 smithi028 bash[18631]: cluster 2024-04-24T17:24:08.326719+0000 mgr.smithi028.zkmzde (mgr.14197) 417 : cluster [DBG] pgmap v364: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:08.778 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:08 smithi028 bash[18631]: cluster 2024-04-24T17:24:08.326719+0000 mgr.smithi028.zkmzde (mgr.14197) 417 : cluster [DBG] pgmap v364: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:09.101 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:24:10.493 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:24:10.507 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:10 smithi028 bash[18631]: audit 2024-04-24T17:24:10.127662+0000 mon.smithi028 (mon.0) 538 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:24:10.507 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:10 smithi028 bash[18631]: audit 2024-04-24T17:24:10.127662+0000 mon.smithi028 (mon.0) 538 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:24:10.507 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:10 smithi028 bash[18631]: audit 2024-04-24T17:24:10.128825+0000 mon.smithi028 (mon.0) 539 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:24:10.507 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:10 smithi028 bash[18631]: audit 2024-04-24T17:24:10.128825+0000 mon.smithi028 (mon.0) 539 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:24:10.507 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:10 smithi028 bash[18631]: audit 2024-04-24T17:24:10.136002+0000 mon.smithi028 (mon.0) 540 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:24:10.507 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:10 smithi028 bash[18631]: audit 2024-04-24T17:24:10.136002+0000 mon.smithi028 (mon.0) 540 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:24:10.507 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:10 smithi028 bash[18631]: audit 2024-04-24T17:24:10.140648+0000 mon.smithi028 (mon.0) 541 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:24:10.507 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:10 smithi028 bash[18631]: audit 2024-04-24T17:24:10.140648+0000 mon.smithi028 (mon.0) 541 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:24:10.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:10 smithi105 bash[20254]: audit 2024-04-24T17:24:10.127662+0000 mon.smithi028 (mon.0) 538 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:24:10.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:10 smithi105 bash[20254]: audit 2024-04-24T17:24:10.127662+0000 mon.smithi028 (mon.0) 538 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:24:10.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:10 smithi105 bash[20254]: audit 2024-04-24T17:24:10.128825+0000 mon.smithi028 (mon.0) 539 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:24:10.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:10 smithi105 bash[20254]: audit 2024-04-24T17:24:10.128825+0000 mon.smithi028 (mon.0) 539 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:24:10.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:10 smithi105 bash[20254]: audit 2024-04-24T17:24:10.136002+0000 mon.smithi028 (mon.0) 540 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:24:10.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:10 smithi105 bash[20254]: audit 2024-04-24T17:24:10.136002+0000 mon.smithi028 (mon.0) 540 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:24:10.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:10 smithi105 bash[20254]: audit 2024-04-24T17:24:10.140648+0000 mon.smithi028 (mon.0) 541 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:24:10.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:10 smithi105 bash[20254]: audit 2024-04-24T17:24:10.140648+0000 mon.smithi028 (mon.0) 541 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:24:11.186 INFO:teuthology.orchestra.run.smithi028.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-24T17:24:11.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:11 smithi105 bash[20254]: cluster 2024-04-24T17:24:10.130568+0000 mgr.smithi028.zkmzde (mgr.14197) 418 : cluster [DBG] pgmap v365: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:11.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:11 smithi105 bash[20254]: cluster 2024-04-24T17:24:10.130568+0000 mgr.smithi028.zkmzde (mgr.14197) 418 : cluster [DBG] pgmap v365: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:11.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:11 smithi105 bash[20254]: cluster 2024-04-24T17:24:10.131091+0000 mgr.smithi028.zkmzde (mgr.14197) 419 : cluster [DBG] pgmap v366: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:11.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:11 smithi105 bash[20254]: cluster 2024-04-24T17:24:10.131091+0000 mgr.smithi028.zkmzde (mgr.14197) 419 : cluster [DBG] pgmap v366: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:11.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:11 smithi105 bash[20254]: audit 2024-04-24T17:24:10.499459+0000 mon.smithi028 (mon.0) 542 : audit [DBG] from='client.? 172.21.15.28:0/1371714497' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:11.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:11 smithi105 bash[20254]: audit 2024-04-24T17:24:10.499459+0000 mon.smithi028 (mon.0) 542 : audit [DBG] from='client.? 172.21.15.28:0/1371714497' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:11.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:11 smithi028 bash[18631]: cluster 2024-04-24T17:24:10.130568+0000 mgr.smithi028.zkmzde (mgr.14197) 418 : cluster [DBG] pgmap v365: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:11.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:11 smithi028 bash[18631]: cluster 2024-04-24T17:24:10.130568+0000 mgr.smithi028.zkmzde (mgr.14197) 418 : cluster [DBG] pgmap v365: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:11.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:11 smithi028 bash[18631]: cluster 2024-04-24T17:24:10.131091+0000 mgr.smithi028.zkmzde (mgr.14197) 419 : cluster [DBG] pgmap v366: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:11.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:11 smithi028 bash[18631]: cluster 2024-04-24T17:24:10.131091+0000 mgr.smithi028.zkmzde (mgr.14197) 419 : cluster [DBG] pgmap v366: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:11.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:11 smithi028 bash[18631]: audit 2024-04-24T17:24:10.499459+0000 mon.smithi028 (mon.0) 542 : audit [DBG] from='client.? 172.21.15.28:0/1371714497' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:11.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:11 smithi028 bash[18631]: audit 2024-04-24T17:24:10.499459+0000 mon.smithi028 (mon.0) 542 : audit [DBG] from='client.? 172.21.15.28:0/1371714497' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:12.188 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:24:13.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:13 smithi105 bash[20254]: cluster 2024-04-24T17:24:12.132047+0000 mgr.smithi028.zkmzde (mgr.14197) 420 : cluster [DBG] pgmap v367: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:13.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:13 smithi105 bash[20254]: cluster 2024-04-24T17:24:12.132047+0000 mgr.smithi028.zkmzde (mgr.14197) 420 : cluster [DBG] pgmap v367: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:13.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:13 smithi105 bash[20254]: audit 2024-04-24T17:24:12.836423+0000 mon.smithi028 (mon.0) 543 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:13.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:13 smithi105 bash[20254]: audit 2024-04-24T17:24:12.836423+0000 mon.smithi028 (mon.0) 543 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:13.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:13 smithi028 bash[18631]: cluster 2024-04-24T17:24:12.132047+0000 mgr.smithi028.zkmzde (mgr.14197) 420 : cluster [DBG] pgmap v367: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:13.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:13 smithi028 bash[18631]: cluster 2024-04-24T17:24:12.132047+0000 mgr.smithi028.zkmzde (mgr.14197) 420 : cluster [DBG] pgmap v367: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:13.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:13 smithi028 bash[18631]: audit 2024-04-24T17:24:12.836423+0000 mon.smithi028 (mon.0) 543 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:13.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:13 smithi028 bash[18631]: audit 2024-04-24T17:24:12.836423+0000 mon.smithi028 (mon.0) 543 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:15.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:15 smithi105 bash[20254]: cluster 2024-04-24T17:24:14.133037+0000 mgr.smithi028.zkmzde (mgr.14197) 421 : cluster [DBG] pgmap v368: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:15.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:15 smithi105 bash[20254]: cluster 2024-04-24T17:24:14.133037+0000 mgr.smithi028.zkmzde (mgr.14197) 421 : cluster [DBG] pgmap v368: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:15.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:15 smithi028 bash[18631]: cluster 2024-04-24T17:24:14.133037+0000 mgr.smithi028.zkmzde (mgr.14197) 421 : cluster [DBG] pgmap v368: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:15.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:15 smithi028 bash[18631]: cluster 2024-04-24T17:24:14.133037+0000 mgr.smithi028.zkmzde (mgr.14197) 421 : cluster [DBG] pgmap v368: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:16.965 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:24:17.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:17 smithi028 bash[18631]: cluster 2024-04-24T17:24:16.134068+0000 mgr.smithi028.zkmzde (mgr.14197) 422 : cluster [DBG] pgmap v369: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:17.278 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:17 smithi028 bash[18631]: cluster 2024-04-24T17:24:16.134068+0000 mgr.smithi028.zkmzde (mgr.14197) 422 : cluster [DBG] pgmap v369: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:17.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:17 smithi105 bash[20254]: cluster 2024-04-24T17:24:16.134068+0000 mgr.smithi028.zkmzde (mgr.14197) 422 : cluster [DBG] pgmap v369: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:17.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:17 smithi105 bash[20254]: cluster 2024-04-24T17:24:16.134068+0000 mgr.smithi028.zkmzde (mgr.14197) 422 : cluster [DBG] pgmap v369: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:18.261 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:24:18.834 INFO:teuthology.orchestra.run.smithi028.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-24T17:24:19.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:19 smithi105 bash[20254]: cluster 2024-04-24T17:24:18.135058+0000 mgr.smithi028.zkmzde (mgr.14197) 423 : cluster [DBG] pgmap v370: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:19.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:19 smithi105 bash[20254]: cluster 2024-04-24T17:24:18.135058+0000 mgr.smithi028.zkmzde (mgr.14197) 423 : cluster [DBG] pgmap v370: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:19.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:19 smithi105 bash[20254]: audit 2024-04-24T17:24:18.268403+0000 mon.smithi028 (mon.0) 544 : audit [DBG] from='client.? 172.21.15.28:0/1394193812' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:19.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:19 smithi105 bash[20254]: audit 2024-04-24T17:24:18.268403+0000 mon.smithi028 (mon.0) 544 : audit [DBG] from='client.? 172.21.15.28:0/1394193812' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:19.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:19 smithi028 bash[18631]: cluster 2024-04-24T17:24:18.135058+0000 mgr.smithi028.zkmzde (mgr.14197) 423 : cluster [DBG] pgmap v370: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:19.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:19 smithi028 bash[18631]: cluster 2024-04-24T17:24:18.135058+0000 mgr.smithi028.zkmzde (mgr.14197) 423 : cluster [DBG] pgmap v370: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:19.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:19 smithi028 bash[18631]: audit 2024-04-24T17:24:18.268403+0000 mon.smithi028 (mon.0) 544 : audit [DBG] from='client.? 172.21.15.28:0/1394193812' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:19.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:19 smithi028 bash[18631]: audit 2024-04-24T17:24:18.268403+0000 mon.smithi028 (mon.0) 544 : audit [DBG] from='client.? 172.21.15.28:0/1394193812' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:19.836 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:24:21.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:21 smithi105 bash[20254]: cluster 2024-04-24T17:24:20.136052+0000 mgr.smithi028.zkmzde (mgr.14197) 424 : cluster [DBG] pgmap v371: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:21.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:21 smithi105 bash[20254]: cluster 2024-04-24T17:24:20.136052+0000 mgr.smithi028.zkmzde (mgr.14197) 424 : cluster [DBG] pgmap v371: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:21.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:21 smithi028 bash[18631]: cluster 2024-04-24T17:24:20.136052+0000 mgr.smithi028.zkmzde (mgr.14197) 424 : cluster [DBG] pgmap v371: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:21.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:21 smithi028 bash[18631]: cluster 2024-04-24T17:24:20.136052+0000 mgr.smithi028.zkmzde (mgr.14197) 424 : cluster [DBG] pgmap v371: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:23.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:23 smithi105 bash[20254]: cluster 2024-04-24T17:24:22.137099+0000 mgr.smithi028.zkmzde (mgr.14197) 425 : cluster [DBG] pgmap v372: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:23.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:23 smithi105 bash[20254]: cluster 2024-04-24T17:24:22.137099+0000 mgr.smithi028.zkmzde (mgr.14197) 425 : cluster [DBG] pgmap v372: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:23.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:23 smithi028 bash[18631]: cluster 2024-04-24T17:24:22.137099+0000 mgr.smithi028.zkmzde (mgr.14197) 425 : cluster [DBG] pgmap v372: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:23.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:23 smithi028 bash[18631]: cluster 2024-04-24T17:24:22.137099+0000 mgr.smithi028.zkmzde (mgr.14197) 425 : cluster [DBG] pgmap v372: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:24.612 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:24:25.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:25 smithi105 bash[20254]: cluster 2024-04-24T17:24:24.137946+0000 mgr.smithi028.zkmzde (mgr.14197) 426 : cluster [DBG] pgmap v373: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:25.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:25 smithi105 bash[20254]: cluster 2024-04-24T17:24:24.137946+0000 mgr.smithi028.zkmzde (mgr.14197) 426 : cluster [DBG] pgmap v373: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:25.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:25 smithi028 bash[18631]: cluster 2024-04-24T17:24:24.137946+0000 mgr.smithi028.zkmzde (mgr.14197) 426 : cluster [DBG] pgmap v373: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:25.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:25 smithi028 bash[18631]: cluster 2024-04-24T17:24:24.137946+0000 mgr.smithi028.zkmzde (mgr.14197) 426 : cluster [DBG] pgmap v373: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:25.796 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:24:26.373 INFO:teuthology.orchestra.run.smithi028.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-24T17:24:26.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:26 smithi105 bash[20254]: audit 2024-04-24T17:24:25.804328+0000 mon.smithi028 (mon.0) 545 : audit [DBG] from='client.? 172.21.15.28:0/3602117048' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:26.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:26 smithi105 bash[20254]: audit 2024-04-24T17:24:25.804328+0000 mon.smithi028 (mon.0) 545 : audit [DBG] from='client.? 172.21.15.28:0/3602117048' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:26.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:26 smithi028 bash[18631]: audit 2024-04-24T17:24:25.804328+0000 mon.smithi028 (mon.0) 545 : audit [DBG] from='client.? 172.21.15.28:0/3602117048' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:26.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:26 smithi028 bash[18631]: audit 2024-04-24T17:24:25.804328+0000 mon.smithi028 (mon.0) 545 : audit [DBG] from='client.? 172.21.15.28:0/3602117048' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:27.374 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:24:27.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:27 smithi105 bash[20254]: cluster 2024-04-24T17:24:26.138931+0000 mgr.smithi028.zkmzde (mgr.14197) 427 : cluster [DBG] pgmap v374: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:27.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:27 smithi105 bash[20254]: cluster 2024-04-24T17:24:26.138931+0000 mgr.smithi028.zkmzde (mgr.14197) 427 : cluster [DBG] pgmap v374: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:27.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:27 smithi028 bash[18631]: cluster 2024-04-24T17:24:26.138931+0000 mgr.smithi028.zkmzde (mgr.14197) 427 : cluster [DBG] pgmap v374: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:27.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:27 smithi028 bash[18631]: cluster 2024-04-24T17:24:26.138931+0000 mgr.smithi028.zkmzde (mgr.14197) 427 : cluster [DBG] pgmap v374: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:28.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:28 smithi105 bash[20254]: audit 2024-04-24T17:24:27.836937+0000 mon.smithi028 (mon.0) 546 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:28.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:28 smithi105 bash[20254]: audit 2024-04-24T17:24:27.836937+0000 mon.smithi028 (mon.0) 546 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:28.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:28 smithi028 bash[18631]: audit 2024-04-24T17:24:27.836937+0000 mon.smithi028 (mon.0) 546 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:28.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:28 smithi028 bash[18631]: audit 2024-04-24T17:24:27.836937+0000 mon.smithi028 (mon.0) 546 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:29.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:29 smithi105 bash[20254]: cluster 2024-04-24T17:24:28.139917+0000 mgr.smithi028.zkmzde (mgr.14197) 428 : cluster [DBG] pgmap v375: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:29.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:29 smithi105 bash[20254]: cluster 2024-04-24T17:24:28.139917+0000 mgr.smithi028.zkmzde (mgr.14197) 428 : cluster [DBG] pgmap v375: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:29.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:29 smithi028 bash[18631]: cluster 2024-04-24T17:24:28.139917+0000 mgr.smithi028.zkmzde (mgr.14197) 428 : cluster [DBG] pgmap v375: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:29.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:29 smithi028 bash[18631]: cluster 2024-04-24T17:24:28.139917+0000 mgr.smithi028.zkmzde (mgr.14197) 428 : cluster [DBG] pgmap v375: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:31.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:31 smithi105 bash[20254]: cluster 2024-04-24T17:24:30.140402+0000 mgr.smithi028.zkmzde (mgr.14197) 429 : cluster [DBG] pgmap v376: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:31.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:31 smithi105 bash[20254]: cluster 2024-04-24T17:24:30.140402+0000 mgr.smithi028.zkmzde (mgr.14197) 429 : cluster [DBG] pgmap v376: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:31.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:31 smithi028 bash[18631]: cluster 2024-04-24T17:24:30.140402+0000 mgr.smithi028.zkmzde (mgr.14197) 429 : cluster [DBG] pgmap v376: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:31.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:31 smithi028 bash[18631]: cluster 2024-04-24T17:24:30.140402+0000 mgr.smithi028.zkmzde (mgr.14197) 429 : cluster [DBG] pgmap v376: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:32.145 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:24:33.329 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:24:33.513 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:33 smithi028 bash[18631]: cluster 2024-04-24T17:24:32.141395+0000 mgr.smithi028.zkmzde (mgr.14197) 430 : cluster [DBG] pgmap v377: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:33.513 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:33 smithi028 bash[18631]: cluster 2024-04-24T17:24:32.141395+0000 mgr.smithi028.zkmzde (mgr.14197) 430 : cluster [DBG] pgmap v377: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:33.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:33 smithi105 bash[20254]: cluster 2024-04-24T17:24:32.141395+0000 mgr.smithi028.zkmzde (mgr.14197) 430 : cluster [DBG] pgmap v377: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:33.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:33 smithi105 bash[20254]: cluster 2024-04-24T17:24:32.141395+0000 mgr.smithi028.zkmzde (mgr.14197) 430 : cluster [DBG] pgmap v377: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:33.905 INFO:teuthology.orchestra.run.smithi028.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-24T17:24:34.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:34 smithi105 bash[20254]: audit 2024-04-24T17:24:33.336813+0000 mon.smithi028 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.28:0/2908661192' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:34.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:34 smithi105 bash[20254]: audit 2024-04-24T17:24:33.336813+0000 mon.smithi028 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.28:0/2908661192' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:34.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:34 smithi028 bash[18631]: audit 2024-04-24T17:24:33.336813+0000 mon.smithi028 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.28:0/2908661192' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:34.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:34 smithi028 bash[18631]: audit 2024-04-24T17:24:33.336813+0000 mon.smithi028 (mon.0) 547 : audit [DBG] from='client.? 172.21.15.28:0/2908661192' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:34.907 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:24:35.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:35 smithi105 bash[20254]: cluster 2024-04-24T17:24:34.142423+0000 mgr.smithi028.zkmzde (mgr.14197) 431 : cluster [DBG] pgmap v378: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:35.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:35 smithi105 bash[20254]: cluster 2024-04-24T17:24:34.142423+0000 mgr.smithi028.zkmzde (mgr.14197) 431 : cluster [DBG] pgmap v378: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:35.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:35 smithi028 bash[18631]: cluster 2024-04-24T17:24:34.142423+0000 mgr.smithi028.zkmzde (mgr.14197) 431 : cluster [DBG] pgmap v378: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:35.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:35 smithi028 bash[18631]: cluster 2024-04-24T17:24:34.142423+0000 mgr.smithi028.zkmzde (mgr.14197) 431 : cluster [DBG] pgmap v378: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:37.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:37 smithi105 bash[20254]: cluster 2024-04-24T17:24:36.143198+0000 mgr.smithi028.zkmzde (mgr.14197) 432 : cluster [DBG] pgmap v379: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:37.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:37 smithi105 bash[20254]: cluster 2024-04-24T17:24:36.143198+0000 mgr.smithi028.zkmzde (mgr.14197) 432 : cluster [DBG] pgmap v379: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:37.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:37 smithi028 bash[18631]: cluster 2024-04-24T17:24:36.143198+0000 mgr.smithi028.zkmzde (mgr.14197) 432 : cluster [DBG] pgmap v379: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:37.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:37 smithi028 bash[18631]: cluster 2024-04-24T17:24:36.143198+0000 mgr.smithi028.zkmzde (mgr.14197) 432 : cluster [DBG] pgmap v379: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:39.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:39 smithi105 bash[20254]: cluster 2024-04-24T17:24:38.144173+0000 mgr.smithi028.zkmzde (mgr.14197) 433 : cluster [DBG] pgmap v380: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:39.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:39 smithi105 bash[20254]: cluster 2024-04-24T17:24:38.144173+0000 mgr.smithi028.zkmzde (mgr.14197) 433 : cluster [DBG] pgmap v380: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:39.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:39 smithi028 bash[18631]: cluster 2024-04-24T17:24:38.144173+0000 mgr.smithi028.zkmzde (mgr.14197) 433 : cluster [DBG] pgmap v380: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:39.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:39 smithi028 bash[18631]: cluster 2024-04-24T17:24:38.144173+0000 mgr.smithi028.zkmzde (mgr.14197) 433 : cluster [DBG] pgmap v380: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:39.679 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:24:40.978 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:24:41.504 INFO:teuthology.orchestra.run.smithi028.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-24T17:24:41.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:41 smithi028 bash[18631]: cluster 2024-04-24T17:24:40.145195+0000 mgr.smithi028.zkmzde (mgr.14197) 434 : cluster [DBG] pgmap v381: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:41.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:41 smithi028 bash[18631]: cluster 2024-04-24T17:24:40.145195+0000 mgr.smithi028.zkmzde (mgr.14197) 434 : cluster [DBG] pgmap v381: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:41.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:41 smithi028 bash[18631]: audit 2024-04-24T17:24:40.986395+0000 mon.smithi028 (mon.0) 548 : audit [DBG] from='client.? 172.21.15.28:0/3290137038' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:41.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:41 smithi028 bash[18631]: audit 2024-04-24T17:24:40.986395+0000 mon.smithi028 (mon.0) 548 : audit [DBG] from='client.? 172.21.15.28:0/3290137038' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:41.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:41 smithi105 bash[20254]: cluster 2024-04-24T17:24:40.145195+0000 mgr.smithi028.zkmzde (mgr.14197) 434 : cluster [DBG] pgmap v381: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:41.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:41 smithi105 bash[20254]: cluster 2024-04-24T17:24:40.145195+0000 mgr.smithi028.zkmzde (mgr.14197) 434 : cluster [DBG] pgmap v381: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:41.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:41 smithi105 bash[20254]: audit 2024-04-24T17:24:40.986395+0000 mon.smithi028 (mon.0) 548 : audit [DBG] from='client.? 172.21.15.28:0/3290137038' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:41.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:41 smithi105 bash[20254]: audit 2024-04-24T17:24:40.986395+0000 mon.smithi028 (mon.0) 548 : audit [DBG] from='client.? 172.21.15.28:0/3290137038' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:42.505 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:24:43.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:43 smithi105 bash[20254]: cluster 2024-04-24T17:24:42.146306+0000 mgr.smithi028.zkmzde (mgr.14197) 435 : cluster [DBG] pgmap v382: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:43.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:43 smithi105 bash[20254]: cluster 2024-04-24T17:24:42.146306+0000 mgr.smithi028.zkmzde (mgr.14197) 435 : cluster [DBG] pgmap v382: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:43.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:43 smithi105 bash[20254]: audit 2024-04-24T17:24:42.837373+0000 mon.smithi028 (mon.0) 549 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:43.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:43 smithi105 bash[20254]: audit 2024-04-24T17:24:42.837373+0000 mon.smithi028 (mon.0) 549 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:43.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:43 smithi028 bash[18631]: cluster 2024-04-24T17:24:42.146306+0000 mgr.smithi028.zkmzde (mgr.14197) 435 : cluster [DBG] pgmap v382: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:43.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:43 smithi028 bash[18631]: cluster 2024-04-24T17:24:42.146306+0000 mgr.smithi028.zkmzde (mgr.14197) 435 : cluster [DBG] pgmap v382: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:43.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:43 smithi028 bash[18631]: audit 2024-04-24T17:24:42.837373+0000 mon.smithi028 (mon.0) 549 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:43.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:43 smithi028 bash[18631]: audit 2024-04-24T17:24:42.837373+0000 mon.smithi028 (mon.0) 549 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:45.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:45 smithi028 bash[18631]: cluster 2024-04-24T17:24:44.147405+0000 mgr.smithi028.zkmzde (mgr.14197) 436 : cluster [DBG] pgmap v383: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:45.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:45 smithi028 bash[18631]: cluster 2024-04-24T17:24:44.147405+0000 mgr.smithi028.zkmzde (mgr.14197) 436 : cluster [DBG] pgmap v383: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:45.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:45 smithi105 bash[20254]: cluster 2024-04-24T17:24:44.147405+0000 mgr.smithi028.zkmzde (mgr.14197) 436 : cluster [DBG] pgmap v383: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:45.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:45 smithi105 bash[20254]: cluster 2024-04-24T17:24:44.147405+0000 mgr.smithi028.zkmzde (mgr.14197) 436 : cluster [DBG] pgmap v383: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:47.280 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:24:47.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:47 smithi105 bash[20254]: cluster 2024-04-24T17:24:46.148514+0000 mgr.smithi028.zkmzde (mgr.14197) 437 : cluster [DBG] pgmap v384: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:47.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:47 smithi105 bash[20254]: cluster 2024-04-24T17:24:46.148514+0000 mgr.smithi028.zkmzde (mgr.14197) 437 : cluster [DBG] pgmap v384: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:47.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:47 smithi028 bash[18631]: cluster 2024-04-24T17:24:46.148514+0000 mgr.smithi028.zkmzde (mgr.14197) 437 : cluster [DBG] pgmap v384: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:47.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:47 smithi028 bash[18631]: cluster 2024-04-24T17:24:46.148514+0000 mgr.smithi028.zkmzde (mgr.14197) 437 : cluster [DBG] pgmap v384: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:48.614 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:24:49.200 INFO:teuthology.orchestra.run.smithi028.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-24T17:24:49.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:49 smithi028 bash[18631]: cluster 2024-04-24T17:24:48.149568+0000 mgr.smithi028.zkmzde (mgr.14197) 438 : cluster [DBG] pgmap v385: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:49.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:49 smithi028 bash[18631]: cluster 2024-04-24T17:24:48.149568+0000 mgr.smithi028.zkmzde (mgr.14197) 438 : cluster [DBG] pgmap v385: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:49.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:49 smithi028 bash[18631]: audit 2024-04-24T17:24:48.621898+0000 mon.smithi028 (mon.0) 550 : audit [DBG] from='client.? 172.21.15.28:0/3653298001' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:49.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:49 smithi028 bash[18631]: audit 2024-04-24T17:24:48.621898+0000 mon.smithi028 (mon.0) 550 : audit [DBG] from='client.? 172.21.15.28:0/3653298001' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:49.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:49 smithi105 bash[20254]: cluster 2024-04-24T17:24:48.149568+0000 mgr.smithi028.zkmzde (mgr.14197) 438 : cluster [DBG] pgmap v385: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:49.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:49 smithi105 bash[20254]: cluster 2024-04-24T17:24:48.149568+0000 mgr.smithi028.zkmzde (mgr.14197) 438 : cluster [DBG] pgmap v385: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:49.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:49 smithi105 bash[20254]: audit 2024-04-24T17:24:48.621898+0000 mon.smithi028 (mon.0) 550 : audit [DBG] from='client.? 172.21.15.28:0/3653298001' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:49.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:49 smithi105 bash[20254]: audit 2024-04-24T17:24:48.621898+0000 mon.smithi028 (mon.0) 550 : audit [DBG] from='client.? 172.21.15.28:0/3653298001' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:50.201 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:24:51.672 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:51 smithi028 bash[18631]: cluster 2024-04-24T17:24:50.150538+0000 mgr.smithi028.zkmzde (mgr.14197) 439 : cluster [DBG] pgmap v386: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:51.672 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:51 smithi028 bash[18631]: cluster 2024-04-24T17:24:50.150538+0000 mgr.smithi028.zkmzde (mgr.14197) 439 : cluster [DBG] pgmap v386: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:51.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:51 smithi105 bash[20254]: cluster 2024-04-24T17:24:50.150538+0000 mgr.smithi028.zkmzde (mgr.14197) 439 : cluster [DBG] pgmap v386: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:51.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:51 smithi105 bash[20254]: cluster 2024-04-24T17:24:50.150538+0000 mgr.smithi028.zkmzde (mgr.14197) 439 : cluster [DBG] pgmap v386: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:53.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:53 smithi105 bash[20254]: cluster 2024-04-24T17:24:52.151601+0000 mgr.smithi028.zkmzde (mgr.14197) 440 : cluster [DBG] pgmap v387: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:53.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:53 smithi105 bash[20254]: cluster 2024-04-24T17:24:52.151601+0000 mgr.smithi028.zkmzde (mgr.14197) 440 : cluster [DBG] pgmap v387: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:53.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:53 smithi028 bash[18631]: cluster 2024-04-24T17:24:52.151601+0000 mgr.smithi028.zkmzde (mgr.14197) 440 : cluster [DBG] pgmap v387: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:53.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:53 smithi028 bash[18631]: cluster 2024-04-24T17:24:52.151601+0000 mgr.smithi028.zkmzde (mgr.14197) 440 : cluster [DBG] pgmap v387: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:54.978 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:24:55.677 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:55 smithi028 bash[18631]: cluster 2024-04-24T17:24:54.152639+0000 mgr.smithi028.zkmzde (mgr.14197) 441 : cluster [DBG] pgmap v388: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:55.677 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:55 smithi028 bash[18631]: cluster 2024-04-24T17:24:54.152639+0000 mgr.smithi028.zkmzde (mgr.14197) 441 : cluster [DBG] pgmap v388: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:55.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:55 smithi105 bash[20254]: cluster 2024-04-24T17:24:54.152639+0000 mgr.smithi028.zkmzde (mgr.14197) 441 : cluster [DBG] pgmap v388: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:55.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:55 smithi105 bash[20254]: cluster 2024-04-24T17:24:54.152639+0000 mgr.smithi028.zkmzde (mgr.14197) 441 : cluster [DBG] pgmap v388: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:56.046 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:24:56.410 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:56 smithi028 bash[18631]: audit 2024-04-24T17:24:56.054096+0000 mon.smithi028 (mon.0) 551 : audit [DBG] from='client.? 172.21.15.28:0/4052381889' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:56.411 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:56 smithi028 bash[18631]: audit 2024-04-24T17:24:56.054096+0000 mon.smithi028 (mon.0) 551 : audit [DBG] from='client.? 172.21.15.28:0/4052381889' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:56.614 INFO:teuthology.orchestra.run.smithi028.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-24T17:24:56.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:56 smithi105 bash[20254]: audit 2024-04-24T17:24:56.054096+0000 mon.smithi028 (mon.0) 551 : audit [DBG] from='client.? 172.21.15.28:0/4052381889' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:56.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:56 smithi105 bash[20254]: audit 2024-04-24T17:24:56.054096+0000 mon.smithi028 (mon.0) 551 : audit [DBG] from='client.? 172.21.15.28:0/4052381889' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:24:57.615 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:24:57.626 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:57 smithi028 bash[18631]: cluster 2024-04-24T17:24:56.153669+0000 mgr.smithi028.zkmzde (mgr.14197) 442 : cluster [DBG] pgmap v389: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:57.626 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:57 smithi028 bash[18631]: cluster 2024-04-24T17:24:56.153669+0000 mgr.smithi028.zkmzde (mgr.14197) 442 : cluster [DBG] pgmap v389: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:57.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:57 smithi105 bash[20254]: cluster 2024-04-24T17:24:56.153669+0000 mgr.smithi028.zkmzde (mgr.14197) 442 : cluster [DBG] pgmap v389: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:57.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:57 smithi105 bash[20254]: cluster 2024-04-24T17:24:56.153669+0000 mgr.smithi028.zkmzde (mgr.14197) 442 : cluster [DBG] pgmap v389: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:58.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:58 smithi028 bash[18631]: audit 2024-04-24T17:24:57.837036+0000 mon.smithi028 (mon.0) 552 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:58.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:58 smithi028 bash[18631]: audit 2024-04-24T17:24:57.837036+0000 mon.smithi028 (mon.0) 552 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:58.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:58 smithi105 bash[20254]: audit 2024-04-24T17:24:57.837036+0000 mon.smithi028 (mon.0) 552 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:58.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:58 smithi105 bash[20254]: audit 2024-04-24T17:24:57.837036+0000 mon.smithi028 (mon.0) 552 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:24:59.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:59 smithi105 bash[20254]: cluster 2024-04-24T17:24:58.154612+0000 mgr.smithi028.zkmzde (mgr.14197) 443 : cluster [DBG] pgmap v390: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:59.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:24:59 smithi105 bash[20254]: cluster 2024-04-24T17:24:58.154612+0000 mgr.smithi028.zkmzde (mgr.14197) 443 : cluster [DBG] pgmap v390: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:59.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:59 smithi028 bash[18631]: cluster 2024-04-24T17:24:58.154612+0000 mgr.smithi028.zkmzde (mgr.14197) 443 : cluster [DBG] pgmap v390: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:24:59.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:24:59 smithi028 bash[18631]: cluster 2024-04-24T17:24:58.154612+0000 mgr.smithi028.zkmzde (mgr.14197) 443 : cluster [DBG] pgmap v390: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:01.691 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:01 smithi105 bash[20254]: cluster 2024-04-24T17:25:00.155609+0000 mgr.smithi028.zkmzde (mgr.14197) 444 : cluster [DBG] pgmap v391: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:01.691 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:01 smithi105 bash[20254]: cluster 2024-04-24T17:25:00.155609+0000 mgr.smithi028.zkmzde (mgr.14197) 444 : cluster [DBG] pgmap v391: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:01.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:01 smithi028 bash[18631]: cluster 2024-04-24T17:25:00.155609+0000 mgr.smithi028.zkmzde (mgr.14197) 444 : cluster [DBG] pgmap v391: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:01.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:01 smithi028 bash[18631]: cluster 2024-04-24T17:25:00.155609+0000 mgr.smithi028.zkmzde (mgr.14197) 444 : cluster [DBG] pgmap v391: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:02.384 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:25:03.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:03 smithi028 bash[18631]: cluster 2024-04-24T17:25:02.156613+0000 mgr.smithi028.zkmzde (mgr.14197) 445 : cluster [DBG] pgmap v392: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:03.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:03 smithi028 bash[18631]: cluster 2024-04-24T17:25:02.156613+0000 mgr.smithi028.zkmzde (mgr.14197) 445 : cluster [DBG] pgmap v392: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:03.624 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:25:03.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:03 smithi105 bash[20254]: cluster 2024-04-24T17:25:02.156613+0000 mgr.smithi028.zkmzde (mgr.14197) 445 : cluster [DBG] pgmap v392: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:03.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:03 smithi105 bash[20254]: cluster 2024-04-24T17:25:02.156613+0000 mgr.smithi028.zkmzde (mgr.14197) 445 : cluster [DBG] pgmap v392: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:04.211 INFO:teuthology.orchestra.run.smithi028.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-24T17:25:04.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:04 smithi028 bash[18631]: audit 2024-04-24T17:25:03.632130+0000 mon.smithi028 (mon.0) 553 : audit [DBG] from='client.? 172.21.15.28:0/1805313856' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:04.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:04 smithi028 bash[18631]: audit 2024-04-24T17:25:03.632130+0000 mon.smithi028 (mon.0) 553 : audit [DBG] from='client.? 172.21.15.28:0/1805313856' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:04.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:04 smithi105 bash[20254]: audit 2024-04-24T17:25:03.632130+0000 mon.smithi028 (mon.0) 553 : audit [DBG] from='client.? 172.21.15.28:0/1805313856' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:04.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:04 smithi105 bash[20254]: audit 2024-04-24T17:25:03.632130+0000 mon.smithi028 (mon.0) 553 : audit [DBG] from='client.? 172.21.15.28:0/1805313856' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:05.212 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:25:05.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:05 smithi028 bash[18631]: cluster 2024-04-24T17:25:04.157685+0000 mgr.smithi028.zkmzde (mgr.14197) 446 : cluster [DBG] pgmap v393: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:05.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:05 smithi028 bash[18631]: cluster 2024-04-24T17:25:04.157685+0000 mgr.smithi028.zkmzde (mgr.14197) 446 : cluster [DBG] pgmap v393: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:05.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:05 smithi105 bash[20254]: cluster 2024-04-24T17:25:04.157685+0000 mgr.smithi028.zkmzde (mgr.14197) 446 : cluster [DBG] pgmap v393: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:05.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:05 smithi105 bash[20254]: cluster 2024-04-24T17:25:04.157685+0000 mgr.smithi028.zkmzde (mgr.14197) 446 : cluster [DBG] pgmap v393: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:07.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:07 smithi105 bash[20254]: cluster 2024-04-24T17:25:06.158681+0000 mgr.smithi028.zkmzde (mgr.14197) 447 : cluster [DBG] pgmap v394: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:07.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:07 smithi105 bash[20254]: cluster 2024-04-24T17:25:06.158681+0000 mgr.smithi028.zkmzde (mgr.14197) 447 : cluster [DBG] pgmap v394: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:07.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:07 smithi028 bash[18631]: cluster 2024-04-24T17:25:06.158681+0000 mgr.smithi028.zkmzde (mgr.14197) 447 : cluster [DBG] pgmap v394: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:07.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:07 smithi028 bash[18631]: cluster 2024-04-24T17:25:06.158681+0000 mgr.smithi028.zkmzde (mgr.14197) 447 : cluster [DBG] pgmap v394: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:09.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:09 smithi105 bash[20254]: cluster 2024-04-24T17:25:08.159730+0000 mgr.smithi028.zkmzde (mgr.14197) 448 : cluster [DBG] pgmap v395: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:09.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:09 smithi105 bash[20254]: cluster 2024-04-24T17:25:08.159730+0000 mgr.smithi028.zkmzde (mgr.14197) 448 : cluster [DBG] pgmap v395: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:09.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:09 smithi028 bash[18631]: cluster 2024-04-24T17:25:08.159730+0000 mgr.smithi028.zkmzde (mgr.14197) 448 : cluster [DBG] pgmap v395: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:09.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:09 smithi028 bash[18631]: cluster 2024-04-24T17:25:08.159730+0000 mgr.smithi028.zkmzde (mgr.14197) 448 : cluster [DBG] pgmap v395: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:09.980 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:25:10.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:10 smithi105 bash[20254]: audit 2024-04-24T17:25:10.222594+0000 mon.smithi028 (mon.0) 554 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:25:10.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:10 smithi105 bash[20254]: audit 2024-04-24T17:25:10.222594+0000 mon.smithi028 (mon.0) 554 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:25:10.775 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:10 smithi028 bash[18631]: audit 2024-04-24T17:25:10.222594+0000 mon.smithi028 (mon.0) 554 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:25:10.775 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:10 smithi028 bash[18631]: audit 2024-04-24T17:25:10.222594+0000 mon.smithi028 (mon.0) 554 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:25:11.182 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:25:11.450 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:11 smithi028 bash[18631]: cluster 2024-04-24T17:25:10.160774+0000 mgr.smithi028.zkmzde (mgr.14197) 449 : cluster [DBG] pgmap v396: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:11.450 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:11 smithi028 bash[18631]: cluster 2024-04-24T17:25:10.160774+0000 mgr.smithi028.zkmzde (mgr.14197) 449 : cluster [DBG] pgmap v396: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:11.450 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:11 smithi028 bash[18631]: audit 2024-04-24T17:25:11.190025+0000 mon.smithi028 (mon.0) 555 : audit [DBG] from='client.? 172.21.15.28:0/1971935287' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:11.450 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:11 smithi028 bash[18631]: audit 2024-04-24T17:25:11.190025+0000 mon.smithi028 (mon.0) 555 : audit [DBG] from='client.? 172.21.15.28:0/1971935287' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:11.767 INFO:teuthology.orchestra.run.smithi028.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-24T17:25:11.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:11 smithi105 bash[20254]: cluster 2024-04-24T17:25:10.160774+0000 mgr.smithi028.zkmzde (mgr.14197) 449 : cluster [DBG] pgmap v396: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:11.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:11 smithi105 bash[20254]: cluster 2024-04-24T17:25:10.160774+0000 mgr.smithi028.zkmzde (mgr.14197) 449 : cluster [DBG] pgmap v396: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:11.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:11 smithi105 bash[20254]: audit 2024-04-24T17:25:11.190025+0000 mon.smithi028 (mon.0) 555 : audit [DBG] from='client.? 172.21.15.28:0/1971935287' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:11.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:11 smithi105 bash[20254]: audit 2024-04-24T17:25:11.190025+0000 mon.smithi028 (mon.0) 555 : audit [DBG] from='client.? 172.21.15.28:0/1971935287' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:12.767 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:25:13.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:13 smithi105 bash[20254]: cluster 2024-04-24T17:25:12.161815+0000 mgr.smithi028.zkmzde (mgr.14197) 450 : cluster [DBG] pgmap v397: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:13.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:13 smithi105 bash[20254]: cluster 2024-04-24T17:25:12.161815+0000 mgr.smithi028.zkmzde (mgr.14197) 450 : cluster [DBG] pgmap v397: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:13.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:13 smithi105 bash[20254]: audit 2024-04-24T17:25:12.837644+0000 mon.smithi028 (mon.0) 556 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:13.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:13 smithi105 bash[20254]: audit 2024-04-24T17:25:12.837644+0000 mon.smithi028 (mon.0) 556 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:13.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:13 smithi028 bash[18631]: cluster 2024-04-24T17:25:12.161815+0000 mgr.smithi028.zkmzde (mgr.14197) 450 : cluster [DBG] pgmap v397: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:13.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:13 smithi028 bash[18631]: cluster 2024-04-24T17:25:12.161815+0000 mgr.smithi028.zkmzde (mgr.14197) 450 : cluster [DBG] pgmap v397: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:13.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:13 smithi028 bash[18631]: audit 2024-04-24T17:25:12.837644+0000 mon.smithi028 (mon.0) 556 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:13.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:13 smithi028 bash[18631]: audit 2024-04-24T17:25:12.837644+0000 mon.smithi028 (mon.0) 556 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:15.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:15 smithi105 bash[20254]: cluster 2024-04-24T17:25:14.162847+0000 mgr.smithi028.zkmzde (mgr.14197) 451 : cluster [DBG] pgmap v398: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:15.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:15 smithi105 bash[20254]: cluster 2024-04-24T17:25:14.162847+0000 mgr.smithi028.zkmzde (mgr.14197) 451 : cluster [DBG] pgmap v398: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:15.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:15 smithi028 bash[18631]: cluster 2024-04-24T17:25:14.162847+0000 mgr.smithi028.zkmzde (mgr.14197) 451 : cluster [DBG] pgmap v398: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:15.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:15 smithi028 bash[18631]: cluster 2024-04-24T17:25:14.162847+0000 mgr.smithi028.zkmzde (mgr.14197) 451 : cluster [DBG] pgmap v398: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:16.955 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:25:17.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:17 smithi105 bash[20254]: cluster 2024-04-24T17:25:16.163974+0000 mgr.smithi028.zkmzde (mgr.14197) 452 : cluster [DBG] pgmap v399: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:17.769 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:17 smithi105 bash[20254]: cluster 2024-04-24T17:25:16.163974+0000 mgr.smithi028.zkmzde (mgr.14197) 452 : cluster [DBG] pgmap v399: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:17.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:17 smithi028 bash[18631]: cluster 2024-04-24T17:25:16.163974+0000 mgr.smithi028.zkmzde (mgr.14197) 452 : cluster [DBG] pgmap v399: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:17.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:17 smithi028 bash[18631]: cluster 2024-04-24T17:25:16.163974+0000 mgr.smithi028.zkmzde (mgr.14197) 452 : cluster [DBG] pgmap v399: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:18.439 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:25:18.632 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:18 smithi028 bash[18631]: audit 2024-04-24T17:25:18.147320+0000 mon.smithi028 (mon.0) 557 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:25:18.633 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:18 smithi028 bash[18631]: audit 2024-04-24T17:25:18.147320+0000 mon.smithi028 (mon.0) 557 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:25:18.633 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:18 smithi028 bash[18631]: audit 2024-04-24T17:25:18.148239+0000 mon.smithi028 (mon.0) 558 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:25:18.633 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:18 smithi028 bash[18631]: audit 2024-04-24T17:25:18.148239+0000 mon.smithi028 (mon.0) 558 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:25:18.633 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:18 smithi028 bash[18631]: audit 2024-04-24T17:25:18.153886+0000 mon.smithi028 (mon.0) 559 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:25:18.633 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:18 smithi028 bash[18631]: audit 2024-04-24T17:25:18.153886+0000 mon.smithi028 (mon.0) 559 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:25:18.633 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:18 smithi028 bash[18631]: audit 2024-04-24T17:25:18.158537+0000 mon.smithi028 (mon.0) 560 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:25:18.633 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:18 smithi028 bash[18631]: audit 2024-04-24T17:25:18.158537+0000 mon.smithi028 (mon.0) 560 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:25:18.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:18 smithi105 bash[20254]: audit 2024-04-24T17:25:18.147320+0000 mon.smithi028 (mon.0) 557 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:25:18.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:18 smithi105 bash[20254]: audit 2024-04-24T17:25:18.147320+0000 mon.smithi028 (mon.0) 557 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:25:18.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:18 smithi105 bash[20254]: audit 2024-04-24T17:25:18.148239+0000 mon.smithi028 (mon.0) 558 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:25:18.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:18 smithi105 bash[20254]: audit 2024-04-24T17:25:18.148239+0000 mon.smithi028 (mon.0) 558 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:25:18.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:18 smithi105 bash[20254]: audit 2024-04-24T17:25:18.153886+0000 mon.smithi028 (mon.0) 559 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:25:18.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:18 smithi105 bash[20254]: audit 2024-04-24T17:25:18.153886+0000 mon.smithi028 (mon.0) 559 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:25:18.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:18 smithi105 bash[20254]: audit 2024-04-24T17:25:18.158537+0000 mon.smithi028 (mon.0) 560 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:25:18.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:18 smithi105 bash[20254]: audit 2024-04-24T17:25:18.158537+0000 mon.smithi028 (mon.0) 560 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:25:19.138 INFO:teuthology.orchestra.run.smithi028.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-24T17:25:19.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:19 smithi028 bash[18631]: cluster 2024-04-24T17:25:18.149520+0000 mgr.smithi028.zkmzde (mgr.14197) 453 : cluster [DBG] pgmap v400: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:19.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:19 smithi028 bash[18631]: cluster 2024-04-24T17:25:18.149520+0000 mgr.smithi028.zkmzde (mgr.14197) 453 : cluster [DBG] pgmap v400: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:19.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:19 smithi028 bash[18631]: cluster 2024-04-24T17:25:18.149967+0000 mgr.smithi028.zkmzde (mgr.14197) 454 : cluster [DBG] pgmap v401: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:19.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:19 smithi028 bash[18631]: cluster 2024-04-24T17:25:18.149967+0000 mgr.smithi028.zkmzde (mgr.14197) 454 : cluster [DBG] pgmap v401: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:19.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:19 smithi028 bash[18631]: audit 2024-04-24T17:25:18.446916+0000 mon.smithi028 (mon.0) 561 : audit [DBG] from='client.? 172.21.15.28:0/2267465681' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:19.528 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:19 smithi028 bash[18631]: audit 2024-04-24T17:25:18.446916+0000 mon.smithi028 (mon.0) 561 : audit [DBG] from='client.? 172.21.15.28:0/2267465681' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:19.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:19 smithi105 bash[20254]: cluster 2024-04-24T17:25:18.149520+0000 mgr.smithi028.zkmzde (mgr.14197) 453 : cluster [DBG] pgmap v400: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:19.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:19 smithi105 bash[20254]: cluster 2024-04-24T17:25:18.149520+0000 mgr.smithi028.zkmzde (mgr.14197) 453 : cluster [DBG] pgmap v400: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:19.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:19 smithi105 bash[20254]: cluster 2024-04-24T17:25:18.149967+0000 mgr.smithi028.zkmzde (mgr.14197) 454 : cluster [DBG] pgmap v401: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:19.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:19 smithi105 bash[20254]: cluster 2024-04-24T17:25:18.149967+0000 mgr.smithi028.zkmzde (mgr.14197) 454 : cluster [DBG] pgmap v401: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:19.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:19 smithi105 bash[20254]: audit 2024-04-24T17:25:18.446916+0000 mon.smithi028 (mon.0) 561 : audit [DBG] from='client.? 172.21.15.28:0/2267465681' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:19.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:19 smithi105 bash[20254]: audit 2024-04-24T17:25:18.446916+0000 mon.smithi028 (mon.0) 561 : audit [DBG] from='client.? 172.21.15.28:0/2267465681' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:20.139 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:25:21.703 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:21 smithi028 bash[18631]: cluster 2024-04-24T17:25:20.150924+0000 mgr.smithi028.zkmzde (mgr.14197) 455 : cluster [DBG] pgmap v402: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:21.703 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:21 smithi028 bash[18631]: cluster 2024-04-24T17:25:20.150924+0000 mgr.smithi028.zkmzde (mgr.14197) 455 : cluster [DBG] pgmap v402: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:21.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:21 smithi105 bash[20254]: cluster 2024-04-24T17:25:20.150924+0000 mgr.smithi028.zkmzde (mgr.14197) 455 : cluster [DBG] pgmap v402: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:21.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:21 smithi105 bash[20254]: cluster 2024-04-24T17:25:20.150924+0000 mgr.smithi028.zkmzde (mgr.14197) 455 : cluster [DBG] pgmap v402: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:23.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:23 smithi105 bash[20254]: cluster 2024-04-24T17:25:22.151925+0000 mgr.smithi028.zkmzde (mgr.14197) 456 : cluster [DBG] pgmap v403: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:23.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:23 smithi105 bash[20254]: cluster 2024-04-24T17:25:22.151925+0000 mgr.smithi028.zkmzde (mgr.14197) 456 : cluster [DBG] pgmap v403: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:23.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:23 smithi028 bash[18631]: cluster 2024-04-24T17:25:22.151925+0000 mgr.smithi028.zkmzde (mgr.14197) 456 : cluster [DBG] pgmap v403: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:23.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:23 smithi028 bash[18631]: cluster 2024-04-24T17:25:22.151925+0000 mgr.smithi028.zkmzde (mgr.14197) 456 : cluster [DBG] pgmap v403: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:24.913 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:25:25.754 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:25 smithi028 bash[18631]: cluster 2024-04-24T17:25:24.152906+0000 mgr.smithi028.zkmzde (mgr.14197) 457 : cluster [DBG] pgmap v404: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:25.754 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:25 smithi028 bash[18631]: cluster 2024-04-24T17:25:24.152906+0000 mgr.smithi028.zkmzde (mgr.14197) 457 : cluster [DBG] pgmap v404: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:25.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:25 smithi105 bash[20254]: cluster 2024-04-24T17:25:24.152906+0000 mgr.smithi028.zkmzde (mgr.14197) 457 : cluster [DBG] pgmap v404: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:25.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:25 smithi105 bash[20254]: cluster 2024-04-24T17:25:24.152906+0000 mgr.smithi028.zkmzde (mgr.14197) 457 : cluster [DBG] pgmap v404: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:26.123 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:25:26.762 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:26 smithi028 bash[18631]: audit 2024-04-24T17:25:26.131625+0000 mon.smithi028 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.28:0/1235762176' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:26.762 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:26 smithi028 bash[18631]: audit 2024-04-24T17:25:26.131625+0000 mon.smithi028 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.28:0/1235762176' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:26.763 INFO:teuthology.orchestra.run.smithi028.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-24T17:25:26.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:26 smithi105 bash[20254]: audit 2024-04-24T17:25:26.131625+0000 mon.smithi028 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.28:0/1235762176' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:26.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:26 smithi105 bash[20254]: audit 2024-04-24T17:25:26.131625+0000 mon.smithi028 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.28:0/1235762176' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:27.764 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:25:27.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:27 smithi105 bash[20254]: cluster 2024-04-24T17:25:26.153463+0000 mgr.smithi028.zkmzde (mgr.14197) 458 : cluster [DBG] pgmap v405: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:27.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:27 smithi105 bash[20254]: cluster 2024-04-24T17:25:26.153463+0000 mgr.smithi028.zkmzde (mgr.14197) 458 : cluster [DBG] pgmap v405: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:27.775 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:27 smithi028 bash[18631]: cluster 2024-04-24T17:25:26.153463+0000 mgr.smithi028.zkmzde (mgr.14197) 458 : cluster [DBG] pgmap v405: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:27.775 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:27 smithi028 bash[18631]: cluster 2024-04-24T17:25:26.153463+0000 mgr.smithi028.zkmzde (mgr.14197) 458 : cluster [DBG] pgmap v405: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:28.455 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:28 smithi028 bash[18631]: audit 2024-04-24T17:25:27.837918+0000 mon.smithi028 (mon.0) 563 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:28.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:28 smithi105 bash[20254]: audit 2024-04-24T17:25:27.837918+0000 mon.smithi028 (mon.0) 563 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:28.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:28 smithi105 bash[20254]: audit 2024-04-24T17:25:27.837918+0000 mon.smithi028 (mon.0) 563 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:28.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:28 smithi105 bash[20254]: cluster 2024-04-24T17:25:28.154414+0000 mgr.smithi028.zkmzde (mgr.14197) 459 : cluster [DBG] pgmap v406: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:28.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:28 smithi105 bash[20254]: cluster 2024-04-24T17:25:28.154414+0000 mgr.smithi028.zkmzde (mgr.14197) 459 : cluster [DBG] pgmap v406: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:28.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:28 smithi028 bash[18631]: audit 2024-04-24T17:25:27.837918+0000 mon.smithi028 (mon.0) 563 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:28.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:28 smithi028 bash[18631]: cluster 2024-04-24T17:25:28.154414+0000 mgr.smithi028.zkmzde (mgr.14197) 459 : cluster [DBG] pgmap v406: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:28.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:28 smithi028 bash[18631]: cluster 2024-04-24T17:25:28.154414+0000 mgr.smithi028.zkmzde (mgr.14197) 459 : cluster [DBG] pgmap v406: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:31.516 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:31 smithi028 bash[18631]: cluster 2024-04-24T17:25:30.155462+0000 mgr.smithi028.zkmzde (mgr.14197) 460 : cluster [DBG] pgmap v407: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:31.516 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:31 smithi028 bash[18631]: cluster 2024-04-24T17:25:30.155462+0000 mgr.smithi028.zkmzde (mgr.14197) 460 : cluster [DBG] pgmap v407: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:31.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:31 smithi105 bash[20254]: cluster 2024-04-24T17:25:30.155462+0000 mgr.smithi028.zkmzde (mgr.14197) 460 : cluster [DBG] pgmap v407: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:31.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:31 smithi105 bash[20254]: cluster 2024-04-24T17:25:30.155462+0000 mgr.smithi028.zkmzde (mgr.14197) 460 : cluster [DBG] pgmap v407: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:32.538 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:25:33.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:33 smithi105 bash[20254]: cluster 2024-04-24T17:25:32.156481+0000 mgr.smithi028.zkmzde (mgr.14197) 461 : cluster [DBG] pgmap v408: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:33.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:33 smithi105 bash[20254]: cluster 2024-04-24T17:25:32.156481+0000 mgr.smithi028.zkmzde (mgr.14197) 461 : cluster [DBG] pgmap v408: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:33.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:33 smithi028 bash[18631]: cluster 2024-04-24T17:25:32.156481+0000 mgr.smithi028.zkmzde (mgr.14197) 461 : cluster [DBG] pgmap v408: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:33.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:33 smithi028 bash[18631]: cluster 2024-04-24T17:25:32.156481+0000 mgr.smithi028.zkmzde (mgr.14197) 461 : cluster [DBG] pgmap v408: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:33.711 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:25:34.357 INFO:teuthology.orchestra.run.smithi028.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-24T17:25:34.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:34 smithi105 bash[20254]: audit 2024-04-24T17:25:33.719128+0000 mon.smithi028 (mon.0) 564 : audit [DBG] from='client.? 172.21.15.28:0/2337855817' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:34.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:34 smithi105 bash[20254]: audit 2024-04-24T17:25:33.719128+0000 mon.smithi028 (mon.0) 564 : audit [DBG] from='client.? 172.21.15.28:0/2337855817' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:34.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:34 smithi028 bash[18631]: audit 2024-04-24T17:25:33.719128+0000 mon.smithi028 (mon.0) 564 : audit [DBG] from='client.? 172.21.15.28:0/2337855817' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:34.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:34 smithi028 bash[18631]: audit 2024-04-24T17:25:33.719128+0000 mon.smithi028 (mon.0) 564 : audit [DBG] from='client.? 172.21.15.28:0/2337855817' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:35.359 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:25:35.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:35 smithi105 bash[20254]: cluster 2024-04-24T17:25:34.157511+0000 mgr.smithi028.zkmzde (mgr.14197) 462 : cluster [DBG] pgmap v409: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:35.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:35 smithi105 bash[20254]: cluster 2024-04-24T17:25:34.157511+0000 mgr.smithi028.zkmzde (mgr.14197) 462 : cluster [DBG] pgmap v409: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:35.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:35 smithi028 bash[18631]: cluster 2024-04-24T17:25:34.157511+0000 mgr.smithi028.zkmzde (mgr.14197) 462 : cluster [DBG] pgmap v409: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:35.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:35 smithi028 bash[18631]: cluster 2024-04-24T17:25:34.157511+0000 mgr.smithi028.zkmzde (mgr.14197) 462 : cluster [DBG] pgmap v409: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:37.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:37 smithi105 bash[20254]: cluster 2024-04-24T17:25:36.158469+0000 mgr.smithi028.zkmzde (mgr.14197) 463 : cluster [DBG] pgmap v410: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:37.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:37 smithi105 bash[20254]: cluster 2024-04-24T17:25:36.158469+0000 mgr.smithi028.zkmzde (mgr.14197) 463 : cluster [DBG] pgmap v410: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:37.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:37 smithi028 bash[18631]: cluster 2024-04-24T17:25:36.158469+0000 mgr.smithi028.zkmzde (mgr.14197) 463 : cluster [DBG] pgmap v410: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:37.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:37 smithi028 bash[18631]: cluster 2024-04-24T17:25:36.158469+0000 mgr.smithi028.zkmzde (mgr.14197) 463 : cluster [DBG] pgmap v410: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:39.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:39 smithi105 bash[20254]: cluster 2024-04-24T17:25:38.159485+0000 mgr.smithi028.zkmzde (mgr.14197) 464 : cluster [DBG] pgmap v411: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:39.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:39 smithi105 bash[20254]: cluster 2024-04-24T17:25:38.159485+0000 mgr.smithi028.zkmzde (mgr.14197) 464 : cluster [DBG] pgmap v411: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:39.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:39 smithi028 bash[18631]: cluster 2024-04-24T17:25:38.159485+0000 mgr.smithi028.zkmzde (mgr.14197) 464 : cluster [DBG] pgmap v411: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:39.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:39 smithi028 bash[18631]: cluster 2024-04-24T17:25:38.159485+0000 mgr.smithi028.zkmzde (mgr.14197) 464 : cluster [DBG] pgmap v411: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:40.131 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:25:41.237 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:25:41.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:41 smithi105 bash[20254]: cluster 2024-04-24T17:25:40.160304+0000 mgr.smithi028.zkmzde (mgr.14197) 465 : cluster [DBG] pgmap v412: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:41.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:41 smithi105 bash[20254]: cluster 2024-04-24T17:25:40.160304+0000 mgr.smithi028.zkmzde (mgr.14197) 465 : cluster [DBG] pgmap v412: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:41.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:41 smithi028 bash[18631]: cluster 2024-04-24T17:25:40.160304+0000 mgr.smithi028.zkmzde (mgr.14197) 465 : cluster [DBG] pgmap v412: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:41.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:41 smithi028 bash[18631]: cluster 2024-04-24T17:25:40.160304+0000 mgr.smithi028.zkmzde (mgr.14197) 465 : cluster [DBG] pgmap v412: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:41.863 INFO:teuthology.orchestra.run.smithi028.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-24T17:25:42.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:42 smithi105 bash[20254]: audit 2024-04-24T17:25:41.245090+0000 mon.smithi028 (mon.0) 565 : audit [DBG] from='client.? 172.21.15.28:0/3553610542' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:42.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:42 smithi105 bash[20254]: audit 2024-04-24T17:25:41.245090+0000 mon.smithi028 (mon.0) 565 : audit [DBG] from='client.? 172.21.15.28:0/3553610542' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:42.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:42 smithi028 bash[18631]: audit 2024-04-24T17:25:41.245090+0000 mon.smithi028 (mon.0) 565 : audit [DBG] from='client.? 172.21.15.28:0/3553610542' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:42.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:42 smithi028 bash[18631]: audit 2024-04-24T17:25:41.245090+0000 mon.smithi028 (mon.0) 565 : audit [DBG] from='client.? 172.21.15.28:0/3553610542' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:42.864 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:25:43.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:43 smithi105 bash[20254]: cluster 2024-04-24T17:25:42.161293+0000 mgr.smithi028.zkmzde (mgr.14197) 466 : cluster [DBG] pgmap v413: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:43.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:43 smithi105 bash[20254]: cluster 2024-04-24T17:25:42.161293+0000 mgr.smithi028.zkmzde (mgr.14197) 466 : cluster [DBG] pgmap v413: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:43.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:43 smithi105 bash[20254]: audit 2024-04-24T17:25:42.838780+0000 mon.smithi028 (mon.0) 566 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:43.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:43 smithi105 bash[20254]: audit 2024-04-24T17:25:42.838780+0000 mon.smithi028 (mon.0) 566 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:43.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:43 smithi028 bash[18631]: cluster 2024-04-24T17:25:42.161293+0000 mgr.smithi028.zkmzde (mgr.14197) 466 : cluster [DBG] pgmap v413: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:43.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:43 smithi028 bash[18631]: cluster 2024-04-24T17:25:42.161293+0000 mgr.smithi028.zkmzde (mgr.14197) 466 : cluster [DBG] pgmap v413: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:43.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:43 smithi028 bash[18631]: audit 2024-04-24T17:25:42.838780+0000 mon.smithi028 (mon.0) 566 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:43.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:43 smithi028 bash[18631]: audit 2024-04-24T17:25:42.838780+0000 mon.smithi028 (mon.0) 566 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:45.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:45 smithi105 bash[20254]: cluster 2024-04-24T17:25:44.162298+0000 mgr.smithi028.zkmzde (mgr.14197) 467 : cluster [DBG] pgmap v414: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:45.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:45 smithi105 bash[20254]: cluster 2024-04-24T17:25:44.162298+0000 mgr.smithi028.zkmzde (mgr.14197) 467 : cluster [DBG] pgmap v414: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:45.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:45 smithi028 bash[18631]: cluster 2024-04-24T17:25:44.162298+0000 mgr.smithi028.zkmzde (mgr.14197) 467 : cluster [DBG] pgmap v414: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:45.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:45 smithi028 bash[18631]: cluster 2024-04-24T17:25:44.162298+0000 mgr.smithi028.zkmzde (mgr.14197) 467 : cluster [DBG] pgmap v414: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:47.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:47 smithi105 bash[20254]: cluster 2024-04-24T17:25:46.163312+0000 mgr.smithi028.zkmzde (mgr.14197) 468 : cluster [DBG] pgmap v415: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:47.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:47 smithi105 bash[20254]: cluster 2024-04-24T17:25:46.163312+0000 mgr.smithi028.zkmzde (mgr.14197) 468 : cluster [DBG] pgmap v415: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:47.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:47 smithi028 bash[18631]: cluster 2024-04-24T17:25:46.163312+0000 mgr.smithi028.zkmzde (mgr.14197) 468 : cluster [DBG] pgmap v415: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:47.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:47 smithi028 bash[18631]: cluster 2024-04-24T17:25:46.163312+0000 mgr.smithi028.zkmzde (mgr.14197) 468 : cluster [DBG] pgmap v415: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:47.636 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:25:48.871 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:25:49.460 INFO:teuthology.orchestra.run.smithi028.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-24T17:25:49.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:49 smithi105 bash[20254]: cluster 2024-04-24T17:25:48.164274+0000 mgr.smithi028.zkmzde (mgr.14197) 469 : cluster [DBG] pgmap v416: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:49.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:49 smithi105 bash[20254]: cluster 2024-04-24T17:25:48.164274+0000 mgr.smithi028.zkmzde (mgr.14197) 469 : cluster [DBG] pgmap v416: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:49.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:49 smithi105 bash[20254]: audit 2024-04-24T17:25:48.879697+0000 mon.smithi028 (mon.0) 567 : audit [DBG] from='client.? 172.21.15.28:0/978468406' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:49.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:49 smithi105 bash[20254]: audit 2024-04-24T17:25:48.879697+0000 mon.smithi028 (mon.0) 567 : audit [DBG] from='client.? 172.21.15.28:0/978468406' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:49.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:49 smithi028 bash[18631]: cluster 2024-04-24T17:25:48.164274+0000 mgr.smithi028.zkmzde (mgr.14197) 469 : cluster [DBG] pgmap v416: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:49.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:49 smithi028 bash[18631]: cluster 2024-04-24T17:25:48.164274+0000 mgr.smithi028.zkmzde (mgr.14197) 469 : cluster [DBG] pgmap v416: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:49.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:49 smithi028 bash[18631]: audit 2024-04-24T17:25:48.879697+0000 mon.smithi028 (mon.0) 567 : audit [DBG] from='client.? 172.21.15.28:0/978468406' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:49.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:49 smithi028 bash[18631]: audit 2024-04-24T17:25:48.879697+0000 mon.smithi028 (mon.0) 567 : audit [DBG] from='client.? 172.21.15.28:0/978468406' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:50.461 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:25:51.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:51 smithi105 bash[20254]: cluster 2024-04-24T17:25:50.165285+0000 mgr.smithi028.zkmzde (mgr.14197) 470 : cluster [DBG] pgmap v417: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:51.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:51 smithi105 bash[20254]: cluster 2024-04-24T17:25:50.165285+0000 mgr.smithi028.zkmzde (mgr.14197) 470 : cluster [DBG] pgmap v417: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:51.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:51 smithi028 bash[18631]: cluster 2024-04-24T17:25:50.165285+0000 mgr.smithi028.zkmzde (mgr.14197) 470 : cluster [DBG] pgmap v417: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:51.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:51 smithi028 bash[18631]: cluster 2024-04-24T17:25:50.165285+0000 mgr.smithi028.zkmzde (mgr.14197) 470 : cluster [DBG] pgmap v417: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:53.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:53 smithi105 bash[20254]: cluster 2024-04-24T17:25:52.166329+0000 mgr.smithi028.zkmzde (mgr.14197) 471 : cluster [DBG] pgmap v418: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:53.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:53 smithi105 bash[20254]: cluster 2024-04-24T17:25:52.166329+0000 mgr.smithi028.zkmzde (mgr.14197) 471 : cluster [DBG] pgmap v418: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:53.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:53 smithi028 bash[18631]: cluster 2024-04-24T17:25:52.166329+0000 mgr.smithi028.zkmzde (mgr.14197) 471 : cluster [DBG] pgmap v418: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:53.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:53 smithi028 bash[18631]: cluster 2024-04-24T17:25:52.166329+0000 mgr.smithi028.zkmzde (mgr.14197) 471 : cluster [DBG] pgmap v418: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:55.238 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:25:55.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:55 smithi105 bash[20254]: cluster 2024-04-24T17:25:54.167324+0000 mgr.smithi028.zkmzde (mgr.14197) 472 : cluster [DBG] pgmap v419: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:55.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:55 smithi105 bash[20254]: cluster 2024-04-24T17:25:54.167324+0000 mgr.smithi028.zkmzde (mgr.14197) 472 : cluster [DBG] pgmap v419: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:55.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:55 smithi028 bash[18631]: cluster 2024-04-24T17:25:54.167324+0000 mgr.smithi028.zkmzde (mgr.14197) 472 : cluster [DBG] pgmap v419: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:55.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:55 smithi028 bash[18631]: cluster 2024-04-24T17:25:54.167324+0000 mgr.smithi028.zkmzde (mgr.14197) 472 : cluster [DBG] pgmap v419: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:56.481 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:25:57.041 INFO:teuthology.orchestra.run.smithi028.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-24T17:25:57.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:57 smithi105 bash[20254]: cluster 2024-04-24T17:25:56.167818+0000 mgr.smithi028.zkmzde (mgr.14197) 473 : cluster [DBG] pgmap v420: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:57.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:57 smithi105 bash[20254]: cluster 2024-04-24T17:25:56.167818+0000 mgr.smithi028.zkmzde (mgr.14197) 473 : cluster [DBG] pgmap v420: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:57.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:57 smithi105 bash[20254]: audit 2024-04-24T17:25:56.489927+0000 mon.smithi028 (mon.0) 568 : audit [DBG] from='client.? 172.21.15.28:0/1917393923' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:57.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:57 smithi105 bash[20254]: audit 2024-04-24T17:25:56.489927+0000 mon.smithi028 (mon.0) 568 : audit [DBG] from='client.? 172.21.15.28:0/1917393923' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:57.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:57 smithi028 bash[18631]: cluster 2024-04-24T17:25:56.167818+0000 mgr.smithi028.zkmzde (mgr.14197) 473 : cluster [DBG] pgmap v420: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:57.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:57 smithi028 bash[18631]: cluster 2024-04-24T17:25:56.167818+0000 mgr.smithi028.zkmzde (mgr.14197) 473 : cluster [DBG] pgmap v420: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:57.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:57 smithi028 bash[18631]: audit 2024-04-24T17:25:56.489927+0000 mon.smithi028 (mon.0) 568 : audit [DBG] from='client.? 172.21.15.28:0/1917393923' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:57.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:57 smithi028 bash[18631]: audit 2024-04-24T17:25:56.489927+0000 mon.smithi028 (mon.0) 568 : audit [DBG] from='client.? 172.21.15.28:0/1917393923' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:25:58.043 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:25:58.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:58 smithi105 bash[20254]: audit 2024-04-24T17:25:57.839307+0000 mon.smithi028 (mon.0) 569 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:58.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:58 smithi105 bash[20254]: audit 2024-04-24T17:25:57.839307+0000 mon.smithi028 (mon.0) 569 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:58.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:58 smithi028 bash[18631]: audit 2024-04-24T17:25:57.839307+0000 mon.smithi028 (mon.0) 569 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:58.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:58 smithi028 bash[18631]: audit 2024-04-24T17:25:57.839307+0000 mon.smithi028 (mon.0) 569 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:25:59.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:59 smithi028 bash[18631]: cluster 2024-04-24T17:25:58.168377+0000 mgr.smithi028.zkmzde (mgr.14197) 474 : cluster [DBG] pgmap v421: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:59.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:25:59 smithi028 bash[18631]: cluster 2024-04-24T17:25:58.168377+0000 mgr.smithi028.zkmzde (mgr.14197) 474 : cluster [DBG] pgmap v421: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:59.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:59 smithi105 bash[20254]: cluster 2024-04-24T17:25:58.168377+0000 mgr.smithi028.zkmzde (mgr.14197) 474 : cluster [DBG] pgmap v421: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:25:59.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:25:59 smithi105 bash[20254]: cluster 2024-04-24T17:25:58.168377+0000 mgr.smithi028.zkmzde (mgr.14197) 474 : cluster [DBG] pgmap v421: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:01.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:01 smithi028 bash[18631]: cluster 2024-04-24T17:26:00.169357+0000 mgr.smithi028.zkmzde (mgr.14197) 475 : cluster [DBG] pgmap v422: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:01.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:01 smithi028 bash[18631]: cluster 2024-04-24T17:26:00.169357+0000 mgr.smithi028.zkmzde (mgr.14197) 475 : cluster [DBG] pgmap v422: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:01.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:01 smithi105 bash[20254]: cluster 2024-04-24T17:26:00.169357+0000 mgr.smithi028.zkmzde (mgr.14197) 475 : cluster [DBG] pgmap v422: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:01.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:01 smithi105 bash[20254]: cluster 2024-04-24T17:26:00.169357+0000 mgr.smithi028.zkmzde (mgr.14197) 475 : cluster [DBG] pgmap v422: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:02.814 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:26:03.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:03 smithi105 bash[20254]: cluster 2024-04-24T17:26:02.170405+0000 mgr.smithi028.zkmzde (mgr.14197) 476 : cluster [DBG] pgmap v423: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:03.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:03 smithi105 bash[20254]: cluster 2024-04-24T17:26:02.170405+0000 mgr.smithi028.zkmzde (mgr.14197) 476 : cluster [DBG] pgmap v423: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:03.626 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:03 smithi028 bash[18631]: cluster 2024-04-24T17:26:02.170405+0000 mgr.smithi028.zkmzde (mgr.14197) 476 : cluster [DBG] pgmap v423: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:03.626 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:03 smithi028 bash[18631]: cluster 2024-04-24T17:26:02.170405+0000 mgr.smithi028.zkmzde (mgr.14197) 476 : cluster [DBG] pgmap v423: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:04.012 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:26:04.624 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:04 smithi028 bash[18631]: audit 2024-04-24T17:26:04.020780+0000 mon.smithi028 (mon.0) 570 : audit [DBG] from='client.? 172.21.15.28:0/4144543975' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:04.624 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:04 smithi028 bash[18631]: audit 2024-04-24T17:26:04.020780+0000 mon.smithi028 (mon.0) 570 : audit [DBG] from='client.? 172.21.15.28:0/4144543975' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:04.625 INFO:teuthology.orchestra.run.smithi028.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-24T17:26:04.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:04 smithi105 bash[20254]: audit 2024-04-24T17:26:04.020780+0000 mon.smithi028 (mon.0) 570 : audit [DBG] from='client.? 172.21.15.28:0/4144543975' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:04.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:04 smithi105 bash[20254]: audit 2024-04-24T17:26:04.020780+0000 mon.smithi028 (mon.0) 570 : audit [DBG] from='client.? 172.21.15.28:0/4144543975' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:05.625 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:26:05.637 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:05 smithi028 bash[18631]: cluster 2024-04-24T17:26:04.171387+0000 mgr.smithi028.zkmzde (mgr.14197) 477 : cluster [DBG] pgmap v424: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:05.637 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:05 smithi028 bash[18631]: cluster 2024-04-24T17:26:04.171387+0000 mgr.smithi028.zkmzde (mgr.14197) 477 : cluster [DBG] pgmap v424: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:05.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:05 smithi105 bash[20254]: cluster 2024-04-24T17:26:04.171387+0000 mgr.smithi028.zkmzde (mgr.14197) 477 : cluster [DBG] pgmap v424: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:05.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:05 smithi105 bash[20254]: cluster 2024-04-24T17:26:04.171387+0000 mgr.smithi028.zkmzde (mgr.14197) 477 : cluster [DBG] pgmap v424: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:07.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:07 smithi105 bash[20254]: cluster 2024-04-24T17:26:06.172386+0000 mgr.smithi028.zkmzde (mgr.14197) 478 : cluster [DBG] pgmap v425: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:07.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:07 smithi105 bash[20254]: cluster 2024-04-24T17:26:06.172386+0000 mgr.smithi028.zkmzde (mgr.14197) 478 : cluster [DBG] pgmap v425: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:07.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:07 smithi028 bash[18631]: cluster 2024-04-24T17:26:06.172386+0000 mgr.smithi028.zkmzde (mgr.14197) 478 : cluster [DBG] pgmap v425: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:07.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:07 smithi028 bash[18631]: cluster 2024-04-24T17:26:06.172386+0000 mgr.smithi028.zkmzde (mgr.14197) 478 : cluster [DBG] pgmap v425: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:09.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:09 smithi105 bash[20254]: cluster 2024-04-24T17:26:08.173395+0000 mgr.smithi028.zkmzde (mgr.14197) 479 : cluster [DBG] pgmap v426: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:09.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:09 smithi105 bash[20254]: cluster 2024-04-24T17:26:08.173395+0000 mgr.smithi028.zkmzde (mgr.14197) 479 : cluster [DBG] pgmap v426: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:09.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:09 smithi028 bash[18631]: cluster 2024-04-24T17:26:08.173395+0000 mgr.smithi028.zkmzde (mgr.14197) 479 : cluster [DBG] pgmap v426: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:09.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:09 smithi028 bash[18631]: cluster 2024-04-24T17:26:08.173395+0000 mgr.smithi028.zkmzde (mgr.14197) 479 : cluster [DBG] pgmap v426: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:10.394 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:26:11.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:11 smithi028 bash[18631]: cluster 2024-04-24T17:26:10.174384+0000 mgr.smithi028.zkmzde (mgr.14197) 480 : cluster [DBG] pgmap v427: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:11.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:11 smithi028 bash[18631]: cluster 2024-04-24T17:26:10.174384+0000 mgr.smithi028.zkmzde (mgr.14197) 480 : cluster [DBG] pgmap v427: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:11.597 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:26:11.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:11 smithi105 bash[20254]: cluster 2024-04-24T17:26:10.174384+0000 mgr.smithi028.zkmzde (mgr.14197) 480 : cluster [DBG] pgmap v427: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:11.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:11 smithi105 bash[20254]: cluster 2024-04-24T17:26:10.174384+0000 mgr.smithi028.zkmzde (mgr.14197) 480 : cluster [DBG] pgmap v427: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:12.219 INFO:teuthology.orchestra.run.smithi028.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-24T17:26:12.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:12 smithi028 bash[18631]: audit 2024-04-24T17:26:11.605771+0000 mon.smithi028 (mon.0) 571 : audit [DBG] from='client.? 172.21.15.28:0/3074876391' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:12.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:12 smithi028 bash[18631]: audit 2024-04-24T17:26:11.605771+0000 mon.smithi028 (mon.0) 571 : audit [DBG] from='client.? 172.21.15.28:0/3074876391' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:12.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:12 smithi105 bash[20254]: audit 2024-04-24T17:26:11.605771+0000 mon.smithi028 (mon.0) 571 : audit [DBG] from='client.? 172.21.15.28:0/3074876391' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:12.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:12 smithi105 bash[20254]: audit 2024-04-24T17:26:11.605771+0000 mon.smithi028 (mon.0) 571 : audit [DBG] from='client.? 172.21.15.28:0/3074876391' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:13.220 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:26:13.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:13 smithi028 bash[18631]: cluster 2024-04-24T17:26:12.175398+0000 mgr.smithi028.zkmzde (mgr.14197) 481 : cluster [DBG] pgmap v428: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:13.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:13 smithi028 bash[18631]: cluster 2024-04-24T17:26:12.175398+0000 mgr.smithi028.zkmzde (mgr.14197) 481 : cluster [DBG] pgmap v428: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:13.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:13 smithi028 bash[18631]: audit 2024-04-24T17:26:12.839668+0000 mon.smithi028 (mon.0) 572 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:13.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:13 smithi028 bash[18631]: audit 2024-04-24T17:26:12.839668+0000 mon.smithi028 (mon.0) 572 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:13.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:13 smithi105 bash[20254]: cluster 2024-04-24T17:26:12.175398+0000 mgr.smithi028.zkmzde (mgr.14197) 481 : cluster [DBG] pgmap v428: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:13.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:13 smithi105 bash[20254]: cluster 2024-04-24T17:26:12.175398+0000 mgr.smithi028.zkmzde (mgr.14197) 481 : cluster [DBG] pgmap v428: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:13.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:13 smithi105 bash[20254]: audit 2024-04-24T17:26:12.839668+0000 mon.smithi028 (mon.0) 572 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:13.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:13 smithi105 bash[20254]: audit 2024-04-24T17:26:12.839668+0000 mon.smithi028 (mon.0) 572 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:15.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:15 smithi105 bash[20254]: cluster 2024-04-24T17:26:14.176375+0000 mgr.smithi028.zkmzde (mgr.14197) 482 : cluster [DBG] pgmap v429: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:15.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:15 smithi105 bash[20254]: cluster 2024-04-24T17:26:14.176375+0000 mgr.smithi028.zkmzde (mgr.14197) 482 : cluster [DBG] pgmap v429: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:15.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:15 smithi028 bash[18631]: cluster 2024-04-24T17:26:14.176375+0000 mgr.smithi028.zkmzde (mgr.14197) 482 : cluster [DBG] pgmap v429: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:15.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:15 smithi028 bash[18631]: cluster 2024-04-24T17:26:14.176375+0000 mgr.smithi028.zkmzde (mgr.14197) 482 : cluster [DBG] pgmap v429: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:17.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:17 smithi105 bash[20254]: cluster 2024-04-24T17:26:16.177399+0000 mgr.smithi028.zkmzde (mgr.14197) 483 : cluster [DBG] pgmap v430: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:17.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:17 smithi105 bash[20254]: cluster 2024-04-24T17:26:16.177399+0000 mgr.smithi028.zkmzde (mgr.14197) 483 : cluster [DBG] pgmap v430: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:17.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:17 smithi028 bash[18631]: cluster 2024-04-24T17:26:16.177399+0000 mgr.smithi028.zkmzde (mgr.14197) 483 : cluster [DBG] pgmap v430: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:17.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:17 smithi028 bash[18631]: cluster 2024-04-24T17:26:16.177399+0000 mgr.smithi028.zkmzde (mgr.14197) 483 : cluster [DBG] pgmap v430: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:17.998 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:26:18.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:18 smithi105 bash[20254]: audit 2024-04-24T17:26:18.220554+0000 mon.smithi028 (mon.0) 573 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:26:18.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:18 smithi105 bash[20254]: audit 2024-04-24T17:26:18.220554+0000 mon.smithi028 (mon.0) 573 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:26:18.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:18 smithi028 bash[18631]: audit 2024-04-24T17:26:18.220554+0000 mon.smithi028 (mon.0) 573 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:26:18.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:18 smithi028 bash[18631]: audit 2024-04-24T17:26:18.220554+0000 mon.smithi028 (mon.0) 573 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:26:19.234 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:26:19.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:19 smithi028 bash[18631]: cluster 2024-04-24T17:26:18.178429+0000 mgr.smithi028.zkmzde (mgr.14197) 484 : cluster [DBG] pgmap v431: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:19.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:19 smithi028 bash[18631]: cluster 2024-04-24T17:26:18.178429+0000 mgr.smithi028.zkmzde (mgr.14197) 484 : cluster [DBG] pgmap v431: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:19.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:19 smithi028 bash[18631]: audit 2024-04-24T17:26:19.242554+0000 mon.smithi028 (mon.0) 574 : audit [DBG] from='client.? 172.21.15.28:0/1987309194' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:19.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:19 smithi028 bash[18631]: audit 2024-04-24T17:26:19.242554+0000 mon.smithi028 (mon.0) 574 : audit [DBG] from='client.? 172.21.15.28:0/1987309194' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:19.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:19 smithi105 bash[20254]: cluster 2024-04-24T17:26:18.178429+0000 mgr.smithi028.zkmzde (mgr.14197) 484 : cluster [DBG] pgmap v431: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:19.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:19 smithi105 bash[20254]: cluster 2024-04-24T17:26:18.178429+0000 mgr.smithi028.zkmzde (mgr.14197) 484 : cluster [DBG] pgmap v431: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:19.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:19 smithi105 bash[20254]: audit 2024-04-24T17:26:19.242554+0000 mon.smithi028 (mon.0) 574 : audit [DBG] from='client.? 172.21.15.28:0/1987309194' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:19.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:19 smithi105 bash[20254]: audit 2024-04-24T17:26:19.242554+0000 mon.smithi028 (mon.0) 574 : audit [DBG] from='client.? 172.21.15.28:0/1987309194' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:19.832 INFO:teuthology.orchestra.run.smithi028.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-24T17:26:20.833 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:26:21.687 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:21 smithi028 bash[18631]: cluster 2024-04-24T17:26:20.179441+0000 mgr.smithi028.zkmzde (mgr.14197) 485 : cluster [DBG] pgmap v432: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:21.687 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:21 smithi028 bash[18631]: cluster 2024-04-24T17:26:20.179441+0000 mgr.smithi028.zkmzde (mgr.14197) 485 : cluster [DBG] pgmap v432: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:21.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:21 smithi105 bash[20254]: cluster 2024-04-24T17:26:20.179441+0000 mgr.smithi028.zkmzde (mgr.14197) 485 : cluster [DBG] pgmap v432: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:21.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:21 smithi105 bash[20254]: cluster 2024-04-24T17:26:20.179441+0000 mgr.smithi028.zkmzde (mgr.14197) 485 : cluster [DBG] pgmap v432: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:23.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:23 smithi105 bash[20254]: cluster 2024-04-24T17:26:22.180441+0000 mgr.smithi028.zkmzde (mgr.14197) 486 : cluster [DBG] pgmap v433: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:23.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:23 smithi105 bash[20254]: cluster 2024-04-24T17:26:22.180441+0000 mgr.smithi028.zkmzde (mgr.14197) 486 : cluster [DBG] pgmap v433: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:23.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:23 smithi028 bash[18631]: cluster 2024-04-24T17:26:22.180441+0000 mgr.smithi028.zkmzde (mgr.14197) 486 : cluster [DBG] pgmap v433: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:23.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:23 smithi028 bash[18631]: cluster 2024-04-24T17:26:22.180441+0000 mgr.smithi028.zkmzde (mgr.14197) 486 : cluster [DBG] pgmap v433: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:25.364 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:26:25.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:25 smithi105 bash[20254]: cluster 2024-04-24T17:26:24.180923+0000 mgr.smithi028.zkmzde (mgr.14197) 487 : cluster [DBG] pgmap v434: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:25.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:25 smithi105 bash[20254]: cluster 2024-04-24T17:26:24.180923+0000 mgr.smithi028.zkmzde (mgr.14197) 487 : cluster [DBG] pgmap v434: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:25.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:25 smithi105 bash[20254]: audit 2024-04-24T17:26:24.227732+0000 mon.smithi028 (mon.0) 575 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:26:25.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:25 smithi105 bash[20254]: audit 2024-04-24T17:26:24.227732+0000 mon.smithi028 (mon.0) 575 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:26:25.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:25 smithi028 bash[18631]: cluster 2024-04-24T17:26:24.180923+0000 mgr.smithi028.zkmzde (mgr.14197) 487 : cluster [DBG] pgmap v434: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:25.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:25 smithi028 bash[18631]: cluster 2024-04-24T17:26:24.180923+0000 mgr.smithi028.zkmzde (mgr.14197) 487 : cluster [DBG] pgmap v434: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:25.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:25 smithi028 bash[18631]: audit 2024-04-24T17:26:24.227732+0000 mon.smithi028 (mon.0) 575 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:26:25.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:25 smithi028 bash[18631]: audit 2024-04-24T17:26:24.227732+0000 mon.smithi028 (mon.0) 575 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:26:26.503 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:26:27.083 INFO:teuthology.orchestra.run.smithi028.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-24T17:26:27.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:27 smithi105 bash[20254]: cluster 2024-04-24T17:26:26.181482+0000 mgr.smithi028.zkmzde (mgr.14197) 488 : cluster [DBG] pgmap v435: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:27.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:27 smithi105 bash[20254]: cluster 2024-04-24T17:26:26.181482+0000 mgr.smithi028.zkmzde (mgr.14197) 488 : cluster [DBG] pgmap v435: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:27.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:27 smithi105 bash[20254]: audit 2024-04-24T17:26:26.511102+0000 mon.smithi028 (mon.0) 576 : audit [DBG] from='client.? 172.21.15.28:0/4176009476' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:27.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:27 smithi105 bash[20254]: audit 2024-04-24T17:26:26.511102+0000 mon.smithi028 (mon.0) 576 : audit [DBG] from='client.? 172.21.15.28:0/4176009476' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:27.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:27 smithi028 bash[18631]: cluster 2024-04-24T17:26:26.181482+0000 mgr.smithi028.zkmzde (mgr.14197) 488 : cluster [DBG] pgmap v435: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:27.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:27 smithi028 bash[18631]: cluster 2024-04-24T17:26:26.181482+0000 mgr.smithi028.zkmzde (mgr.14197) 488 : cluster [DBG] pgmap v435: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:27.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:27 smithi028 bash[18631]: audit 2024-04-24T17:26:26.511102+0000 mon.smithi028 (mon.0) 576 : audit [DBG] from='client.? 172.21.15.28:0/4176009476' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:27.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:27 smithi028 bash[18631]: audit 2024-04-24T17:26:26.511102+0000 mon.smithi028 (mon.0) 576 : audit [DBG] from='client.? 172.21.15.28:0/4176009476' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:28.084 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:26:28.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:28 smithi105 bash[20254]: audit 2024-04-24T17:26:27.840267+0000 mon.smithi028 (mon.0) 577 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:28.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:28 smithi105 bash[20254]: audit 2024-04-24T17:26:27.840267+0000 mon.smithi028 (mon.0) 577 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:28.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:28 smithi028 bash[18631]: audit 2024-04-24T17:26:27.840267+0000 mon.smithi028 (mon.0) 577 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:28.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:28 smithi028 bash[18631]: audit 2024-04-24T17:26:27.840267+0000 mon.smithi028 (mon.0) 577 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:29.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:29 smithi105 bash[20254]: cluster 2024-04-24T17:26:28.182428+0000 mgr.smithi028.zkmzde (mgr.14197) 489 : cluster [DBG] pgmap v436: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:29.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:29 smithi105 bash[20254]: cluster 2024-04-24T17:26:28.182428+0000 mgr.smithi028.zkmzde (mgr.14197) 489 : cluster [DBG] pgmap v436: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:29.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:29 smithi028 bash[18631]: cluster 2024-04-24T17:26:28.182428+0000 mgr.smithi028.zkmzde (mgr.14197) 489 : cluster [DBG] pgmap v436: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:29.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:29 smithi028 bash[18631]: cluster 2024-04-24T17:26:28.182428+0000 mgr.smithi028.zkmzde (mgr.14197) 489 : cluster [DBG] pgmap v436: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:31.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:31 smithi105 bash[20254]: cluster 2024-04-24T17:26:30.183464+0000 mgr.smithi028.zkmzde (mgr.14197) 490 : cluster [DBG] pgmap v437: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:31.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:31 smithi105 bash[20254]: cluster 2024-04-24T17:26:30.183464+0000 mgr.smithi028.zkmzde (mgr.14197) 490 : cluster [DBG] pgmap v437: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:31.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:31 smithi028 bash[18631]: cluster 2024-04-24T17:26:30.183464+0000 mgr.smithi028.zkmzde (mgr.14197) 490 : cluster [DBG] pgmap v437: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:31.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:31 smithi028 bash[18631]: cluster 2024-04-24T17:26:30.183464+0000 mgr.smithi028.zkmzde (mgr.14197) 490 : cluster [DBG] pgmap v437: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:32.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:32 smithi105 bash[20254]: audit 2024-04-24T17:26:31.433337+0000 mon.smithi028 (mon.0) 578 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:26:32.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:32 smithi105 bash[20254]: audit 2024-04-24T17:26:31.433337+0000 mon.smithi028 (mon.0) 578 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:26:32.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:32 smithi105 bash[20254]: audit 2024-04-24T17:26:31.435379+0000 mon.smithi028 (mon.0) 579 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:26:32.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:32 smithi105 bash[20254]: audit 2024-04-24T17:26:31.435379+0000 mon.smithi028 (mon.0) 579 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:26:32.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:32 smithi105 bash[20254]: audit 2024-04-24T17:26:31.447467+0000 mon.smithi028 (mon.0) 580 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:26:32.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:32 smithi105 bash[20254]: audit 2024-04-24T17:26:31.447467+0000 mon.smithi028 (mon.0) 580 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:26:32.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:32 smithi105 bash[20254]: audit 2024-04-24T17:26:31.455570+0000 mon.smithi028 (mon.0) 581 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:26:32.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:32 smithi105 bash[20254]: audit 2024-04-24T17:26:31.455570+0000 mon.smithi028 (mon.0) 581 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:26:32.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:32 smithi028 bash[18631]: audit 2024-04-24T17:26:31.433337+0000 mon.smithi028 (mon.0) 578 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:26:32.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:32 smithi028 bash[18631]: audit 2024-04-24T17:26:31.433337+0000 mon.smithi028 (mon.0) 578 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:26:32.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:32 smithi028 bash[18631]: audit 2024-04-24T17:26:31.435379+0000 mon.smithi028 (mon.0) 579 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:26:32.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:32 smithi028 bash[18631]: audit 2024-04-24T17:26:31.435379+0000 mon.smithi028 (mon.0) 579 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:26:32.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:32 smithi028 bash[18631]: audit 2024-04-24T17:26:31.447467+0000 mon.smithi028 (mon.0) 580 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:26:32.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:32 smithi028 bash[18631]: audit 2024-04-24T17:26:31.447467+0000 mon.smithi028 (mon.0) 580 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:26:32.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:32 smithi028 bash[18631]: audit 2024-04-24T17:26:31.455570+0000 mon.smithi028 (mon.0) 581 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:26:32.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:32 smithi028 bash[18631]: audit 2024-04-24T17:26:31.455570+0000 mon.smithi028 (mon.0) 581 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:26:32.640 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:26:33.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:33 smithi105 bash[20254]: cluster 2024-04-24T17:26:31.438434+0000 mgr.smithi028.zkmzde (mgr.14197) 491 : cluster [DBG] pgmap v438: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:33.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:33 smithi105 bash[20254]: cluster 2024-04-24T17:26:31.438434+0000 mgr.smithi028.zkmzde (mgr.14197) 491 : cluster [DBG] pgmap v438: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:33.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:33 smithi105 bash[20254]: cluster 2024-04-24T17:26:31.439714+0000 mgr.smithi028.zkmzde (mgr.14197) 492 : cluster [DBG] pgmap v439: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:33.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:33 smithi105 bash[20254]: cluster 2024-04-24T17:26:31.439714+0000 mgr.smithi028.zkmzde (mgr.14197) 492 : cluster [DBG] pgmap v439: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:33.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:33 smithi028 bash[18631]: cluster 2024-04-24T17:26:31.438434+0000 mgr.smithi028.zkmzde (mgr.14197) 491 : cluster [DBG] pgmap v438: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:33.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:33 smithi028 bash[18631]: cluster 2024-04-24T17:26:31.438434+0000 mgr.smithi028.zkmzde (mgr.14197) 491 : cluster [DBG] pgmap v438: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:33.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:33 smithi028 bash[18631]: cluster 2024-04-24T17:26:31.439714+0000 mgr.smithi028.zkmzde (mgr.14197) 492 : cluster [DBG] pgmap v439: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:33.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:33 smithi028 bash[18631]: cluster 2024-04-24T17:26:31.439714+0000 mgr.smithi028.zkmzde (mgr.14197) 492 : cluster [DBG] pgmap v439: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:33.766 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:26:34.342 INFO:teuthology.orchestra.run.smithi028.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-24T17:26:34.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:34 smithi105 bash[20254]: audit 2024-04-24T17:26:33.774667+0000 mon.smithi028 (mon.0) 582 : audit [DBG] from='client.? 172.21.15.28:0/168170421' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:34.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:34 smithi105 bash[20254]: audit 2024-04-24T17:26:33.774667+0000 mon.smithi028 (mon.0) 582 : audit [DBG] from='client.? 172.21.15.28:0/168170421' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:34.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:34 smithi028 bash[18631]: audit 2024-04-24T17:26:33.774667+0000 mon.smithi028 (mon.0) 582 : audit [DBG] from='client.? 172.21.15.28:0/168170421' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:34.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:34 smithi028 bash[18631]: audit 2024-04-24T17:26:33.774667+0000 mon.smithi028 (mon.0) 582 : audit [DBG] from='client.? 172.21.15.28:0/168170421' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:35.343 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:26:35.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:35 smithi105 bash[20254]: cluster 2024-04-24T17:26:33.440367+0000 mgr.smithi028.zkmzde (mgr.14197) 493 : cluster [DBG] pgmap v440: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:35.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:35 smithi105 bash[20254]: cluster 2024-04-24T17:26:33.440367+0000 mgr.smithi028.zkmzde (mgr.14197) 493 : cluster [DBG] pgmap v440: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:35.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:35 smithi028 bash[18631]: cluster 2024-04-24T17:26:33.440367+0000 mgr.smithi028.zkmzde (mgr.14197) 493 : cluster [DBG] pgmap v440: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:35.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:35 smithi028 bash[18631]: cluster 2024-04-24T17:26:33.440367+0000 mgr.smithi028.zkmzde (mgr.14197) 493 : cluster [DBG] pgmap v440: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:37.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:37 smithi028 bash[18631]: cluster 2024-04-24T17:26:35.440966+0000 mgr.smithi028.zkmzde (mgr.14197) 494 : cluster [DBG] pgmap v441: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:37.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:37 smithi028 bash[18631]: cluster 2024-04-24T17:26:35.440966+0000 mgr.smithi028.zkmzde (mgr.14197) 494 : cluster [DBG] pgmap v441: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:37.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:37 smithi105 bash[20254]: cluster 2024-04-24T17:26:35.440966+0000 mgr.smithi028.zkmzde (mgr.14197) 494 : cluster [DBG] pgmap v441: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:37.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:37 smithi105 bash[20254]: cluster 2024-04-24T17:26:35.440966+0000 mgr.smithi028.zkmzde (mgr.14197) 494 : cluster [DBG] pgmap v441: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:39.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:39 smithi028 bash[18631]: cluster 2024-04-24T17:26:37.441950+0000 mgr.smithi028.zkmzde (mgr.14197) 495 : cluster [DBG] pgmap v442: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:39.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:39 smithi028 bash[18631]: cluster 2024-04-24T17:26:37.441950+0000 mgr.smithi028.zkmzde (mgr.14197) 495 : cluster [DBG] pgmap v442: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:39.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:39 smithi105 bash[20254]: cluster 2024-04-24T17:26:37.441950+0000 mgr.smithi028.zkmzde (mgr.14197) 495 : cluster [DBG] pgmap v442: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:39.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:39 smithi105 bash[20254]: cluster 2024-04-24T17:26:37.441950+0000 mgr.smithi028.zkmzde (mgr.14197) 495 : cluster [DBG] pgmap v442: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:40.117 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:26:41.397 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:26:41.563 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:41 smithi028 bash[18631]: cluster 2024-04-24T17:26:39.442927+0000 mgr.smithi028.zkmzde (mgr.14197) 496 : cluster [DBG] pgmap v443: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:41.563 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:41 smithi028 bash[18631]: cluster 2024-04-24T17:26:39.442927+0000 mgr.smithi028.zkmzde (mgr.14197) 496 : cluster [DBG] pgmap v443: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:41.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:41 smithi105 bash[20254]: cluster 2024-04-24T17:26:39.442927+0000 mgr.smithi028.zkmzde (mgr.14197) 496 : cluster [DBG] pgmap v443: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:41.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:41 smithi105 bash[20254]: cluster 2024-04-24T17:26:39.442927+0000 mgr.smithi028.zkmzde (mgr.14197) 496 : cluster [DBG] pgmap v443: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:41.949 INFO:teuthology.orchestra.run.smithi028.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-24T17:26:42.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:42 smithi105 bash[20254]: audit 2024-04-24T17:26:41.405503+0000 mon.smithi028 (mon.0) 583 : audit [DBG] from='client.? 172.21.15.28:0/50037040' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:42.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:42 smithi105 bash[20254]: audit 2024-04-24T17:26:41.405503+0000 mon.smithi028 (mon.0) 583 : audit [DBG] from='client.? 172.21.15.28:0/50037040' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:42.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:42 smithi028 bash[18631]: audit 2024-04-24T17:26:41.405503+0000 mon.smithi028 (mon.0) 583 : audit [DBG] from='client.? 172.21.15.28:0/50037040' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:42.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:42 smithi028 bash[18631]: audit 2024-04-24T17:26:41.405503+0000 mon.smithi028 (mon.0) 583 : audit [DBG] from='client.? 172.21.15.28:0/50037040' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:42.950 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:26:43.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:43 smithi105 bash[20254]: cluster 2024-04-24T17:26:41.443724+0000 mgr.smithi028.zkmzde (mgr.14197) 497 : cluster [DBG] pgmap v444: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:43.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:43 smithi105 bash[20254]: cluster 2024-04-24T17:26:41.443724+0000 mgr.smithi028.zkmzde (mgr.14197) 497 : cluster [DBG] pgmap v444: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:43.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:43 smithi105 bash[20254]: audit 2024-04-24T17:26:42.840674+0000 mon.smithi028 (mon.0) 584 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:43.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:43 smithi105 bash[20254]: audit 2024-04-24T17:26:42.840674+0000 mon.smithi028 (mon.0) 584 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:43.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:43 smithi028 bash[18631]: cluster 2024-04-24T17:26:41.443724+0000 mgr.smithi028.zkmzde (mgr.14197) 497 : cluster [DBG] pgmap v444: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:43.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:43 smithi028 bash[18631]: cluster 2024-04-24T17:26:41.443724+0000 mgr.smithi028.zkmzde (mgr.14197) 497 : cluster [DBG] pgmap v444: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:43.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:43 smithi028 bash[18631]: audit 2024-04-24T17:26:42.840674+0000 mon.smithi028 (mon.0) 584 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:43.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:43 smithi028 bash[18631]: audit 2024-04-24T17:26:42.840674+0000 mon.smithi028 (mon.0) 584 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:45.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:45 smithi105 bash[20254]: cluster 2024-04-24T17:26:43.444726+0000 mgr.smithi028.zkmzde (mgr.14197) 498 : cluster [DBG] pgmap v445: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:45.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:45 smithi105 bash[20254]: cluster 2024-04-24T17:26:43.444726+0000 mgr.smithi028.zkmzde (mgr.14197) 498 : cluster [DBG] pgmap v445: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:45.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:45 smithi028 bash[18631]: cluster 2024-04-24T17:26:43.444726+0000 mgr.smithi028.zkmzde (mgr.14197) 498 : cluster [DBG] pgmap v445: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:45.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:45 smithi028 bash[18631]: cluster 2024-04-24T17:26:43.444726+0000 mgr.smithi028.zkmzde (mgr.14197) 498 : cluster [DBG] pgmap v445: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:47.720 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:26:47.743 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:47 smithi028 bash[18631]: cluster 2024-04-24T17:26:45.445840+0000 mgr.smithi028.zkmzde (mgr.14197) 499 : cluster [DBG] pgmap v446: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:47.743 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:47 smithi028 bash[18631]: cluster 2024-04-24T17:26:45.445840+0000 mgr.smithi028.zkmzde (mgr.14197) 499 : cluster [DBG] pgmap v446: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:47.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:47 smithi105 bash[20254]: cluster 2024-04-24T17:26:45.445840+0000 mgr.smithi028.zkmzde (mgr.14197) 499 : cluster [DBG] pgmap v446: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:47.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:47 smithi105 bash[20254]: cluster 2024-04-24T17:26:45.445840+0000 mgr.smithi028.zkmzde (mgr.14197) 499 : cluster [DBG] pgmap v446: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:48.885 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:26:49.498 INFO:teuthology.orchestra.run.smithi028.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-24T17:26:49.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:49 smithi105 bash[20254]: cluster 2024-04-24T17:26:47.446804+0000 mgr.smithi028.zkmzde (mgr.14197) 500 : cluster [DBG] pgmap v447: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:49.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:49 smithi105 bash[20254]: cluster 2024-04-24T17:26:47.446804+0000 mgr.smithi028.zkmzde (mgr.14197) 500 : cluster [DBG] pgmap v447: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:49.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:49 smithi105 bash[20254]: audit 2024-04-24T17:26:48.893070+0000 mon.smithi028 (mon.0) 585 : audit [DBG] from='client.? 172.21.15.28:0/1027067889' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:49.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:49 smithi105 bash[20254]: audit 2024-04-24T17:26:48.893070+0000 mon.smithi028 (mon.0) 585 : audit [DBG] from='client.? 172.21.15.28:0/1027067889' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:49.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:49 smithi028 bash[18631]: cluster 2024-04-24T17:26:47.446804+0000 mgr.smithi028.zkmzde (mgr.14197) 500 : cluster [DBG] pgmap v447: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:49.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:49 smithi028 bash[18631]: cluster 2024-04-24T17:26:47.446804+0000 mgr.smithi028.zkmzde (mgr.14197) 500 : cluster [DBG] pgmap v447: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:49.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:49 smithi028 bash[18631]: audit 2024-04-24T17:26:48.893070+0000 mon.smithi028 (mon.0) 585 : audit [DBG] from='client.? 172.21.15.28:0/1027067889' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:49.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:49 smithi028 bash[18631]: audit 2024-04-24T17:26:48.893070+0000 mon.smithi028 (mon.0) 585 : audit [DBG] from='client.? 172.21.15.28:0/1027067889' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:50.499 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:26:51.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:51 smithi105 bash[20254]: cluster 2024-04-24T17:26:49.447796+0000 mgr.smithi028.zkmzde (mgr.14197) 501 : cluster [DBG] pgmap v448: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:51.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:51 smithi105 bash[20254]: cluster 2024-04-24T17:26:49.447796+0000 mgr.smithi028.zkmzde (mgr.14197) 501 : cluster [DBG] pgmap v448: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:51.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:51 smithi028 bash[18631]: cluster 2024-04-24T17:26:49.447796+0000 mgr.smithi028.zkmzde (mgr.14197) 501 : cluster [DBG] pgmap v448: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:51.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:51 smithi028 bash[18631]: cluster 2024-04-24T17:26:49.447796+0000 mgr.smithi028.zkmzde (mgr.14197) 501 : cluster [DBG] pgmap v448: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:53.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:53 smithi105 bash[20254]: cluster 2024-04-24T17:26:51.448743+0000 mgr.smithi028.zkmzde (mgr.14197) 502 : cluster [DBG] pgmap v449: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:53.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:53 smithi105 bash[20254]: cluster 2024-04-24T17:26:51.448743+0000 mgr.smithi028.zkmzde (mgr.14197) 502 : cluster [DBG] pgmap v449: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:53.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:53 smithi028 bash[18631]: cluster 2024-04-24T17:26:51.448743+0000 mgr.smithi028.zkmzde (mgr.14197) 502 : cluster [DBG] pgmap v449: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:53.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:53 smithi028 bash[18631]: cluster 2024-04-24T17:26:51.448743+0000 mgr.smithi028.zkmzde (mgr.14197) 502 : cluster [DBG] pgmap v449: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:55.273 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:26:55.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:55 smithi105 bash[20254]: cluster 2024-04-24T17:26:53.449855+0000 mgr.smithi028.zkmzde (mgr.14197) 503 : cluster [DBG] pgmap v450: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:55.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:55 smithi105 bash[20254]: cluster 2024-04-24T17:26:53.449855+0000 mgr.smithi028.zkmzde (mgr.14197) 503 : cluster [DBG] pgmap v450: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:55.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:55 smithi028 bash[18631]: cluster 2024-04-24T17:26:53.449855+0000 mgr.smithi028.zkmzde (mgr.14197) 503 : cluster [DBG] pgmap v450: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:55.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:55 smithi028 bash[18631]: cluster 2024-04-24T17:26:53.449855+0000 mgr.smithi028.zkmzde (mgr.14197) 503 : cluster [DBG] pgmap v450: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:56.530 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:26:57.165 INFO:teuthology.orchestra.run.smithi028.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-24T17:26:57.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:57 smithi028 bash[18631]: cluster 2024-04-24T17:26:55.450899+0000 mgr.smithi028.zkmzde (mgr.14197) 504 : cluster [DBG] pgmap v451: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:57.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:57 smithi028 bash[18631]: cluster 2024-04-24T17:26:55.450899+0000 mgr.smithi028.zkmzde (mgr.14197) 504 : cluster [DBG] pgmap v451: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:57.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:57 smithi028 bash[18631]: audit 2024-04-24T17:26:56.539217+0000 mon.smithi028 (mon.0) 586 : audit [DBG] from='client.? 172.21.15.28:0/1068654985' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:57.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:57 smithi028 bash[18631]: audit 2024-04-24T17:26:56.539217+0000 mon.smithi028 (mon.0) 586 : audit [DBG] from='client.? 172.21.15.28:0/1068654985' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:57.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:57 smithi105 bash[20254]: cluster 2024-04-24T17:26:55.450899+0000 mgr.smithi028.zkmzde (mgr.14197) 504 : cluster [DBG] pgmap v451: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:57.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:57 smithi105 bash[20254]: cluster 2024-04-24T17:26:55.450899+0000 mgr.smithi028.zkmzde (mgr.14197) 504 : cluster [DBG] pgmap v451: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:57.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:57 smithi105 bash[20254]: audit 2024-04-24T17:26:56.539217+0000 mon.smithi028 (mon.0) 586 : audit [DBG] from='client.? 172.21.15.28:0/1068654985' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:57.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:57 smithi105 bash[20254]: audit 2024-04-24T17:26:56.539217+0000 mon.smithi028 (mon.0) 586 : audit [DBG] from='client.? 172.21.15.28:0/1068654985' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:26:58.167 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:26:58.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:58 smithi028 bash[18631]: audit 2024-04-24T17:26:57.841162+0000 mon.smithi028 (mon.0) 587 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:58.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:58 smithi028 bash[18631]: audit 2024-04-24T17:26:57.841162+0000 mon.smithi028 (mon.0) 587 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:58.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:58 smithi105 bash[20254]: audit 2024-04-24T17:26:57.841162+0000 mon.smithi028 (mon.0) 587 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:58.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:58 smithi105 bash[20254]: audit 2024-04-24T17:26:57.841162+0000 mon.smithi028 (mon.0) 587 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:26:59.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:59 smithi105 bash[20254]: cluster 2024-04-24T17:26:57.451896+0000 mgr.smithi028.zkmzde (mgr.14197) 505 : cluster [DBG] pgmap v452: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:59.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:26:59 smithi105 bash[20254]: cluster 2024-04-24T17:26:57.451896+0000 mgr.smithi028.zkmzde (mgr.14197) 505 : cluster [DBG] pgmap v452: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:59.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:59 smithi028 bash[18631]: cluster 2024-04-24T17:26:57.451896+0000 mgr.smithi028.zkmzde (mgr.14197) 505 : cluster [DBG] pgmap v452: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:26:59.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:26:59 smithi028 bash[18631]: cluster 2024-04-24T17:26:57.451896+0000 mgr.smithi028.zkmzde (mgr.14197) 505 : cluster [DBG] pgmap v452: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:01.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:01 smithi105 bash[20254]: cluster 2024-04-24T17:26:59.452936+0000 mgr.smithi028.zkmzde (mgr.14197) 506 : cluster [DBG] pgmap v453: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:01.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:01 smithi105 bash[20254]: cluster 2024-04-24T17:26:59.452936+0000 mgr.smithi028.zkmzde (mgr.14197) 506 : cluster [DBG] pgmap v453: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:01.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:01 smithi028 bash[18631]: cluster 2024-04-24T17:26:59.452936+0000 mgr.smithi028.zkmzde (mgr.14197) 506 : cluster [DBG] pgmap v453: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:01.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:01 smithi028 bash[18631]: cluster 2024-04-24T17:26:59.452936+0000 mgr.smithi028.zkmzde (mgr.14197) 506 : cluster [DBG] pgmap v453: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:02.939 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:27:03.661 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:03 smithi028 bash[18631]: cluster 2024-04-24T17:27:01.453967+0000 mgr.smithi028.zkmzde (mgr.14197) 507 : cluster [DBG] pgmap v454: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:03.661 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:03 smithi028 bash[18631]: cluster 2024-04-24T17:27:01.453967+0000 mgr.smithi028.zkmzde (mgr.14197) 507 : cluster [DBG] pgmap v454: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:03.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:03 smithi105 bash[20254]: cluster 2024-04-24T17:27:01.453967+0000 mgr.smithi028.zkmzde (mgr.14197) 507 : cluster [DBG] pgmap v454: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:03.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:03 smithi105 bash[20254]: cluster 2024-04-24T17:27:01.453967+0000 mgr.smithi028.zkmzde (mgr.14197) 507 : cluster [DBG] pgmap v454: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:04.072 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:27:04.731 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:04 smithi028 bash[18631]: audit 2024-04-24T17:27:04.080956+0000 mon.smithi028 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.28:0/3234254372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:04.731 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:04 smithi028 bash[18631]: audit 2024-04-24T17:27:04.080956+0000 mon.smithi028 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.28:0/3234254372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:04.732 INFO:teuthology.orchestra.run.smithi028.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-24T17:27:04.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:04 smithi105 bash[20254]: audit 2024-04-24T17:27:04.080956+0000 mon.smithi028 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.28:0/3234254372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:04.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:04 smithi105 bash[20254]: audit 2024-04-24T17:27:04.080956+0000 mon.smithi028 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.28:0/3234254372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:05.733 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:27:05.744 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:05 smithi028 bash[18631]: cluster 2024-04-24T17:27:03.454960+0000 mgr.smithi028.zkmzde (mgr.14197) 508 : cluster [DBG] pgmap v455: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:05.744 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:05 smithi028 bash[18631]: cluster 2024-04-24T17:27:03.454960+0000 mgr.smithi028.zkmzde (mgr.14197) 508 : cluster [DBG] pgmap v455: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:05.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:05 smithi105 bash[20254]: cluster 2024-04-24T17:27:03.454960+0000 mgr.smithi028.zkmzde (mgr.14197) 508 : cluster [DBG] pgmap v455: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:05.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:05 smithi105 bash[20254]: cluster 2024-04-24T17:27:03.454960+0000 mgr.smithi028.zkmzde (mgr.14197) 508 : cluster [DBG] pgmap v455: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:07.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:07 smithi105 bash[20254]: cluster 2024-04-24T17:27:05.455959+0000 mgr.smithi028.zkmzde (mgr.14197) 509 : cluster [DBG] pgmap v456: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:07.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:07 smithi105 bash[20254]: cluster 2024-04-24T17:27:05.455959+0000 mgr.smithi028.zkmzde (mgr.14197) 509 : cluster [DBG] pgmap v456: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:07.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:07 smithi028 bash[18631]: cluster 2024-04-24T17:27:05.455959+0000 mgr.smithi028.zkmzde (mgr.14197) 509 : cluster [DBG] pgmap v456: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:07.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:07 smithi028 bash[18631]: cluster 2024-04-24T17:27:05.455959+0000 mgr.smithi028.zkmzde (mgr.14197) 509 : cluster [DBG] pgmap v456: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:09.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:09 smithi105 bash[20254]: cluster 2024-04-24T17:27:07.456965+0000 mgr.smithi028.zkmzde (mgr.14197) 510 : cluster [DBG] pgmap v457: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:09.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:09 smithi105 bash[20254]: cluster 2024-04-24T17:27:07.456965+0000 mgr.smithi028.zkmzde (mgr.14197) 510 : cluster [DBG] pgmap v457: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:09.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:09 smithi028 bash[18631]: cluster 2024-04-24T17:27:07.456965+0000 mgr.smithi028.zkmzde (mgr.14197) 510 : cluster [DBG] pgmap v457: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:09.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:09 smithi028 bash[18631]: cluster 2024-04-24T17:27:07.456965+0000 mgr.smithi028.zkmzde (mgr.14197) 510 : cluster [DBG] pgmap v457: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:10.510 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:27:11.721 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:27:11.736 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:11 smithi028 bash[18631]: cluster 2024-04-24T17:27:09.457968+0000 mgr.smithi028.zkmzde (mgr.14197) 511 : cluster [DBG] pgmap v458: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:11.736 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:11 smithi028 bash[18631]: cluster 2024-04-24T17:27:09.457968+0000 mgr.smithi028.zkmzde (mgr.14197) 511 : cluster [DBG] pgmap v458: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:11.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:11 smithi105 bash[20254]: cluster 2024-04-24T17:27:09.457968+0000 mgr.smithi028.zkmzde (mgr.14197) 511 : cluster [DBG] pgmap v458: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:11.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:11 smithi105 bash[20254]: cluster 2024-04-24T17:27:09.457968+0000 mgr.smithi028.zkmzde (mgr.14197) 511 : cluster [DBG] pgmap v458: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:12.381 INFO:teuthology.orchestra.run.smithi028.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-24T17:27:12.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:12 smithi105 bash[20254]: audit 2024-04-24T17:27:11.729404+0000 mon.smithi028 (mon.0) 589 : audit [DBG] from='client.? 172.21.15.28:0/3617696058' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:12.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:12 smithi105 bash[20254]: audit 2024-04-24T17:27:11.729404+0000 mon.smithi028 (mon.0) 589 : audit [DBG] from='client.? 172.21.15.28:0/3617696058' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:12.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:12 smithi028 bash[18631]: audit 2024-04-24T17:27:11.729404+0000 mon.smithi028 (mon.0) 589 : audit [DBG] from='client.? 172.21.15.28:0/3617696058' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:12.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:12 smithi028 bash[18631]: audit 2024-04-24T17:27:11.729404+0000 mon.smithi028 (mon.0) 589 : audit [DBG] from='client.? 172.21.15.28:0/3617696058' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:13.382 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:27:13.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:13 smithi105 bash[20254]: cluster 2024-04-24T17:27:11.458486+0000 mgr.smithi028.zkmzde (mgr.14197) 512 : cluster [DBG] pgmap v459: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:13.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:13 smithi105 bash[20254]: cluster 2024-04-24T17:27:11.458486+0000 mgr.smithi028.zkmzde (mgr.14197) 512 : cluster [DBG] pgmap v459: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:13.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:13 smithi105 bash[20254]: audit 2024-04-24T17:27:12.841834+0000 mon.smithi028 (mon.0) 590 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:13.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:13 smithi105 bash[20254]: audit 2024-04-24T17:27:12.841834+0000 mon.smithi028 (mon.0) 590 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:13.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:13 smithi028 bash[18631]: cluster 2024-04-24T17:27:11.458486+0000 mgr.smithi028.zkmzde (mgr.14197) 512 : cluster [DBG] pgmap v459: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:13.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:13 smithi028 bash[18631]: cluster 2024-04-24T17:27:11.458486+0000 mgr.smithi028.zkmzde (mgr.14197) 512 : cluster [DBG] pgmap v459: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:13.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:13 smithi028 bash[18631]: audit 2024-04-24T17:27:12.841834+0000 mon.smithi028 (mon.0) 590 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:13.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:13 smithi028 bash[18631]: audit 2024-04-24T17:27:12.841834+0000 mon.smithi028 (mon.0) 590 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:15.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:15 smithi105 bash[20254]: cluster 2024-04-24T17:27:13.459447+0000 mgr.smithi028.zkmzde (mgr.14197) 513 : cluster [DBG] pgmap v460: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:15.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:15 smithi105 bash[20254]: cluster 2024-04-24T17:27:13.459447+0000 mgr.smithi028.zkmzde (mgr.14197) 513 : cluster [DBG] pgmap v460: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:15.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:15 smithi028 bash[18631]: cluster 2024-04-24T17:27:13.459447+0000 mgr.smithi028.zkmzde (mgr.14197) 513 : cluster [DBG] pgmap v460: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:15.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:15 smithi028 bash[18631]: cluster 2024-04-24T17:27:13.459447+0000 mgr.smithi028.zkmzde (mgr.14197) 513 : cluster [DBG] pgmap v460: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:17.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:17 smithi105 bash[20254]: cluster 2024-04-24T17:27:15.460425+0000 mgr.smithi028.zkmzde (mgr.14197) 514 : cluster [DBG] pgmap v461: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:17.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:17 smithi105 bash[20254]: cluster 2024-04-24T17:27:15.460425+0000 mgr.smithi028.zkmzde (mgr.14197) 514 : cluster [DBG] pgmap v461: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:17.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:17 smithi028 bash[18631]: cluster 2024-04-24T17:27:15.460425+0000 mgr.smithi028.zkmzde (mgr.14197) 514 : cluster [DBG] pgmap v461: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:17.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:17 smithi028 bash[18631]: cluster 2024-04-24T17:27:15.460425+0000 mgr.smithi028.zkmzde (mgr.14197) 514 : cluster [DBG] pgmap v461: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:18.166 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:27:19.399 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:27:19.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:19 smithi105 bash[20254]: cluster 2024-04-24T17:27:17.461387+0000 mgr.smithi028.zkmzde (mgr.14197) 515 : cluster [DBG] pgmap v462: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:19.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:19 smithi105 bash[20254]: cluster 2024-04-24T17:27:17.461387+0000 mgr.smithi028.zkmzde (mgr.14197) 515 : cluster [DBG] pgmap v462: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:19.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:19 smithi028 bash[18631]: cluster 2024-04-24T17:27:17.461387+0000 mgr.smithi028.zkmzde (mgr.14197) 515 : cluster [DBG] pgmap v462: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:19.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:19 smithi028 bash[18631]: cluster 2024-04-24T17:27:17.461387+0000 mgr.smithi028.zkmzde (mgr.14197) 515 : cluster [DBG] pgmap v462: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:20.008 INFO:teuthology.orchestra.run.smithi028.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-24T17:27:20.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:20 smithi105 bash[20254]: audit 2024-04-24T17:27:19.408237+0000 mon.smithi028 (mon.0) 591 : audit [DBG] from='client.? 172.21.15.28:0/4246705101' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:20.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:20 smithi105 bash[20254]: audit 2024-04-24T17:27:19.408237+0000 mon.smithi028 (mon.0) 591 : audit [DBG] from='client.? 172.21.15.28:0/4246705101' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:20.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:20 smithi028 bash[18631]: audit 2024-04-24T17:27:19.408237+0000 mon.smithi028 (mon.0) 591 : audit [DBG] from='client.? 172.21.15.28:0/4246705101' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:20.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:20 smithi028 bash[18631]: audit 2024-04-24T17:27:19.408237+0000 mon.smithi028 (mon.0) 591 : audit [DBG] from='client.? 172.21.15.28:0/4246705101' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:21.009 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:27:21.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:21 smithi105 bash[20254]: cluster 2024-04-24T17:27:19.461852+0000 mgr.smithi028.zkmzde (mgr.14197) 516 : cluster [DBG] pgmap v463: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:21.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:21 smithi105 bash[20254]: cluster 2024-04-24T17:27:19.461852+0000 mgr.smithi028.zkmzde (mgr.14197) 516 : cluster [DBG] pgmap v463: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:21.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:21 smithi028 bash[18631]: cluster 2024-04-24T17:27:19.461852+0000 mgr.smithi028.zkmzde (mgr.14197) 516 : cluster [DBG] pgmap v463: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:21.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:21 smithi028 bash[18631]: cluster 2024-04-24T17:27:19.461852+0000 mgr.smithi028.zkmzde (mgr.14197) 516 : cluster [DBG] pgmap v463: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:23.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:23 smithi105 bash[20254]: cluster 2024-04-24T17:27:21.462833+0000 mgr.smithi028.zkmzde (mgr.14197) 517 : cluster [DBG] pgmap v464: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:23.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:23 smithi105 bash[20254]: cluster 2024-04-24T17:27:21.462833+0000 mgr.smithi028.zkmzde (mgr.14197) 517 : cluster [DBG] pgmap v464: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:23.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:23 smithi028 bash[18631]: cluster 2024-04-24T17:27:21.462833+0000 mgr.smithi028.zkmzde (mgr.14197) 517 : cluster [DBG] pgmap v464: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:23.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:23 smithi028 bash[18631]: cluster 2024-04-24T17:27:21.462833+0000 mgr.smithi028.zkmzde (mgr.14197) 517 : cluster [DBG] pgmap v464: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:25.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:25 smithi105 bash[20254]: cluster 2024-04-24T17:27:23.463806+0000 mgr.smithi028.zkmzde (mgr.14197) 518 : cluster [DBG] pgmap v465: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:25.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:25 smithi105 bash[20254]: cluster 2024-04-24T17:27:23.463806+0000 mgr.smithi028.zkmzde (mgr.14197) 518 : cluster [DBG] pgmap v465: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:25.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:25 smithi028 bash[18631]: cluster 2024-04-24T17:27:23.463806+0000 mgr.smithi028.zkmzde (mgr.14197) 518 : cluster [DBG] pgmap v465: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:25.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:25 smithi028 bash[18631]: cluster 2024-04-24T17:27:23.463806+0000 mgr.smithi028.zkmzde (mgr.14197) 518 : cluster [DBG] pgmap v465: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:25.781 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:27:26.966 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:27:27.511 INFO:teuthology.orchestra.run.smithi028.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-24T17:27:27.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:27 smithi105 bash[20254]: cluster 2024-04-24T17:27:25.464781+0000 mgr.smithi028.zkmzde (mgr.14197) 519 : cluster [DBG] pgmap v466: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:27.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:27 smithi105 bash[20254]: cluster 2024-04-24T17:27:25.464781+0000 mgr.smithi028.zkmzde (mgr.14197) 519 : cluster [DBG] pgmap v466: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:27.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:27 smithi105 bash[20254]: audit 2024-04-24T17:27:26.974456+0000 mon.smithi028 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.28:0/172003027' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:27.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:27 smithi105 bash[20254]: audit 2024-04-24T17:27:26.974456+0000 mon.smithi028 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.28:0/172003027' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:27.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:27 smithi028 bash[18631]: cluster 2024-04-24T17:27:25.464781+0000 mgr.smithi028.zkmzde (mgr.14197) 519 : cluster [DBG] pgmap v466: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:27.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:27 smithi028 bash[18631]: cluster 2024-04-24T17:27:25.464781+0000 mgr.smithi028.zkmzde (mgr.14197) 519 : cluster [DBG] pgmap v466: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:27.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:27 smithi028 bash[18631]: audit 2024-04-24T17:27:26.974456+0000 mon.smithi028 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.28:0/172003027' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:27.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:27 smithi028 bash[18631]: audit 2024-04-24T17:27:26.974456+0000 mon.smithi028 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.28:0/172003027' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:28.513 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:27:28.524 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:28 smithi028 bash[18631]: audit 2024-04-24T17:27:27.842266+0000 mon.smithi028 (mon.0) 593 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:28.524 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:28 smithi028 bash[18631]: audit 2024-04-24T17:27:27.842266+0000 mon.smithi028 (mon.0) 593 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:28.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:28 smithi105 bash[20254]: audit 2024-04-24T17:27:27.842266+0000 mon.smithi028 (mon.0) 593 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:28.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:28 smithi105 bash[20254]: audit 2024-04-24T17:27:27.842266+0000 mon.smithi028 (mon.0) 593 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:29.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:29 smithi105 bash[20254]: cluster 2024-04-24T17:27:27.465885+0000 mgr.smithi028.zkmzde (mgr.14197) 520 : cluster [DBG] pgmap v467: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:29.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:29 smithi105 bash[20254]: cluster 2024-04-24T17:27:27.465885+0000 mgr.smithi028.zkmzde (mgr.14197) 520 : cluster [DBG] pgmap v467: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:29.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:29 smithi028 bash[18631]: cluster 2024-04-24T17:27:27.465885+0000 mgr.smithi028.zkmzde (mgr.14197) 520 : cluster [DBG] pgmap v467: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:29.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:29 smithi028 bash[18631]: cluster 2024-04-24T17:27:27.465885+0000 mgr.smithi028.zkmzde (mgr.14197) 520 : cluster [DBG] pgmap v467: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:30.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:30 smithi105 bash[20254]: cluster 2024-04-24T17:27:29.466890+0000 mgr.smithi028.zkmzde (mgr.14197) 521 : cluster [DBG] pgmap v468: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:30.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:30 smithi105 bash[20254]: cluster 2024-04-24T17:27:29.466890+0000 mgr.smithi028.zkmzde (mgr.14197) 521 : cluster [DBG] pgmap v468: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:30.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:30 smithi028 bash[18631]: cluster 2024-04-24T17:27:29.466890+0000 mgr.smithi028.zkmzde (mgr.14197) 521 : cluster [DBG] pgmap v468: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:30.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:30 smithi028 bash[18631]: cluster 2024-04-24T17:27:29.466890+0000 mgr.smithi028.zkmzde (mgr.14197) 521 : cluster [DBG] pgmap v468: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:32.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:32 smithi105 bash[20254]: cluster 2024-04-24T17:27:31.467901+0000 mgr.smithi028.zkmzde (mgr.14197) 522 : cluster [DBG] pgmap v469: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:32.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:32 smithi105 bash[20254]: cluster 2024-04-24T17:27:31.467901+0000 mgr.smithi028.zkmzde (mgr.14197) 522 : cluster [DBG] pgmap v469: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:32.767 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:32 smithi105 bash[20254]: audit 2024-04-24T17:27:31.552741+0000 mon.smithi028 (mon.0) 594 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:27:32.768 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:32 smithi105 bash[20254]: audit 2024-04-24T17:27:31.552741+0000 mon.smithi028 (mon.0) 594 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:27:32.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:32 smithi028 bash[18631]: cluster 2024-04-24T17:27:31.467901+0000 mgr.smithi028.zkmzde (mgr.14197) 522 : cluster [DBG] pgmap v469: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:32.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:32 smithi028 bash[18631]: cluster 2024-04-24T17:27:31.467901+0000 mgr.smithi028.zkmzde (mgr.14197) 522 : cluster [DBG] pgmap v469: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:32.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:32 smithi028 bash[18631]: audit 2024-04-24T17:27:31.552741+0000 mon.smithi028 (mon.0) 594 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:27:32.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:32 smithi028 bash[18631]: audit 2024-04-24T17:27:31.552741+0000 mon.smithi028 (mon.0) 594 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-24T17:27:33.292 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:27:34.487 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:27:34.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:34 smithi028 bash[18631]: cluster 2024-04-24T17:27:33.468915+0000 mgr.smithi028.zkmzde (mgr.14197) 523 : cluster [DBG] pgmap v470: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:34.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:34 smithi028 bash[18631]: cluster 2024-04-24T17:27:33.468915+0000 mgr.smithi028.zkmzde (mgr.14197) 523 : cluster [DBG] pgmap v470: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:34.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:34 smithi028 bash[18631]: audit 2024-04-24T17:27:34.496363+0000 mon.smithi028 (mon.0) 595 : audit [DBG] from='client.? 172.21.15.28:0/2276004546' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:34.777 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:34 smithi028 bash[18631]: audit 2024-04-24T17:27:34.496363+0000 mon.smithi028 (mon.0) 595 : audit [DBG] from='client.? 172.21.15.28:0/2276004546' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:35.017 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:34 smithi105 bash[20254]: cluster 2024-04-24T17:27:33.468915+0000 mgr.smithi028.zkmzde (mgr.14197) 523 : cluster [DBG] pgmap v470: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:35.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:34 smithi105 bash[20254]: cluster 2024-04-24T17:27:33.468915+0000 mgr.smithi028.zkmzde (mgr.14197) 523 : cluster [DBG] pgmap v470: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:35.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:34 smithi105 bash[20254]: audit 2024-04-24T17:27:34.496363+0000 mon.smithi028 (mon.0) 595 : audit [DBG] from='client.? 172.21.15.28:0/2276004546' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:35.018 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:34 smithi105 bash[20254]: audit 2024-04-24T17:27:34.496363+0000 mon.smithi028 (mon.0) 595 : audit [DBG] from='client.? 172.21.15.28:0/2276004546' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:35.089 INFO:teuthology.orchestra.run.smithi028.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-24T17:27:36.090 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:27:36.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:36 smithi028 bash[18631]: cluster 2024-04-24T17:27:35.469913+0000 mgr.smithi028.zkmzde (mgr.14197) 524 : cluster [DBG] pgmap v471: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:36.776 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:36 smithi028 bash[18631]: cluster 2024-04-24T17:27:35.469913+0000 mgr.smithi028.zkmzde (mgr.14197) 524 : cluster [DBG] pgmap v471: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:37.017 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:36 smithi105 bash[20254]: cluster 2024-04-24T17:27:35.469913+0000 mgr.smithi028.zkmzde (mgr.14197) 524 : cluster [DBG] pgmap v471: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:37.017 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:36 smithi105 bash[20254]: cluster 2024-04-24T17:27:35.469913+0000 mgr.smithi028.zkmzde (mgr.14197) 524 : cluster [DBG] pgmap v471: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:38.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:38 smithi105 bash[20254]: audit 2024-04-24T17:27:37.001600+0000 mon.smithi028 (mon.0) 596 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:27:38.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:38 smithi105 bash[20254]: audit 2024-04-24T17:27:37.001600+0000 mon.smithi028 (mon.0) 596 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:27:38.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:38 smithi028 bash[18631]: audit 2024-04-24T17:27:37.001600+0000 mon.smithi028 (mon.0) 596 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:27:38.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:38 smithi028 bash[18631]: audit 2024-04-24T17:27:37.001600+0000 mon.smithi028 (mon.0) 596 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:27:39.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:39 smithi105 bash[20254]: cluster 2024-04-24T17:27:37.470419+0000 mgr.smithi028.zkmzde (mgr.14197) 525 : cluster [DBG] pgmap v472: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:39.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:39 smithi105 bash[20254]: cluster 2024-04-24T17:27:37.470419+0000 mgr.smithi028.zkmzde (mgr.14197) 525 : cluster [DBG] pgmap v472: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:39.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:39 smithi028 bash[18631]: cluster 2024-04-24T17:27:37.470419+0000 mgr.smithi028.zkmzde (mgr.14197) 525 : cluster [DBG] pgmap v472: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:39.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:39 smithi028 bash[18631]: cluster 2024-04-24T17:27:37.470419+0000 mgr.smithi028.zkmzde (mgr.14197) 525 : cluster [DBG] pgmap v472: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:40.646 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:27:41.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:41 smithi105 bash[20254]: cluster 2024-04-24T17:27:39.471396+0000 mgr.smithi028.zkmzde (mgr.14197) 526 : cluster [DBG] pgmap v473: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:41.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:41 smithi105 bash[20254]: cluster 2024-04-24T17:27:39.471396+0000 mgr.smithi028.zkmzde (mgr.14197) 526 : cluster [DBG] pgmap v473: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:41.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:41 smithi028 bash[18631]: cluster 2024-04-24T17:27:39.471396+0000 mgr.smithi028.zkmzde (mgr.14197) 526 : cluster [DBG] pgmap v473: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:41.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:41 smithi028 bash[18631]: cluster 2024-04-24T17:27:39.471396+0000 mgr.smithi028.zkmzde (mgr.14197) 526 : cluster [DBG] pgmap v473: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:41.740 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:27:42.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:42 smithi105 bash[20254]: audit 2024-04-24T17:27:41.749290+0000 mon.smithi028 (mon.0) 597 : audit [DBG] from='client.? 172.21.15.28:0/3810134917' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:42.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:42 smithi105 bash[20254]: audit 2024-04-24T17:27:41.749290+0000 mon.smithi028 (mon.0) 597 : audit [DBG] from='client.? 172.21.15.28:0/3810134917' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:42.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:42 smithi028 bash[18631]: audit 2024-04-24T17:27:41.749290+0000 mon.smithi028 (mon.0) 597 : audit [DBG] from='client.? 172.21.15.28:0/3810134917' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:42.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:42 smithi028 bash[18631]: audit 2024-04-24T17:27:41.749290+0000 mon.smithi028 (mon.0) 597 : audit [DBG] from='client.? 172.21.15.28:0/3810134917' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:42.390 INFO:teuthology.orchestra.run.smithi028.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-24T17:27:43.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:43 smithi105 bash[20254]: cluster 2024-04-24T17:27:41.472386+0000 mgr.smithi028.zkmzde (mgr.14197) 527 : cluster [DBG] pgmap v474: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:43.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:43 smithi105 bash[20254]: cluster 2024-04-24T17:27:41.472386+0000 mgr.smithi028.zkmzde (mgr.14197) 527 : cluster [DBG] pgmap v474: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:43.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:43 smithi105 bash[20254]: audit 2024-04-24T17:27:42.842629+0000 mon.smithi028 (mon.0) 598 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:43.267 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:43 smithi105 bash[20254]: audit 2024-04-24T17:27:42.842629+0000 mon.smithi028 (mon.0) 598 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:43.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:43 smithi028 bash[18631]: cluster 2024-04-24T17:27:41.472386+0000 mgr.smithi028.zkmzde (mgr.14197) 527 : cluster [DBG] pgmap v474: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:43.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:43 smithi028 bash[18631]: cluster 2024-04-24T17:27:41.472386+0000 mgr.smithi028.zkmzde (mgr.14197) 527 : cluster [DBG] pgmap v474: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:43.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:43 smithi028 bash[18631]: audit 2024-04-24T17:27:42.842629+0000 mon.smithi028 (mon.0) 598 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:43.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:43 smithi028 bash[18631]: audit 2024-04-24T17:27:42.842629+0000 mon.smithi028 (mon.0) 598 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:43.391 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:27:45.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:45 smithi028 bash[18631]: cluster 2024-04-24T17:27:43.473456+0000 mgr.smithi028.zkmzde (mgr.14197) 528 : cluster [DBG] pgmap v475: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:45.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:45 smithi028 bash[18631]: cluster 2024-04-24T17:27:43.473456+0000 mgr.smithi028.zkmzde (mgr.14197) 528 : cluster [DBG] pgmap v475: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:45.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:45 smithi028 bash[18631]: audit 2024-04-24T17:27:44.509053+0000 mon.smithi028 (mon.0) 599 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:27:45.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:45 smithi028 bash[18631]: audit 2024-04-24T17:27:44.509053+0000 mon.smithi028 (mon.0) 599 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:27:45.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:45 smithi028 bash[18631]: audit 2024-04-24T17:27:44.510964+0000 mon.smithi028 (mon.0) 600 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:27:45.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:45 smithi028 bash[18631]: audit 2024-04-24T17:27:44.510964+0000 mon.smithi028 (mon.0) 600 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:27:45.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:45 smithi028 bash[18631]: audit 2024-04-24T17:27:44.522217+0000 mon.smithi028 (mon.0) 601 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:27:45.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:45 smithi028 bash[18631]: audit 2024-04-24T17:27:44.522217+0000 mon.smithi028 (mon.0) 601 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:27:45.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:45 smithi028 bash[18631]: audit 2024-04-24T17:27:44.530917+0000 mon.smithi028 (mon.0) 602 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:27:45.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:45 smithi028 bash[18631]: audit 2024-04-24T17:27:44.530917+0000 mon.smithi028 (mon.0) 602 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:27:45.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:45 smithi105 bash[20254]: cluster 2024-04-24T17:27:43.473456+0000 mgr.smithi028.zkmzde (mgr.14197) 528 : cluster [DBG] pgmap v475: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:45.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:45 smithi105 bash[20254]: cluster 2024-04-24T17:27:43.473456+0000 mgr.smithi028.zkmzde (mgr.14197) 528 : cluster [DBG] pgmap v475: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:45.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:45 smithi105 bash[20254]: audit 2024-04-24T17:27:44.509053+0000 mon.smithi028 (mon.0) 599 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:27:45.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:45 smithi105 bash[20254]: audit 2024-04-24T17:27:44.509053+0000 mon.smithi028 (mon.0) 599 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-24T17:27:45.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:45 smithi105 bash[20254]: audit 2024-04-24T17:27:44.510964+0000 mon.smithi028 (mon.0) 600 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:27:45.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:45 smithi105 bash[20254]: audit 2024-04-24T17:27:44.510964+0000 mon.smithi028 (mon.0) 600 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-24T17:27:45.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:45 smithi105 bash[20254]: audit 2024-04-24T17:27:44.522217+0000 mon.smithi028 (mon.0) 601 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:27:45.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:45 smithi105 bash[20254]: audit 2024-04-24T17:27:44.522217+0000 mon.smithi028 (mon.0) 601 : audit [INF] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' 2024-04-24T17:27:45.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:45 smithi105 bash[20254]: audit 2024-04-24T17:27:44.530917+0000 mon.smithi028 (mon.0) 602 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:27:45.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:45 smithi105 bash[20254]: audit 2024-04-24T17:27:44.530917+0000 mon.smithi028 (mon.0) 602 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-24T17:27:46.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:46 smithi028 bash[18631]: cluster 2024-04-24T17:27:44.513968+0000 mgr.smithi028.zkmzde (mgr.14197) 529 : cluster [DBG] pgmap v476: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:46.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:46 smithi028 bash[18631]: cluster 2024-04-24T17:27:44.513968+0000 mgr.smithi028.zkmzde (mgr.14197) 529 : cluster [DBG] pgmap v476: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:46.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:46 smithi028 bash[18631]: cluster 2024-04-24T17:27:44.515102+0000 mgr.smithi028.zkmzde (mgr.14197) 530 : cluster [DBG] pgmap v477: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:46.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:46 smithi028 bash[18631]: cluster 2024-04-24T17:27:44.515102+0000 mgr.smithi028.zkmzde (mgr.14197) 530 : cluster [DBG] pgmap v477: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:46.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:46 smithi105 bash[20254]: cluster 2024-04-24T17:27:44.513968+0000 mgr.smithi028.zkmzde (mgr.14197) 529 : cluster [DBG] pgmap v476: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:46.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:46 smithi105 bash[20254]: cluster 2024-04-24T17:27:44.513968+0000 mgr.smithi028.zkmzde (mgr.14197) 529 : cluster [DBG] pgmap v476: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:46.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:46 smithi105 bash[20254]: cluster 2024-04-24T17:27:44.515102+0000 mgr.smithi028.zkmzde (mgr.14197) 530 : cluster [DBG] pgmap v477: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:46.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:46 smithi105 bash[20254]: cluster 2024-04-24T17:27:44.515102+0000 mgr.smithi028.zkmzde (mgr.14197) 530 : cluster [DBG] pgmap v477: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:48.164 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:27:48.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:48 smithi105 bash[20254]: cluster 2024-04-24T17:27:46.516075+0000 mgr.smithi028.zkmzde (mgr.14197) 531 : cluster [DBG] pgmap v478: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:48.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:48 smithi105 bash[20254]: cluster 2024-04-24T17:27:46.516075+0000 mgr.smithi028.zkmzde (mgr.14197) 531 : cluster [DBG] pgmap v478: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:48.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:48 smithi028 bash[18631]: cluster 2024-04-24T17:27:46.516075+0000 mgr.smithi028.zkmzde (mgr.14197) 531 : cluster [DBG] pgmap v478: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:48.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:48 smithi028 bash[18631]: cluster 2024-04-24T17:27:46.516075+0000 mgr.smithi028.zkmzde (mgr.14197) 531 : cluster [DBG] pgmap v478: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:49.422 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:27:50.012 INFO:teuthology.orchestra.run.smithi028.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-24T17:27:50.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:50 smithi028 bash[18631]: cluster 2024-04-24T17:27:48.516988+0000 mgr.smithi028.zkmzde (mgr.14197) 532 : cluster [DBG] pgmap v479: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:50.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:50 smithi028 bash[18631]: cluster 2024-04-24T17:27:48.516988+0000 mgr.smithi028.zkmzde (mgr.14197) 532 : cluster [DBG] pgmap v479: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:50.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:50 smithi028 bash[18631]: audit 2024-04-24T17:27:49.431431+0000 mon.smithi028 (mon.0) 603 : audit [DBG] from='client.? 172.21.15.28:0/1114200496' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:50.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:50 smithi028 bash[18631]: audit 2024-04-24T17:27:49.431431+0000 mon.smithi028 (mon.0) 603 : audit [DBG] from='client.? 172.21.15.28:0/1114200496' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:50.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:50 smithi105 bash[20254]: cluster 2024-04-24T17:27:48.516988+0000 mgr.smithi028.zkmzde (mgr.14197) 532 : cluster [DBG] pgmap v479: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:50.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:50 smithi105 bash[20254]: cluster 2024-04-24T17:27:48.516988+0000 mgr.smithi028.zkmzde (mgr.14197) 532 : cluster [DBG] pgmap v479: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:50.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:50 smithi105 bash[20254]: audit 2024-04-24T17:27:49.431431+0000 mon.smithi028 (mon.0) 603 : audit [DBG] from='client.? 172.21.15.28:0/1114200496' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:50.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:50 smithi105 bash[20254]: audit 2024-04-24T17:27:49.431431+0000 mon.smithi028 (mon.0) 603 : audit [DBG] from='client.? 172.21.15.28:0/1114200496' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:51.012 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:27:52.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:52 smithi028 bash[18631]: cluster 2024-04-24T17:27:50.517978+0000 mgr.smithi028.zkmzde (mgr.14197) 533 : cluster [DBG] pgmap v480: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:52.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:52 smithi028 bash[18631]: cluster 2024-04-24T17:27:50.517978+0000 mgr.smithi028.zkmzde (mgr.14197) 533 : cluster [DBG] pgmap v480: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:52.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:52 smithi105 bash[20254]: cluster 2024-04-24T17:27:50.517978+0000 mgr.smithi028.zkmzde (mgr.14197) 533 : cluster [DBG] pgmap v480: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:52.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:52 smithi105 bash[20254]: cluster 2024-04-24T17:27:50.517978+0000 mgr.smithi028.zkmzde (mgr.14197) 533 : cluster [DBG] pgmap v480: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:54.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:54 smithi105 bash[20254]: cluster 2024-04-24T17:27:52.518960+0000 mgr.smithi028.zkmzde (mgr.14197) 534 : cluster [DBG] pgmap v481: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:54.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:54 smithi105 bash[20254]: cluster 2024-04-24T17:27:52.518960+0000 mgr.smithi028.zkmzde (mgr.14197) 534 : cluster [DBG] pgmap v481: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:54.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:54 smithi028 bash[18631]: cluster 2024-04-24T17:27:52.518960+0000 mgr.smithi028.zkmzde (mgr.14197) 534 : cluster [DBG] pgmap v481: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:54.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:54 smithi028 bash[18631]: cluster 2024-04-24T17:27:52.518960+0000 mgr.smithi028.zkmzde (mgr.14197) 534 : cluster [DBG] pgmap v481: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:55.787 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:27:56.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:56 smithi028 bash[18631]: cluster 2024-04-24T17:27:54.519961+0000 mgr.smithi028.zkmzde (mgr.14197) 535 : cluster [DBG] pgmap v482: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:56.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:56 smithi028 bash[18631]: cluster 2024-04-24T17:27:54.519961+0000 mgr.smithi028.zkmzde (mgr.14197) 535 : cluster [DBG] pgmap v482: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:56.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:56 smithi105 bash[20254]: cluster 2024-04-24T17:27:54.519961+0000 mgr.smithi028.zkmzde (mgr.14197) 535 : cluster [DBG] pgmap v482: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:56.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:56 smithi105 bash[20254]: cluster 2024-04-24T17:27:54.519961+0000 mgr.smithi028.zkmzde (mgr.14197) 535 : cluster [DBG] pgmap v482: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:57.064 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:27:57.657 INFO:teuthology.orchestra.run.smithi028.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-24T17:27:58.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:58 smithi105 bash[20254]: cluster 2024-04-24T17:27:56.520899+0000 mgr.smithi028.zkmzde (mgr.14197) 536 : cluster [DBG] pgmap v483: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:58.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:58 smithi105 bash[20254]: cluster 2024-04-24T17:27:56.520899+0000 mgr.smithi028.zkmzde (mgr.14197) 536 : cluster [DBG] pgmap v483: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:58.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:58 smithi105 bash[20254]: audit 2024-04-24T17:27:57.073494+0000 mon.smithi028 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.28:0/557603640' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:58.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:58 smithi105 bash[20254]: audit 2024-04-24T17:27:57.073494+0000 mon.smithi028 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.28:0/557603640' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:58.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:58 smithi105 bash[20254]: audit 2024-04-24T17:27:57.843260+0000 mon.smithi028 (mon.0) 605 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:58.518 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:27:58 smithi105 bash[20254]: audit 2024-04-24T17:27:57.843260+0000 mon.smithi028 (mon.0) 605 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:58.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:58 smithi028 bash[18631]: cluster 2024-04-24T17:27:56.520899+0000 mgr.smithi028.zkmzde (mgr.14197) 536 : cluster [DBG] pgmap v483: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:58.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:58 smithi028 bash[18631]: cluster 2024-04-24T17:27:56.520899+0000 mgr.smithi028.zkmzde (mgr.14197) 536 : cluster [DBG] pgmap v483: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:27:58.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:58 smithi028 bash[18631]: audit 2024-04-24T17:27:57.073494+0000 mon.smithi028 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.28:0/557603640' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:58.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:58 smithi028 bash[18631]: audit 2024-04-24T17:27:57.073494+0000 mon.smithi028 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.28:0/557603640' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:27:58.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:58 smithi028 bash[18631]: audit 2024-04-24T17:27:57.843260+0000 mon.smithi028 (mon.0) 605 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:58.527 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:27:58 smithi028 bash[18631]: audit 2024-04-24T17:27:57.843260+0000 mon.smithi028 (mon.0) 605 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:27:58.658 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:28:00.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:00 smithi105 bash[20254]: cluster 2024-04-24T17:27:58.521896+0000 mgr.smithi028.zkmzde (mgr.14197) 537 : cluster [DBG] pgmap v484: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:00.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:00 smithi105 bash[20254]: cluster 2024-04-24T17:27:58.521896+0000 mgr.smithi028.zkmzde (mgr.14197) 537 : cluster [DBG] pgmap v484: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:00.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:00 smithi028 bash[18631]: cluster 2024-04-24T17:27:58.521896+0000 mgr.smithi028.zkmzde (mgr.14197) 537 : cluster [DBG] pgmap v484: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:00.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:00 smithi028 bash[18631]: cluster 2024-04-24T17:27:58.521896+0000 mgr.smithi028.zkmzde (mgr.14197) 537 : cluster [DBG] pgmap v484: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:02.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:02 smithi105 bash[20254]: cluster 2024-04-24T17:28:00.522833+0000 mgr.smithi028.zkmzde (mgr.14197) 538 : cluster [DBG] pgmap v485: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:02.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:02 smithi105 bash[20254]: cluster 2024-04-24T17:28:00.522833+0000 mgr.smithi028.zkmzde (mgr.14197) 538 : cluster [DBG] pgmap v485: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:02.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:02 smithi028 bash[18631]: cluster 2024-04-24T17:28:00.522833+0000 mgr.smithi028.zkmzde (mgr.14197) 538 : cluster [DBG] pgmap v485: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:02.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:02 smithi028 bash[18631]: cluster 2024-04-24T17:28:00.522833+0000 mgr.smithi028.zkmzde (mgr.14197) 538 : cluster [DBG] pgmap v485: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:03.425 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:28:04.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:04 smithi105 bash[20254]: cluster 2024-04-24T17:28:02.523834+0000 mgr.smithi028.zkmzde (mgr.14197) 539 : cluster [DBG] pgmap v486: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:04.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:04 smithi105 bash[20254]: cluster 2024-04-24T17:28:02.523834+0000 mgr.smithi028.zkmzde (mgr.14197) 539 : cluster [DBG] pgmap v486: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:04.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:04 smithi028 bash[18631]: cluster 2024-04-24T17:28:02.523834+0000 mgr.smithi028.zkmzde (mgr.14197) 539 : cluster [DBG] pgmap v486: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:04.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:04 smithi028 bash[18631]: cluster 2024-04-24T17:28:02.523834+0000 mgr.smithi028.zkmzde (mgr.14197) 539 : cluster [DBG] pgmap v486: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:04.661 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:28:05.271 INFO:teuthology.orchestra.run.smithi028.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-24T17:28:05.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:05 smithi105 bash[20254]: audit 2024-04-24T17:28:04.669915+0000 mon.smithi028 (mon.0) 606 : audit [DBG] from='client.? 172.21.15.28:0/4051062171' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:28:05.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:05 smithi105 bash[20254]: audit 2024-04-24T17:28:04.669915+0000 mon.smithi028 (mon.0) 606 : audit [DBG] from='client.? 172.21.15.28:0/4051062171' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:28:05.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:05 smithi028 bash[18631]: audit 2024-04-24T17:28:04.669915+0000 mon.smithi028 (mon.0) 606 : audit [DBG] from='client.? 172.21.15.28:0/4051062171' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:28:05.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:05 smithi028 bash[18631]: audit 2024-04-24T17:28:04.669915+0000 mon.smithi028 (mon.0) 606 : audit [DBG] from='client.? 172.21.15.28:0/4051062171' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:28:06.272 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:28:06.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:06 smithi105 bash[20254]: cluster 2024-04-24T17:28:04.524770+0000 mgr.smithi028.zkmzde (mgr.14197) 540 : cluster [DBG] pgmap v487: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:06.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:06 smithi105 bash[20254]: cluster 2024-04-24T17:28:04.524770+0000 mgr.smithi028.zkmzde (mgr.14197) 540 : cluster [DBG] pgmap v487: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:06.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:06 smithi028 bash[18631]: cluster 2024-04-24T17:28:04.524770+0000 mgr.smithi028.zkmzde (mgr.14197) 540 : cluster [DBG] pgmap v487: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:06.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:06 smithi028 bash[18631]: cluster 2024-04-24T17:28:04.524770+0000 mgr.smithi028.zkmzde (mgr.14197) 540 : cluster [DBG] pgmap v487: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:08.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:08 smithi105 bash[20254]: cluster 2024-04-24T17:28:06.525637+0000 mgr.smithi028.zkmzde (mgr.14197) 541 : cluster [DBG] pgmap v488: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:08.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:08 smithi105 bash[20254]: cluster 2024-04-24T17:28:06.525637+0000 mgr.smithi028.zkmzde (mgr.14197) 541 : cluster [DBG] pgmap v488: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:08.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:08 smithi028 bash[18631]: cluster 2024-04-24T17:28:06.525637+0000 mgr.smithi028.zkmzde (mgr.14197) 541 : cluster [DBG] pgmap v488: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:08.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:08 smithi028 bash[18631]: cluster 2024-04-24T17:28:06.525637+0000 mgr.smithi028.zkmzde (mgr.14197) 541 : cluster [DBG] pgmap v488: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:10.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:10 smithi105 bash[20254]: cluster 2024-04-24T17:28:08.526550+0000 mgr.smithi028.zkmzde (mgr.14197) 542 : cluster [DBG] pgmap v489: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:10.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:10 smithi105 bash[20254]: cluster 2024-04-24T17:28:08.526550+0000 mgr.smithi028.zkmzde (mgr.14197) 542 : cluster [DBG] pgmap v489: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:10.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:10 smithi028 bash[18631]: cluster 2024-04-24T17:28:08.526550+0000 mgr.smithi028.zkmzde (mgr.14197) 542 : cluster [DBG] pgmap v489: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:10.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:10 smithi028 bash[18631]: cluster 2024-04-24T17:28:08.526550+0000 mgr.smithi028.zkmzde (mgr.14197) 542 : cluster [DBG] pgmap v489: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:11.045 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:28:12.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:12 smithi028 bash[18631]: cluster 2024-04-24T17:28:10.527634+0000 mgr.smithi028.zkmzde (mgr.14197) 543 : cluster [DBG] pgmap v490: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:12.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:12 smithi028 bash[18631]: cluster 2024-04-24T17:28:10.527634+0000 mgr.smithi028.zkmzde (mgr.14197) 543 : cluster [DBG] pgmap v490: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:12.280 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:28:12.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:12 smithi105 bash[20254]: cluster 2024-04-24T17:28:10.527634+0000 mgr.smithi028.zkmzde (mgr.14197) 543 : cluster [DBG] pgmap v490: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:12.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:12 smithi105 bash[20254]: cluster 2024-04-24T17:28:10.527634+0000 mgr.smithi028.zkmzde (mgr.14197) 543 : cluster [DBG] pgmap v490: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:12.893 INFO:teuthology.orchestra.run.smithi028.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-24T17:28:13.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:13 smithi028 bash[18631]: audit 2024-04-24T17:28:12.289196+0000 mon.smithi028 (mon.0) 607 : audit [DBG] from='client.? 172.21.15.28:0/2598817112' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:28:13.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:13 smithi028 bash[18631]: audit 2024-04-24T17:28:12.289196+0000 mon.smithi028 (mon.0) 607 : audit [DBG] from='client.? 172.21.15.28:0/2598817112' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:28:13.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:13 smithi028 bash[18631]: audit 2024-04-24T17:28:12.843750+0000 mon.smithi028 (mon.0) 608 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:28:13.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:13 smithi028 bash[18631]: audit 2024-04-24T17:28:12.843750+0000 mon.smithi028 (mon.0) 608 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:28:13.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:13 smithi105 bash[20254]: audit 2024-04-24T17:28:12.289196+0000 mon.smithi028 (mon.0) 607 : audit [DBG] from='client.? 172.21.15.28:0/2598817112' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:28:13.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:13 smithi105 bash[20254]: audit 2024-04-24T17:28:12.289196+0000 mon.smithi028 (mon.0) 607 : audit [DBG] from='client.? 172.21.15.28:0/2598817112' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:28:13.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:13 smithi105 bash[20254]: audit 2024-04-24T17:28:12.843750+0000 mon.smithi028 (mon.0) 608 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:28:13.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:13 smithi105 bash[20254]: audit 2024-04-24T17:28:12.843750+0000 mon.smithi028 (mon.0) 608 : audit [DBG] from='mgr.14197 172.21.15.28:0/1692971480' entity='mgr.smithi028.zkmzde' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-04-24T17:28:13.895 DEBUG:teuthology.orchestra.run.smithi028:> 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 3d5e4290-025d-11ef-bc93-c7b262605968 -- ceph osd stat -f json 2024-04-24T17:28:14.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:14 smithi028 bash[18631]: cluster 2024-04-24T17:28:12.528618+0000 mgr.smithi028.zkmzde (mgr.14197) 544 : cluster [DBG] pgmap v491: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:14.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:14 smithi028 bash[18631]: cluster 2024-04-24T17:28:12.528618+0000 mgr.smithi028.zkmzde (mgr.14197) 544 : cluster [DBG] pgmap v491: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:14.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:14 smithi105 bash[20254]: cluster 2024-04-24T17:28:12.528618+0000 mgr.smithi028.zkmzde (mgr.14197) 544 : cluster [DBG] pgmap v491: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:14.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:14 smithi105 bash[20254]: cluster 2024-04-24T17:28:12.528618+0000 mgr.smithi028.zkmzde (mgr.14197) 544 : cluster [DBG] pgmap v491: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:16.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:16 smithi105 bash[20254]: cluster 2024-04-24T17:28:14.529658+0000 mgr.smithi028.zkmzde (mgr.14197) 545 : cluster [DBG] pgmap v492: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:16.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:16 smithi105 bash[20254]: cluster 2024-04-24T17:28:14.529658+0000 mgr.smithi028.zkmzde (mgr.14197) 545 : cluster [DBG] pgmap v492: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:16.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:16 smithi028 bash[18631]: cluster 2024-04-24T17:28:14.529658+0000 mgr.smithi028.zkmzde (mgr.14197) 545 : cluster [DBG] pgmap v492: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:16.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:16 smithi028 bash[18631]: cluster 2024-04-24T17:28:14.529658+0000 mgr.smithi028.zkmzde (mgr.14197) 545 : cluster [DBG] pgmap v492: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:18.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:18 smithi105 bash[20254]: cluster 2024-04-24T17:28:16.530651+0000 mgr.smithi028.zkmzde (mgr.14197) 546 : cluster [DBG] pgmap v493: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:18.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:18 smithi105 bash[20254]: cluster 2024-04-24T17:28:16.530651+0000 mgr.smithi028.zkmzde (mgr.14197) 546 : cluster [DBG] pgmap v493: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:18.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:18 smithi028 bash[18631]: cluster 2024-04-24T17:28:16.530651+0000 mgr.smithi028.zkmzde (mgr.14197) 546 : cluster [DBG] pgmap v493: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:18.526 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:18 smithi028 bash[18631]: cluster 2024-04-24T17:28:16.530651+0000 mgr.smithi028.zkmzde (mgr.14197) 546 : cluster [DBG] pgmap v493: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:18.670 INFO:teuthology.orchestra.run.smithi028.stderr:Inferring config /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/mon.smithi028/config 2024-04-24T17:28:19.993 INFO:teuthology.orchestra.run.smithi028.stdout: 2024-04-24T17:28:20.276 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:20 smithi028 bash[18631]: cluster 2024-04-24T17:28:18.531656+0000 mgr.smithi028.zkmzde (mgr.14197) 547 : cluster [DBG] pgmap v494: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:20.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:20 smithi028 bash[18631]: cluster 2024-04-24T17:28:18.531656+0000 mgr.smithi028.zkmzde (mgr.14197) 547 : cluster [DBG] pgmap v494: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:20.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:20 smithi028 bash[18631]: audit 2024-04-24T17:28:20.001982+0000 mon.smithi028 (mon.0) 609 : audit [DBG] from='client.? 172.21.15.28:0/2941182852' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:28:20.277 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:20 smithi028 bash[18631]: audit 2024-04-24T17:28:20.001982+0000 mon.smithi028 (mon.0) 609 : audit [DBG] from='client.? 172.21.15.28:0/2941182852' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:28:20.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:20 smithi105 bash[20254]: cluster 2024-04-24T17:28:18.531656+0000 mgr.smithi028.zkmzde (mgr.14197) 547 : cluster [DBG] pgmap v494: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:20.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:20 smithi105 bash[20254]: cluster 2024-04-24T17:28:18.531656+0000 mgr.smithi028.zkmzde (mgr.14197) 547 : cluster [DBG] pgmap v494: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-24T17:28:20.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:20 smithi105 bash[20254]: audit 2024-04-24T17:28:20.001982+0000 mon.smithi028 (mon.0) 609 : audit [DBG] from='client.? 172.21.15.28:0/2941182852' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:28:20.517 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:20 smithi105 bash[20254]: audit 2024-04-24T17:28:20.001982+0000 mon.smithi028 (mon.0) 609 : audit [DBG] from='client.? 172.21.15.28:0/2941182852' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-24T17:28:20.599 INFO:teuthology.orchestra.run.smithi028.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-24T17:28:20.600 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-24T17:28:20.601 DEBUG:teuthology.orchestra.run.smithi028:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-24T17:28:20.615 DEBUG:teuthology.orchestra.run.smithi105:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-24T17:28:20.629 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-24T17:28:20.629 DEBUG:teuthology.orchestra.run.smithi028:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-24T17:28:20.660 DEBUG:teuthology.orchestra.run.smithi105:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-24T17:28:20.679 INFO:tasks.cephadm:Stopping all daemons... 2024-04-24T17:28:20.680 INFO:tasks.cephadm.mon.smithi028:Stopping mon.smithi028... 2024-04-24T17:28:20.680 DEBUG:teuthology.orchestra.run.smithi028:> sudo systemctl stop ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mon.smithi028 2024-04-24T17:28:20.938 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:20 smithi028 systemd[1]: Stopping Ceph mon.smithi028 for 3d5e4290-025d-11ef-bc93-c7b262605968... 2024-04-24T17:28:20.939 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:20 smithi028 bash[18631]: debug 2024-04-24T17:28:20.823+0000 7f145c9d6700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi028 -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-24T17:28:20.939 INFO:journalctl@ceph.mon.smithi028.smithi028.stdout:Apr 24 17:28:20 smithi028 bash[18631]: debug 2024-04-24T17:28:20.823+0000 7f145c9d6700 -1 mon.smithi028@0(leader) e2 *** Got Signal Terminated *** 2024-04-24T17:28:21.609 DEBUG:teuthology.orchestra.run.smithi028:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mon.smithi028.service' 2024-04-24T17:28:21.657 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-24T17:28:21.657 INFO:tasks.cephadm.mon.smithi028:Stopped mon.smithi028 2024-04-24T17:28:21.657 INFO:tasks.cephadm.mon.smithi105:Stopping mon.smithi105... 2024-04-24T17:28:21.657 DEBUG:teuthology.orchestra.run.smithi105:> sudo systemctl stop ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mon.smithi105 2024-04-24T17:28:22.017 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:21 smithi105 systemd[1]: Stopping Ceph mon.smithi105 for 3d5e4290-025d-11ef-bc93-c7b262605968... 2024-04-24T17:28:22.488 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:22 smithi105 bash[20254]: debug 2024-04-24T17:28:22.132+0000 7f6f11540700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi105 -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-24T17:28:22.488 INFO:journalctl@ceph.mon.smithi105.smithi105.stdout:Apr 24 17:28:22 smithi105 bash[20254]: debug 2024-04-24T17:28:22.132+0000 7f6f11540700 -1 mon.smithi105@1(peon) e2 *** Got Signal Terminated *** 2024-04-24T17:28:22.980 DEBUG:teuthology.orchestra.run.smithi105:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5e4290-025d-11ef-bc93-c7b262605968@mon.smithi105.service' 2024-04-24T17:28:23.016 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-24T17:28:23.017 INFO:tasks.cephadm.mon.smithi105:Stopped mon.smithi105 2024-04-24T17:28:23.017 DEBUG:teuthology.orchestra.run.smithi028:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d5e4290-025d-11ef-bc93-c7b262605968 --force --keep-logs 2024-04-24T17:28:23.188 INFO:teuthology.orchestra.run.smithi028.stdout:Deleting cluster with fsid: 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:28:34.400 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d5e4290-025d-11ef-bc93-c7b262605968 --force --keep-logs 2024-04-24T17:28:34.567 INFO:teuthology.orchestra.run.smithi105.stdout:Deleting cluster with fsid: 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:28:43.797 DEBUG:teuthology.orchestra.run.smithi028:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-24T17:28:43.812 DEBUG:teuthology.orchestra.run.smithi105:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-24T17:28:43.824 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-24T17:28:43.826 DEBUG:teuthology.misc:Transferring archived files from smithi028:/var/lib/ceph/3d5e4290-025d-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/7671832/remote/smithi028/crash 2024-04-24T17:28:43.827 DEBUG:teuthology.orchestra.run.smithi028:> sudo tar c -f - -C /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/crash -- . 2024-04-24T17:28:43.872 INFO:teuthology.orchestra.run.smithi028.stderr:tar: /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/crash: Cannot open: No such file or directory 2024-04-24T17:28:43.873 INFO:teuthology.orchestra.run.smithi028.stderr:tar: Error is not recoverable: exiting now 2024-04-24T17:28:43.874 DEBUG:teuthology.misc:Transferring archived files from smithi105:/var/lib/ceph/3d5e4290-025d-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/7671832/remote/smithi105/crash 2024-04-24T17:28:43.875 DEBUG:teuthology.orchestra.run.smithi105:> sudo tar c -f - -C /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/crash -- . 2024-04-24T17:28:43.885 INFO:teuthology.orchestra.run.smithi105.stderr:tar: /var/lib/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/crash: Cannot open: No such file or directory 2024-04-24T17:28:43.886 INFO:teuthology.orchestra.run.smithi105.stderr:tar: Error is not recoverable: exiting now 2024-04-24T17:28:43.887 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-24T17:28:43.887 DEBUG:teuthology.orchestra.run.smithi028:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-24T17:28:43.933 INFO:teuthology.orchestra.run.smithi028.stdout:2024-04-24T17:11:21.044784+0000 mon.smithi028 (mon.0) 124 : cluster [WRN] Health check failed: failed to probe daemons or devices (CEPHADM_REFRESH_FAILED) 2024-04-24T17:28:43.934 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-04-24T17:28:43.934 DEBUG:teuthology.orchestra.run.smithi028:> sudo egrep '\[SEC\]' /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-24T17:28:43.990 DEBUG:teuthology.orchestra.run.smithi028:> sudo egrep '\[ERR\]' /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-24T17:28:44.046 DEBUG:teuthology.orchestra.run.smithi028:> sudo egrep '\[WRN\]' /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-04-24T17:28:44.101 INFO:teuthology.orchestra.run.smithi028.stdout:2024-04-24T17:11:21.044784+0000 mon.smithi028 (mon.0) 124 : cluster [WRN] Health check failed: failed to probe daemons or devices (CEPHADM_REFRESH_FAILED) 2024-04-24T17:28:44.102 INFO:tasks.cephadm:Compressing logs... 2024-04-24T17:28:44.102 DEBUG:teuthology.orchestra.run.smithi028:> 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-24T17:28:44.145 DEBUG:teuthology.orchestra.run.smithi105:> 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-24T17:28:44.155 INFO:teuthology.orchestra.run.smithi028.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-24T17:28:44.159 INFO:teuthology.orchestra.run.smithi105.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-04-24T17:28:44.161 INFO:teuthology.orchestra.run.smithi028.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-24T17:28:44.161 INFO:teuthology.orchestra.run.smithi028.stderr:gzip -5 --verbose -- /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.cephadm.log 2024-04-24T17:28:44.162 INFO:teuthology.orchestra.run.smithi028.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-mon.smithi028.log 2024-04-24T17:28:44.162 INFO:teuthology.orchestra.run.smithi028.stderr:/var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi028.log 2024-04-24T17:28:44.162 INFO:teuthology.orchestra.run.smithi028.stderr: 83.9% -- replaced with /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.cephadm.log.gz 2024-04-24T17:28:44.163 INFO:teuthology.orchestra.run.smithi028.stderr:/var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-mon.smithi028.log: gzip -5 --verbose -- /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.log 2024-04-24T17:28:44.164 INFO:teuthology.orchestra.run.smithi028.stderr:/var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi028.log: gzip -5 --verbose -- /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.audit.log 2024-04-24T17:28:44.164 INFO:teuthology.orchestra.run.smithi028.stderr:/var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.log: 94.2% -- replaced with /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi028.log.gz 2024-04-24T17:28:44.164 INFO:teuthology.orchestra.run.smithi028.stderr:gzip -5 --verbose -- /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-mgr.smithi028.zkmzde.log 2024-04-24T17:28:44.164 INFO:teuthology.orchestra.run.smithi028.stderr:/var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.audit.log: /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-mgr.smithi028.zkmzde.log: 89.0% -- replaced with /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.log.gz 2024-04-24T17:28:44.166 INFO:teuthology.orchestra.run.smithi028.stderr: 90.9% -- replaced with /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.audit.log.gz 2024-04-24T17:28:44.177 INFO:teuthology.orchestra.run.smithi105.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-24T17:28:44.177 INFO:teuthology.orchestra.run.smithi105.stderr:gzip -5 --verbose -- /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.cephadm.log 2024-04-24T17:28:44.178 INFO:teuthology.orchestra.run.smithi105.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.log 2024-04-24T17:28:44.179 INFO:teuthology.orchestra.run.smithi105.stderr:/var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.cephadm.log: 81.8% -- replaced with /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.cephadm.log.gz 2024-04-24T17:28:44.179 INFO:teuthology.orchestra.run.smithi105.stderr:gzip -5 --verbose -- /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-mgr.smithi105.rmqzvz.log 2024-04-24T17:28:44.180 INFO:teuthology.orchestra.run.smithi105.stderr:gzip -5 --verbose -- /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi105.log 2024-04-24T17:28:44.180 INFO:teuthology.orchestra.run.smithi105.stderr:/var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.log: /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-mgr.smithi105.rmqzvz.log: gzip -5 --verbose -- /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.audit.log 2024-04-24T17:28:44.181 INFO:teuthology.orchestra.run.smithi105.stderr:/var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi105.log: 30.9% -- replaced with /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-client.ceph-exporter.smithi105.log.gz 2024-04-24T17:28:44.181 INFO:teuthology.orchestra.run.smithi105.stderr:gzip -5 --verbose -- /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-mon.smithi105.log 2024-04-24T17:28:44.181 INFO:teuthology.orchestra.run.smithi105.stderr: 90.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-24T17:28:44.181 INFO:teuthology.orchestra.run.smithi105.stderr:/var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.audit.log: /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-mon.smithi105.log: 89.2% -- replaced with /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.log.gz 2024-04-24T17:28:44.182 INFO:teuthology.orchestra.run.smithi105.stderr: 91.1% -- replaced with /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph.audit.log.gz 2024-04-24T17:28:44.184 INFO:teuthology.orchestra.run.smithi105.stderr: 92.8% -- replaced with /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-mgr.smithi105.rmqzvz.log.gz 2024-04-24T17:28:44.189 INFO:teuthology.orchestra.run.smithi028.stderr: 92.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-24T17:28:44.294 INFO:teuthology.orchestra.run.smithi105.stderr: 93.5% -- replaced with /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-mon.smithi105.log.gz 2024-04-24T17:28:44.296 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-24T17:28:44.296 INFO:teuthology.orchestra.run.smithi105.stderr:real 0m0.146s 2024-04-24T17:28:44.296 INFO:teuthology.orchestra.run.smithi105.stderr:user 0m0.137s 2024-04-24T17:28:44.296 INFO:teuthology.orchestra.run.smithi105.stderr:sys 0m0.015s 2024-04-24T17:28:44.314 INFO:teuthology.orchestra.run.smithi028.stderr: 91.9% -- replaced with /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-mgr.smithi028.zkmzde.log.gz 2024-04-24T17:28:44.555 INFO:teuthology.orchestra.run.smithi028.stderr: 90.2% -- replaced with /var/log/ceph/3d5e4290-025d-11ef-bc93-c7b262605968/ceph-mon.smithi028.log.gz 2024-04-24T17:28:44.556 INFO:teuthology.orchestra.run.smithi028.stderr: 2024-04-24T17:28:44.556 INFO:teuthology.orchestra.run.smithi028.stderr:real 0m0.409s 2024-04-24T17:28:44.556 INFO:teuthology.orchestra.run.smithi028.stderr:user 0m0.572s 2024-04-24T17:28:44.556 INFO:teuthology.orchestra.run.smithi028.stderr:sys 0m0.026s 2024-04-24T17:28:44.557 INFO:tasks.cephadm:Archiving logs... 2024-04-24T17:28:44.557 DEBUG:teuthology.misc:Transferring archived files from smithi028:/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/7671832/remote/smithi028/log 2024-04-24T17:28:44.558 DEBUG:teuthology.orchestra.run.smithi028:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-24T17:28:44.700 DEBUG:teuthology.misc:Transferring archived files from smithi105:/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/7671832/remote/smithi105/log 2024-04-24T17:28:44.701 DEBUG:teuthology.orchestra.run.smithi105:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-24T17:28:44.733 INFO:tasks.cephadm:Removing cluster... 2024-04-24T17:28:44.734 DEBUG:teuthology.orchestra.run.smithi028:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d5e4290-025d-11ef-bc93-c7b262605968 --force 2024-04-24T17:28:44.898 INFO:teuthology.orchestra.run.smithi028.stdout:Deleting cluster with fsid: 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:28:46.025 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d5e4290-025d-11ef-bc93-c7b262605968 --force 2024-04-24T17:28:46.187 INFO:teuthology.orchestra.run.smithi105.stdout:Deleting cluster with fsid: 3d5e4290-025d-11ef-bc93-c7b262605968 2024-04-24T17:28:47.302 INFO:tasks.cephadm:Removing cephadm ... 2024-04-24T17:28:47.303 DEBUG:teuthology.orchestra.run.smithi028:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-24T17:28:47.309 DEBUG:teuthology.orchestra.run.smithi105:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-24T17:28:47.314 INFO:tasks.cephadm:Teardown complete 2024-04-24T17:28:47.314 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-24T17:28:47.512 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=cc0e419695db41419b7a2664de4bb05f 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-24T17:28:47.515 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-24T17:28:47.524 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-04-24T17:28:47.531 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi028:/dev/vg_nvme/lv_1... 2024-04-24T17:28:47.532 DEBUG:teuthology.orchestra.run.smithi028:> sudo nvme disconnect -n lv_1 2024-04-24T17:28:47.805 INFO:teuthology.orchestra.run.smithi028.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-24T17:28:47.806 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T17:28:47.807 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi028:/dev/vg_nvme/lv_2... 2024-04-24T17:28:47.807 DEBUG:teuthology.orchestra.run.smithi028:> sudo nvme disconnect -n lv_2 2024-04-24T17:28:48.085 INFO:teuthology.orchestra.run.smithi028.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-24T17:28:48.086 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T17:28:48.086 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi028:/dev/vg_nvme/lv_3... 2024-04-24T17:28:48.086 DEBUG:teuthology.orchestra.run.smithi028:> sudo nvme disconnect -n lv_3 2024-04-24T17:28:48.340 INFO:teuthology.orchestra.run.smithi028.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-24T17:28:48.341 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T17:28:48.342 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi028:/dev/vg_nvme/lv_4... 2024-04-24T17:28:48.342 DEBUG:teuthology.orchestra.run.smithi028:> sudo nvme disconnect -n lv_4 2024-04-24T17:28:48.565 INFO:teuthology.orchestra.run.smithi028.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-24T17:28:48.566 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T17:28:48.566 DEBUG:teuthology.orchestra.run.smithi028:> set -ex 2024-04-24T17:28:48.566 DEBUG:teuthology.orchestra.run.smithi028:> sudo dd of=/scratch_devs 2024-04-24T17:28:48.581 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi105:/dev/vg_nvme/lv_1... 2024-04-24T17:28:48.581 DEBUG:teuthology.orchestra.run.smithi105:> sudo nvme disconnect -n lv_1 2024-04-24T17:28:48.836 INFO:teuthology.orchestra.run.smithi105.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-04-24T17:28:48.836 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T17:28:48.837 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi105:/dev/vg_nvme/lv_2... 2024-04-24T17:28:48.837 DEBUG:teuthology.orchestra.run.smithi105:> sudo nvme disconnect -n lv_2 2024-04-24T17:28:49.092 INFO:teuthology.orchestra.run.smithi105.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-04-24T17:28:49.093 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T17:28:49.093 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi105:/dev/vg_nvme/lv_3... 2024-04-24T17:28:49.093 DEBUG:teuthology.orchestra.run.smithi105:> sudo nvme disconnect -n lv_3 2024-04-24T17:28:49.348 INFO:teuthology.orchestra.run.smithi105.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-04-24T17:28:49.349 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T17:28:49.349 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi105:/dev/vg_nvme/lv_4... 2024-04-24T17:28:49.349 DEBUG:teuthology.orchestra.run.smithi105:> sudo nvme disconnect -n lv_4 2024-04-24T17:28:49.604 INFO:teuthology.orchestra.run.smithi105.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-04-24T17:28:49.605 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T17:28:49.605 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-24T17:28:49.606 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/scratch_devs 2024-04-24T17:28:49.618 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-24T17:28:49.632 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-24T17:28:49.632 DEBUG:teuthology.orchestra.run.smithi028:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-24T17:28:49.635 DEBUG:teuthology.orchestra.run.smithi105:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-24T17:28:49.647 INFO:teuthology.orchestra.run.smithi028.stdout: remote refid st t when poll reach delay offset jitter 2024-04-24T17:28:49.647 INFO:teuthology.orchestra.run.smithi028.stdout:============================================================================== 2024-04-24T17:28:49.648 INFO:teuthology.orchestra.run.smithi028.stdout:+hv01.front.sepi 44.4.53.2 2 u 52 64 377 0.112 -9.300 1.793 2024-04-24T17:28:49.648 INFO:teuthology.orchestra.run.smithi028.stdout:*hv02.front.sepi 63.231.80.2 3 u 50 64 377 0.080 -8.428 2.585 2024-04-24T17:28:49.648 INFO:teuthology.orchestra.run.smithi028.stdout:+hv03.front.sepi 74.6.168.72 3 u 57 64 377 0.104 -5.393 1.844 2024-04-24T17:28:49.648 INFO:teuthology.orchestra.run.smithi028.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-04-24T17:28:49.671 INFO:teuthology.orchestra.run.smithi105.stdout: remote refid st t when poll reach delay offset jitter 2024-04-24T17:28:49.671 INFO:teuthology.orchestra.run.smithi105.stdout:============================================================================== 2024-04-24T17:28:49.672 INFO:teuthology.orchestra.run.smithi105.stdout:*hv01.front.sepi 44.4.53.2 2 u 51 64 377 0.090 -5.090 0.592 2024-04-24T17:28:49.672 INFO:teuthology.orchestra.run.smithi105.stdout:+hv02.front.sepi 63.231.80.2 3 u 52 64 377 0.055 -4.076 0.805 2024-04-24T17:28:49.672 INFO:teuthology.orchestra.run.smithi105.stdout:+hv03.front.sepi 74.6.168.72 3 u 61 64 377 0.081 -2.790 0.816 2024-04-24T17:28:49.672 INFO:teuthology.orchestra.run.smithi105.stdout: hv04.front.sepi .INIT. 16 u - 512 0 0.000 +0.000 0.000 2024-04-24T17:28:49.674 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-24T17:28:49.687 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-24T17:28:49.689 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-24T17:28:49.703 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-24T17:28:49.716 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-24T17:28:49.730 INFO:teuthology.task.internal:Duration was 1673.048446 seconds 2024-04-24T17:28:49.730 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-24T17:28:49.746 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-24T17:28:49.746 DEBUG:teuthology.orchestra.run.smithi028:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-24T17:28:49.749 DEBUG:teuthology.orchestra.run.smithi105:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-24T17:28:49.787 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-24T17:28:49.787 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi028.front.sepia.ceph.com 2024-04-24T17:28:49.788 DEBUG:teuthology.orchestra.run.smithi028:> 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-24T17:28:49.837 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi105.front.sepia.ceph.com 2024-04-24T17:28:49.837 DEBUG:teuthology.orchestra.run.smithi105:> 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-24T17:28:49.848 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-24T17:28:49.848 DEBUG:teuthology.orchestra.run.smithi028:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-24T17:28:49.881 DEBUG:teuthology.orchestra.run.smithi105:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-24T17:28:49.926 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-24T17:28:49.926 DEBUG:teuthology.orchestra.run.smithi028:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-24T17:28:49.928 DEBUG:teuthology.orchestra.run.smithi105:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-24T17:28:50.053 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-24T17:28:50.062 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-24T17:28:50.062 DEBUG:teuthology.orchestra.run.smithi028:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-24T17:28:50.074 DEBUG:teuthology.orchestra.run.smithi105:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-24T17:28:50.086 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-24T17:28:50.149 DEBUG:teuthology.orchestra.run.smithi028:> 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-24T17:28:50.151 DEBUG:teuthology.orchestra.run.smithi105:> 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-24T17:28:50.162 INFO:teuthology.orchestra.run.smithi028.stdout:kernel.core_pattern = core 2024-04-24T17:28:50.162 INFO:teuthology.orchestra.run.smithi105.stdout:kernel.core_pattern = core 2024-04-24T17:28:50.187 DEBUG:teuthology.orchestra.run.smithi028:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-24T17:28:50.227 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T17:28:50.228 DEBUG:teuthology.orchestra.run.smithi105:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-24T17:28:50.238 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-24T17:28:50.239 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-24T17:28:50.248 INFO:teuthology.task.internal:Transferring archived files... 2024-04-24T17:28:50.248 DEBUG:teuthology.misc:Transferring archived files from smithi028:/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/7671832/remote/smithi028 2024-04-24T17:28:50.249 DEBUG:teuthology.orchestra.run.smithi028:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-24T17:28:50.297 DEBUG:teuthology.misc:Transferring archived files from smithi105:/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/7671832/remote/smithi105 2024-04-24T17:28:50.298 DEBUG:teuthology.orchestra.run.smithi105:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-24T17:28:50.320 INFO:teuthology.task.internal:Removing archive directory... 2024-04-24T17:28:50.320 DEBUG:teuthology.orchestra.run.smithi028:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-24T17:28:50.338 DEBUG:teuthology.orchestra.run.smithi105:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-24T17:28:50.364 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-24T17:28:50.374 INFO:teuthology.task.internal:Not uploading archives. 2024-04-24T17:28:50.374 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-24T17:28:50.448 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-24T17:28:50.449 DEBUG:teuthology.orchestra.run.smithi028:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-24T17:28:50.451 DEBUG:teuthology.orchestra.run.smithi105:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-24T17:28:50.455 INFO:teuthology.orchestra.run.smithi028.stdout: 658626 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 24 17:28 /home/ubuntu/cephtest 2024-04-24T17:28:50.457 INFO:teuthology.orchestra.run.smithi105.stdout: 658616 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 24 17:28 /home/ubuntu/cephtest 2024-04-24T17:28:50.459 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-24T17:28:50.468 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-24T17:28:50.489 INFO:teuthology.nuke:Checking targets against current locks 2024-04-24T17:28:50.516 DEBUG:teuthology.nuke:shortname: smithi028 2024-04-24T17:28:50.516 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-24T17:28:50.539 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi028.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/7671832', '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 16:52:36.465850', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAtCWZHOZochqJ7xcpP7S4PAeMln+dvONposhwzU6wUdN6oXOqdJW6yYACi5m4ArMUAfzdXjENoI1oR2XHceOtw='} 2024-04-24T17:28:50.542 DEBUG:teuthology.nuke:shortname: smithi105 2024-04-24T17:28:50.542 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-24T17:28:50.564 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi105.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/7671832', '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 16:52:36.462813', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFDWPNroCkeCl7bAPGCmEbPPLa/pRoMCshpw/uC2hrF9bsqjVf5w05pPo+p8ClqVb6gtbbjf7cAA4vdUCmolM1I='} 2024-04-24T17:28:50.592 INFO:teuthology.orchestra.console.smithi028:Power off 2024-04-24T17:28:50.592 DEBUG:teuthology.orchestra.console.smithi028:pexpect command: ipmitool -H smithi028.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-24T17:28:50.614 DEBUG:teuthology.orchestra.console.smithi028:power off output: Chassis Power Control: Down/Off 2024-04-24T17:28:50.614 DEBUG:teuthology.orchestra.console.smithi028:pexpect command: ipmitool -H smithi028.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-24T17:28:50.629 INFO:teuthology.orchestra.console.smithi105:Power off 2024-04-24T17:28:50.630 DEBUG:teuthology.orchestra.console.smithi105:pexpect command: ipmitool -H smithi105.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-24T17:28:50.640 DEBUG:teuthology.orchestra.console.smithi028:check power output: Chassis Power is on 2024-04-24T17:28:50.652 DEBUG:teuthology.orchestra.console.smithi105:power off output: Chassis Power Control: Down/Off 2024-04-24T17:28:50.652 DEBUG:teuthology.orchestra.console.smithi105:pexpect command: ipmitool -H smithi105.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-24T17:28:50.674 DEBUG:teuthology.orchestra.console.smithi105:check power output: Chassis Power is on 2024-04-24T17:28:54.642 DEBUG:teuthology.orchestra.console.smithi028:pexpect command: ipmitool -H smithi028.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-24T17:28:54.675 DEBUG:teuthology.orchestra.console.smithi105:pexpect command: ipmitool -H smithi105.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-24T17:28:54.751 DEBUG:teuthology.orchestra.console.smithi028:check power output: Chassis Power is on 2024-04-24T17:28:54.784 DEBUG:teuthology.orchestra.console.smithi105:check power output: Chassis Power is on 2024-04-24T17:28:58.756 DEBUG:teuthology.orchestra.console.smithi028:pexpect command: ipmitool -H smithi028.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-24T17:28:58.786 DEBUG:teuthology.orchestra.console.smithi105:pexpect command: ipmitool -H smithi105.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-24T17:28:58.866 DEBUG:teuthology.orchestra.console.smithi028:check power output: Chassis Power is off 2024-04-24T17:28:58.895 DEBUG:teuthology.orchestra.console.smithi105:check power output: Chassis Power is off 2024-04-24T17:28:58.967 INFO:teuthology.orchestra.console.smithi028:Power off completed 2024-04-24T17:28:58.996 INFO:teuthology.orchestra.console.smithi105:Power off completed 2024-04-24T17:28:59.101 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-bucket 3-final} duration: 1673.0484459400177 failure_reason: '"2024-04-24T17:11:21.044784+0000 mon.smithi028 (mon.0) 124 : 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=cc0e419695db41419b7a2664de4bb05f status: fail success: false 2024-04-24T17:28:59.101 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-24T17:28:59.184 INFO:teuthology.run:FAIL