2024-03-24T11:56:49.916 INFO:root:teuthology version: 0.0.1.dev262+ge691533 2024-03-24T11:56:49.916 DEBUG:teuthology.run:Teuthology command: teuthology --owner scheduled_teuthology@teuthology --verbose --name teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi --description orch/cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} --archive /home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983 -- /home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983/orig.config.yaml 2024-03-24T11:56:49.950 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-03-24T11:56:50.038 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983 branch: squid description: orch/cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7617983' kernel: kdb: true sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: teuthology-2024-03-22_21:08:02-orch-squid-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: squid ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: db0330b1e4e2470d52b750e251e55a522b4f7d69 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: db0330b1e4e2470d52b750e251e55a522b4f7d69 workunit: branch: squid sha1: f73f1dfd96849300c4322bd7259a3ab37f94c200 owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 8903 sha1: db0330b1e4e2470d52b750e251e55a522b4f7d69 sleep_before_teardown: 0 subset: 44/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_f73f1dfd96849300c4322bd7259a3ab37f94c200/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: f73f1dfd96849300c4322bd7259a3ab37f94c200 targets: smithi170.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDY1G6agdFLwrs7hAB3UPKmnlmo2lg5Bbhw3lGbw4hdRA7CURcI4gvWMo80ITdzAS0KQdm/xzsE15frkfu+qdyk= smithi172.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAgmQpNbbGOtf5IG5+RBA+KoiIdJ/lii1mVr1p6h8BNGoRCYi9GHIUcxkuYle3b2FoAYuFk5xG8Hx3Tm4nRFPCk= 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: e691533f9cbb33d85b2187bba20d7102f098636d timestamp: 2024-03-22_21:08:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-03-24T11:56:50.038 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_f73f1dfd96849300c4322bd7259a3ab37f94c200/qa; will attempt to use it 2024-03-24T11:56:50.039 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_f73f1dfd96849300c4322bd7259a3ab37f94c200/qa/tasks 2024-03-24T11:56:50.039 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-03-24T11:56:50.041 INFO:teuthology.task.internal:Checking packages... 2024-03-24T11:56:50.066 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'db0330b1e4e2470d52b750e251e55a522b4f7d69' 2024-03-24T11:56:50.066 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-03-24T11:56:50.066 INFO:teuthology.packaging:ref: None 2024-03-24T11:56:50.066 INFO:teuthology.packaging:tag: None 2024-03-24T11:56:50.066 INFO:teuthology.packaging:branch: squid 2024-03-24T11:56:50.066 INFO:teuthology.packaging:sha1: db0330b1e4e2470d52b750e251e55a522b4f7d69 2024-03-24T11:56:50.066 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=squid 2024-03-24T11:56:50.210 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-1764-gf73f1dfd-1jammy 2024-03-24T11:56:50.212 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-03-24T11:56:50.218 INFO:teuthology.task.internal:no buildpackages task found 2024-03-24T11:56:50.218 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-03-24T11:56:50.233 INFO:teuthology.task.internal:Saving configuration 2024-03-24T11:56:50.249 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-03-24T11:56:50.257 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-24T11:56:50.281 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi170.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983', '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-03-24 11:50:52.198588', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINYjenUzDzLiVRhuvMS5FyB3oLFSXoCGqb2AjcRawdId'} 2024-03-24T11:56:50.302 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi172.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983', '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-03-24 11:50:52.197018', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPA8PJ9bDUifGEylz5l1xVIPLECcVC7W50RlstuXUtKr'} 2024-03-24T11:56:50.302 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-03-24T11:56:50.308 INFO:teuthology.task.internal:roles: ubuntu@smithi170.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-03-24T11:56:50.308 INFO:teuthology.task.internal:roles: ubuntu@smithi172.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-03-24T11:56:50.308 INFO:teuthology.run_tasks:Running task console_log... 2024-03-24T11:56:50.381 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7ffae1d3f310>, signals=[15]) 2024-03-24T11:56:50.382 INFO:teuthology.run_tasks:Running task internal.connect... 2024-03-24T11:56:50.388 INFO:teuthology.task.internal:Opening connections... 2024-03-24T11:56:50.388 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T11:56:50.390 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-24T11:56:50.471 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi172.front.sepia.ceph.com 2024-03-24T11:56:50.472 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi172.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-24T11:56:50.552 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-03-24T11:56:50.559 DEBUG:teuthology.orchestra.run.smithi170:> uname -m 2024-03-24T11:56:50.564 INFO:teuthology.orchestra.run.smithi170.stdout:x86_64 2024-03-24T11:56:50.565 DEBUG:teuthology.orchestra.run.smithi170:> cat /etc/os-release 2024-03-24T11:56:50.609 INFO:teuthology.orchestra.run.smithi170.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-03-24T11:56:50.609 INFO:teuthology.orchestra.run.smithi170.stdout:NAME="Ubuntu" 2024-03-24T11:56:50.609 INFO:teuthology.orchestra.run.smithi170.stdout:VERSION_ID="22.04" 2024-03-24T11:56:50.609 INFO:teuthology.orchestra.run.smithi170.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-03-24T11:56:50.609 INFO:teuthology.orchestra.run.smithi170.stdout:VERSION_CODENAME=jammy 2024-03-24T11:56:50.609 INFO:teuthology.orchestra.run.smithi170.stdout:ID=ubuntu 2024-03-24T11:56:50.609 INFO:teuthology.orchestra.run.smithi170.stdout:ID_LIKE=debian 2024-03-24T11:56:50.609 INFO:teuthology.orchestra.run.smithi170.stdout:HOME_URL="https://www.ubuntu.com/" 2024-03-24T11:56:50.610 INFO:teuthology.orchestra.run.smithi170.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-03-24T11:56:50.610 INFO:teuthology.orchestra.run.smithi170.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-03-24T11:56:50.610 INFO:teuthology.orchestra.run.smithi170.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-03-24T11:56:50.610 INFO:teuthology.orchestra.run.smithi170.stdout:UBUNTU_CODENAME=jammy 2024-03-24T11:56:50.610 INFO:teuthology.lock.ops:Updating smithi170.front.sepia.ceph.com on lock server 2024-03-24T11:56:50.640 DEBUG:teuthology.orchestra.run.smithi172:> uname -m 2024-03-24T11:56:50.645 INFO:teuthology.orchestra.run.smithi172.stdout:x86_64 2024-03-24T11:56:50.645 DEBUG:teuthology.orchestra.run.smithi172:> cat /etc/os-release 2024-03-24T11:56:50.693 INFO:teuthology.orchestra.run.smithi172.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-03-24T11:56:50.693 INFO:teuthology.orchestra.run.smithi172.stdout:NAME="Ubuntu" 2024-03-24T11:56:50.694 INFO:teuthology.orchestra.run.smithi172.stdout:VERSION_ID="22.04" 2024-03-24T11:56:50.694 INFO:teuthology.orchestra.run.smithi172.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-03-24T11:56:50.694 INFO:teuthology.orchestra.run.smithi172.stdout:VERSION_CODENAME=jammy 2024-03-24T11:56:50.694 INFO:teuthology.orchestra.run.smithi172.stdout:ID=ubuntu 2024-03-24T11:56:50.694 INFO:teuthology.orchestra.run.smithi172.stdout:ID_LIKE=debian 2024-03-24T11:56:50.694 INFO:teuthology.orchestra.run.smithi172.stdout:HOME_URL="https://www.ubuntu.com/" 2024-03-24T11:56:50.694 INFO:teuthology.orchestra.run.smithi172.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-03-24T11:56:50.694 INFO:teuthology.orchestra.run.smithi172.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-03-24T11:56:50.694 INFO:teuthology.orchestra.run.smithi172.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-03-24T11:56:50.694 INFO:teuthology.orchestra.run.smithi172.stdout:UBUNTU_CODENAME=jammy 2024-03-24T11:56:50.694 INFO:teuthology.lock.ops:Updating smithi172.front.sepia.ceph.com on lock server 2024-03-24T11:56:50.723 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-03-24T11:56:50.731 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-03-24T11:56:50.736 INFO:teuthology.task.internal:Checking for old test directory... 2024-03-24T11:56:50.736 DEBUG:teuthology.orchestra.run.smithi170:> test '!' -e /home/ubuntu/cephtest 2024-03-24T11:56:50.739 DEBUG:teuthology.orchestra.run.smithi172:> test '!' -e /home/ubuntu/cephtest 2024-03-24T11:56:50.743 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-03-24T11:56:50.748 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-03-24T11:56:50.749 DEBUG:teuthology.orchestra.run.smithi170:> test -z $(ls -A /var/lib/ceph) 2024-03-24T11:56:50.788 DEBUG:teuthology.orchestra.run.smithi172:> test -z $(ls -A /var/lib/ceph) 2024-03-24T11:56:50.796 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-03-24T11:56:50.845 INFO:teuthology.run_tasks:Running task kernel... 2024-03-24T11:56:50.862 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-03-24T11:56:50.862 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-03-24T11:56:50.862 DEBUG:teuthology.orchestra.run.smithi170:> test -f /run/.containerenv -o -f /.dockerenv 2024-03-24T11:56:50.863 DEBUG:teuthology.orchestra.run.smithi172:> test -f /run/.containerenv -o -f /.dockerenv 2024-03-24T11:56:50.867 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-24T11:56:50.867 DEBUG:teuthology.orchestra.run.smithi170:> uname -r 2024-03-24T11:56:50.868 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-24T11:56:50.868 DEBUG:teuthology.orchestra.run.smithi172:> uname -r 2024-03-24T11:56:50.915 INFO:teuthology.orchestra.run.smithi170.stdout:5.15.0-56-generic 2024-03-24T11:56:50.915 INFO:teuthology.orchestra.run.smithi172.stdout:5.15.0-56-generic 2024-03-24T11:56:50.915 INFO:teuthology.task.kernel:Running kernel on smithi170: 5.15.0-56-generic 2024-03-24T11:56:50.915 DEBUG:teuthology.orchestra.run.smithi170:> sudo apt-get clean 2024-03-24T11:56:50.916 INFO:teuthology.task.kernel:Running kernel on smithi172: 5.15.0-56-generic 2024-03-24T11:56:50.916 DEBUG:teuthology.orchestra.run.smithi172:> sudo apt-get clean 2024-03-24T11:56:51.050 DEBUG:teuthology.orchestra.run.smithi172:> sudo apt-get update 2024-03-24T11:56:51.061 DEBUG:teuthology.orchestra.run.smithi170:> sudo apt-get update 2024-03-24T11:56:51.198 INFO:teuthology.orchestra.run.smithi172.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-03-24T11:56:51.235 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-24T11:56:51.235 INFO:teuthology.orchestra.run.smithi170.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-03-24T11:56:51.235 INFO:teuthology.orchestra.run.smithi170.stdout:Get:3 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-03-24T11:56:51.310 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-24T11:56:51.316 INFO:teuthology.orchestra.run.smithi170.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-03-24T11:56:51.392 INFO:teuthology.orchestra.run.smithi172.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-03-24T11:56:51.423 INFO:teuthology.orchestra.run.smithi172.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [428 kB] 2024-03-24T11:56:51.485 INFO:teuthology.orchestra.run.smithi170.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [428 kB] 2024-03-24T11:56:51.498 INFO:teuthology.orchestra.run.smithi172.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,286 kB] 2024-03-24T11:56:51.540 INFO:teuthology.orchestra.run.smithi172.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [229 kB] 2024-03-24T11:56:51.542 INFO:teuthology.orchestra.run.smithi172.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-03-24T11:56:51.543 INFO:teuthology.orchestra.run.smithi172.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [33.7 kB] 2024-03-24T11:56:51.543 INFO:teuthology.orchestra.run.smithi172.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,591 kB] 2024-03-24T11:56:51.556 INFO:teuthology.orchestra.run.smithi170.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [594 kB] 2024-03-24T11:56:51.562 INFO:teuthology.orchestra.run.smithi172.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [267 kB] 2024-03-24T11:56:51.564 INFO:teuthology.orchestra.run.smithi170.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,286 kB] 2024-03-24T11:56:51.565 INFO:teuthology.orchestra.run.smithi172.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-03-24T11:56:51.565 INFO:teuthology.orchestra.run.smithi172.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [851 kB] 2024-03-24T11:56:51.574 INFO:teuthology.orchestra.run.smithi172.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [599 kB] 2024-03-24T11:56:51.581 INFO:teuthology.orchestra.run.smithi172.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [162 kB] 2024-03-24T11:56:51.582 INFO:teuthology.orchestra.run.smithi172.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-03-24T11:56:51.584 INFO:teuthology.orchestra.run.smithi172.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.1 kB] 2024-03-24T11:56:51.585 INFO:teuthology.orchestra.run.smithi172.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-03-24T11:56:51.608 INFO:teuthology.orchestra.run.smithi172.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,476 B] 2024-03-24T11:56:51.608 INFO:teuthology.orchestra.run.smithi172.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-03-24T11:56:51.609 INFO:teuthology.orchestra.run.smithi170.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [229 kB] 2024-03-24T11:56:51.611 INFO:teuthology.orchestra.run.smithi170.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-03-24T11:56:51.612 INFO:teuthology.orchestra.run.smithi170.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [33.7 kB] 2024-03-24T11:56:51.612 INFO:teuthology.orchestra.run.smithi170.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,591 kB] 2024-03-24T11:56:51.632 INFO:teuthology.orchestra.run.smithi170.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [267 kB] 2024-03-24T11:56:51.633 INFO:teuthology.orchestra.run.smithi170.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,502 kB] 2024-03-24T11:56:51.634 INFO:teuthology.orchestra.run.smithi170.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-03-24T11:56:51.635 INFO:teuthology.orchestra.run.smithi170.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [851 kB] 2024-03-24T11:56:51.645 INFO:teuthology.orchestra.run.smithi170.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [599 kB] 2024-03-24T11:56:51.650 INFO:teuthology.orchestra.run.smithi170.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [162 kB] 2024-03-24T11:56:51.673 INFO:teuthology.orchestra.run.smithi170.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-03-24T11:56:51.674 INFO:teuthology.orchestra.run.smithi170.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.1 kB] 2024-03-24T11:56:51.674 INFO:teuthology.orchestra.run.smithi170.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-03-24T11:56:51.674 INFO:teuthology.orchestra.run.smithi170.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,476 B] 2024-03-24T11:56:51.674 INFO:teuthology.orchestra.run.smithi170.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-03-24T11:56:51.678 INFO:teuthology.orchestra.run.smithi170.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [289 kB] 2024-03-24T11:56:51.684 INFO:teuthology.orchestra.run.smithi170.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-03-24T11:56:51.685 INFO:teuthology.orchestra.run.smithi170.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.3 kB] 2024-03-24T11:56:51.686 INFO:teuthology.orchestra.run.smithi170.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,619 kB] 2024-03-24T11:56:51.709 INFO:teuthology.orchestra.run.smithi170.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [271 kB] 2024-03-24T11:56:51.713 INFO:teuthology.orchestra.run.smithi170.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-03-24T11:56:51.713 INFO:teuthology.orchestra.run.smithi170.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [697 kB] 2024-03-24T11:56:51.721 INFO:teuthology.orchestra.run.smithi170.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,059 kB] 2024-03-24T11:56:51.730 INFO:teuthology.orchestra.run.smithi170.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [240 kB] 2024-03-24T11:56:51.732 INFO:teuthology.orchestra.run.smithi170.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-03-24T11:56:51.733 INFO:teuthology.orchestra.run.smithi170.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.1 kB] 2024-03-24T11:56:51.733 INFO:teuthology.orchestra.run.smithi170.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,160 B] 2024-03-24T11:56:51.734 INFO:teuthology.orchestra.run.smithi170.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.1 kB] 2024-03-24T11:56:51.744 INFO:teuthology.orchestra.run.smithi170.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-03-24T11:56:51.744 INFO:teuthology.orchestra.run.smithi170.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-03-24T11:56:51.745 INFO:teuthology.orchestra.run.smithi170.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-03-24T11:56:51.745 INFO:teuthology.orchestra.run.smithi170.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-03-24T11:56:51.754 INFO:teuthology.orchestra.run.smithi172.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-03-24T11:56:51.765 INFO:teuthology.orchestra.run.smithi170.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-03-24T11:56:51.765 INFO:teuthology.orchestra.run.smithi170.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-03-24T11:56:51.766 INFO:teuthology.orchestra.run.smithi170.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-03-24T11:56:51.766 INFO:teuthology.orchestra.run.smithi170.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-03-24T11:56:51.766 INFO:teuthology.orchestra.run.smithi170.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-03-24T11:56:51.892 INFO:teuthology.orchestra.run.smithi172.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,502 kB] 2024-03-24T11:56:52.195 INFO:teuthology.orchestra.run.smithi172.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [594 kB] 2024-03-24T11:56:52.234 INFO:teuthology.orchestra.run.smithi172.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [289 kB] 2024-03-24T11:56:52.249 INFO:teuthology.orchestra.run.smithi172.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-03-24T11:56:52.250 INFO:teuthology.orchestra.run.smithi172.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,619 kB] 2024-03-24T11:56:52.309 INFO:teuthology.orchestra.run.smithi172.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.3 kB] 2024-03-24T11:56:52.310 INFO:teuthology.orchestra.run.smithi172.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [271 kB] 2024-03-24T11:56:52.317 INFO:teuthology.orchestra.run.smithi172.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-03-24T11:56:52.481 INFO:teuthology.orchestra.run.smithi172.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [697 kB] 2024-03-24T11:56:53.063 INFO:teuthology.orchestra.run.smithi172.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,059 kB] 2024-03-24T11:56:53.174 INFO:teuthology.orchestra.run.smithi172.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [240 kB] 2024-03-24T11:56:53.193 INFO:teuthology.orchestra.run.smithi172.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-03-24T11:56:53.194 INFO:teuthology.orchestra.run.smithi172.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,160 B] 2024-03-24T11:56:53.195 INFO:teuthology.orchestra.run.smithi172.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.1 kB] 2024-03-24T11:56:53.198 INFO:teuthology.orchestra.run.smithi172.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.1 kB] 2024-03-24T11:56:53.199 INFO:teuthology.orchestra.run.smithi172.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-03-24T11:56:53.199 INFO:teuthology.orchestra.run.smithi172.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-03-24T11:56:53.204 INFO:teuthology.orchestra.run.smithi172.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-03-24T11:56:53.208 INFO:teuthology.orchestra.run.smithi172.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-03-24T11:56:53.372 INFO:teuthology.orchestra.run.smithi172.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-03-24T11:56:53.455 INFO:teuthology.orchestra.run.smithi172.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-03-24T11:56:53.539 INFO:teuthology.orchestra.run.smithi172.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-03-24T11:56:53.620 INFO:teuthology.orchestra.run.smithi172.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-03-24T11:56:53.655 INFO:teuthology.orchestra.run.smithi172.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-03-24T11:56:57.301 INFO:teuthology.orchestra.run.smithi170.stdout:Fetched 12.5 MB in 2s (7,027 kB/s) 2024-03-24T11:56:58.212 INFO:teuthology.orchestra.run.smithi172.stdout:Fetched 12.5 MB in 3s (4,912 kB/s) 2024-03-24T11:56:58.702 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-03-24T11:56:58.720 DEBUG:teuthology.orchestra.run.smithi170:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-24T11:56:58.783 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-03-24T11:56:58.979 INFO:teuthology.orchestra.run.smithi170.stdout:Building dependency tree... 2024-03-24T11:56:58.980 INFO:teuthology.orchestra.run.smithi170.stdout:Reading state information... 2024-03-24T11:56:59.155 INFO:teuthology.orchestra.run.smithi170.stdout:The following packages were automatically installed and are no longer required: 2024-03-24T11:56:59.155 INFO:teuthology.orchestra.run.smithi170.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-24T11:56:59.155 INFO:teuthology.orchestra.run.smithi170.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-24T11:56:59.155 INFO:teuthology.orchestra.run.smithi170.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-24T11:56:59.155 INFO:teuthology.orchestra.run.smithi170.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-03-24T11:56:59.155 INFO:teuthology.orchestra.run.smithi170.stdout: python2.7-minimal 2024-03-24T11:56:59.155 INFO:teuthology.orchestra.run.smithi170.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-24T11:56:59.156 INFO:teuthology.orchestra.run.smithi170.stdout:The following additional packages will be installed: 2024-03-24T11:56:59.156 INFO:teuthology.orchestra.run.smithi170.stdout: linux-generic linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-24T11:56:59.156 INFO:teuthology.orchestra.run.smithi170.stdout: linux-headers-generic linux-image-5.15.0-101-generic 2024-03-24T11:56:59.156 INFO:teuthology.orchestra.run.smithi170.stdout: linux-modules-5.15.0-101-generic linux-modules-extra-5.15.0-101-generic 2024-03-24T11:56:59.157 INFO:teuthology.orchestra.run.smithi170.stdout:Suggested packages: 2024-03-24T11:56:59.158 INFO:teuthology.orchestra.run.smithi170.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-03-24T11:56:59.158 INFO:teuthology.orchestra.run.smithi170.stdout:Recommended packages: 2024-03-24T11:56:59.158 INFO:teuthology.orchestra.run.smithi170.stdout: thermald 2024-03-24T11:56:59.208 INFO:teuthology.orchestra.run.smithi170.stdout:The following NEW packages will be installed: 2024-03-24T11:56:59.208 INFO:teuthology.orchestra.run.smithi170.stdout: linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-24T11:56:59.208 INFO:teuthology.orchestra.run.smithi170.stdout: linux-image-5.15.0-101-generic linux-modules-5.15.0-101-generic 2024-03-24T11:56:59.208 INFO:teuthology.orchestra.run.smithi170.stdout: linux-modules-extra-5.15.0-101-generic 2024-03-24T11:56:59.209 INFO:teuthology.orchestra.run.smithi170.stdout:The following packages will be upgraded: 2024-03-24T11:56:59.210 INFO:teuthology.orchestra.run.smithi170.stdout: linux-generic linux-headers-generic linux-image-generic 2024-03-24T11:56:59.389 INFO:teuthology.orchestra.run.smithi170.stdout:3 upgraded, 5 newly installed, 0 to remove and 298 not upgraded. 2024-03-24T11:56:59.389 INFO:teuthology.orchestra.run.smithi170.stdout:Need to get 113 MB of archives. 2024-03-24T11:56:59.389 INFO:teuthology.orchestra.run.smithi170.stdout:After this operation, 582 MB of additional disk space will be used. 2024-03-24T11:56:59.389 INFO:teuthology.orchestra.run.smithi170.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-101-generic amd64 5.15.0-101.111 [22.6 MB] 2024-03-24T11:56:59.596 INFO:teuthology.orchestra.run.smithi172.stdout:Reading package lists... 2024-03-24T11:56:59.613 DEBUG:teuthology.orchestra.run.smithi172:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-24T11:56:59.671 INFO:teuthology.orchestra.run.smithi172.stdout:Reading package lists... 2024-03-24T11:56:59.874 INFO:teuthology.orchestra.run.smithi172.stdout:Building dependency tree... 2024-03-24T11:56:59.874 INFO:teuthology.orchestra.run.smithi172.stdout:Reading state information... 2024-03-24T11:57:00.035 INFO:teuthology.orchestra.run.smithi172.stdout:The following packages were automatically installed and are no longer required: 2024-03-24T11:57:00.036 INFO:teuthology.orchestra.run.smithi172.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-24T11:57:00.036 INFO:teuthology.orchestra.run.smithi172.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-24T11:57:00.036 INFO:teuthology.orchestra.run.smithi172.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-24T11:57:00.036 INFO:teuthology.orchestra.run.smithi172.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-03-24T11:57:00.036 INFO:teuthology.orchestra.run.smithi172.stdout: python2.7-minimal 2024-03-24T11:57:00.036 INFO:teuthology.orchestra.run.smithi172.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-24T11:57:00.038 INFO:teuthology.orchestra.run.smithi172.stdout:The following additional packages will be installed: 2024-03-24T11:57:00.038 INFO:teuthology.orchestra.run.smithi172.stdout: linux-generic linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-24T11:57:00.038 INFO:teuthology.orchestra.run.smithi172.stdout: linux-headers-generic linux-image-5.15.0-101-generic 2024-03-24T11:57:00.038 INFO:teuthology.orchestra.run.smithi172.stdout: linux-modules-5.15.0-101-generic linux-modules-extra-5.15.0-101-generic 2024-03-24T11:57:00.039 INFO:teuthology.orchestra.run.smithi172.stdout:Suggested packages: 2024-03-24T11:57:00.039 INFO:teuthology.orchestra.run.smithi172.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-03-24T11:57:00.039 INFO:teuthology.orchestra.run.smithi172.stdout:Recommended packages: 2024-03-24T11:57:00.039 INFO:teuthology.orchestra.run.smithi172.stdout: thermald 2024-03-24T11:57:00.084 INFO:teuthology.orchestra.run.smithi172.stdout:The following NEW packages will be installed: 2024-03-24T11:57:00.084 INFO:teuthology.orchestra.run.smithi172.stdout: linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-24T11:57:00.084 INFO:teuthology.orchestra.run.smithi172.stdout: linux-image-5.15.0-101-generic linux-modules-5.15.0-101-generic 2024-03-24T11:57:00.084 INFO:teuthology.orchestra.run.smithi172.stdout: linux-modules-extra-5.15.0-101-generic 2024-03-24T11:57:00.085 INFO:teuthology.orchestra.run.smithi172.stdout:The following packages will be upgraded: 2024-03-24T11:57:00.086 INFO:teuthology.orchestra.run.smithi172.stdout: linux-generic linux-headers-generic linux-image-generic 2024-03-24T11:57:00.143 INFO:teuthology.orchestra.run.smithi172.stdout:3 upgraded, 5 newly installed, 0 to remove and 298 not upgraded. 2024-03-24T11:57:00.143 INFO:teuthology.orchestra.run.smithi172.stdout:Need to get 113 MB of archives. 2024-03-24T11:57:00.143 INFO:teuthology.orchestra.run.smithi172.stdout:After this operation, 582 MB of additional disk space will be used. 2024-03-24T11:57:00.143 INFO:teuthology.orchestra.run.smithi172.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-101-generic amd64 5.15.0-101.111 [22.6 MB] 2024-03-24T11:57:00.615 INFO:teuthology.orchestra.run.smithi172.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-101-generic amd64 5.15.0-101.111 [11.5 MB] 2024-03-24T11:57:00.716 INFO:teuthology.orchestra.run.smithi172.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-101-generic amd64 5.15.0-101.111 [63.9 MB] 2024-03-24T11:57:00.778 INFO:teuthology.orchestra.run.smithi170.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-101-generic amd64 5.15.0-101.111 [11.5 MB] 2024-03-24T11:57:01.130 INFO:teuthology.orchestra.run.smithi170.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-101-generic amd64 5.15.0-101.111 [63.9 MB] 2024-03-24T11:57:01.623 INFO:teuthology.orchestra.run.smithi172.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.101.98 [1,698 B] 2024-03-24T11:57:01.623 INFO:teuthology.orchestra.run.smithi172.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.101.98 [2,486 B] 2024-03-24T11:57:01.623 INFO:teuthology.orchestra.run.smithi172.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101 all 5.15.0-101.111 [12.3 MB] 2024-03-24T11:57:02.212 INFO:teuthology.orchestra.run.smithi172.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101-generic amd64 5.15.0-101.111 [2,876 kB] 2024-03-24T11:57:02.257 INFO:teuthology.orchestra.run.smithi172.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.101.98 [2,332 B] 2024-03-24T11:57:02.647 INFO:teuthology.orchestra.run.smithi172.stdout:Fetched 113 MB in 2s (52.3 MB/s) 2024-03-24T11:57:02.823 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package linux-modules-5.15.0-101-generic. 2024-03-24T11:57:03.350 INFO:teuthology.orchestra.run.smithi170.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.101.98 [1,698 B] 2024-03-24T11:57:03.350 INFO:teuthology.orchestra.run.smithi170.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.101.98 [2,486 B] 2024-03-24T11:57:03.351 INFO:teuthology.orchestra.run.smithi170.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101 all 5.15.0-101.111 [12.3 MB] 2024-03-24T11:57:04.545 INFO:teuthology.orchestra.run.smithi170.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101-generic amd64 5.15.0-101.111 [2,876 kB] 2024-03-24T11:57:04.662 INFO:teuthology.orchestra.run.smithi170.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.101.98 [2,332 B] 2024-03-24T11:57:04.826 INFO:teuthology.orchestra.run.smithi172.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-03-24T11:57:04.830 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../0-linux-modules-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-24T11:57:04.895 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:05.060 INFO:teuthology.orchestra.run.smithi170.stdout:Fetched 113 MB in 5s (20.8 MB/s) 2024-03-24T11:57:05.225 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-modules-5.15.0-101-generic. 2024-03-24T11:57:07.269 INFO:teuthology.orchestra.run.smithi170.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-03-24T11:57:07.274 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../0-linux-modules-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-24T11:57:07.456 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:07.487 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package linux-image-5.15.0-101-generic. 2024-03-24T11:57:07.508 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../1-linux-image-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-24T11:57:07.598 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:08.048 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-101-generic. 2024-03-24T11:57:08.068 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-24T11:57:08.106 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:09.682 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-image-5.15.0-101-generic. 2024-03-24T11:57:09.704 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../1-linux-image-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-24T11:57:09.788 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:10.302 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-101-generic. 2024-03-24T11:57:10.323 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-24T11:57:10.393 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:14.412 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../3-linux-generic_5.15.0.101.98_amd64.deb ... 2024-03-24T11:57:14.530 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-24T11:57:14.871 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.101.98_amd64.deb ... 2024-03-24T11:57:15.017 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-image-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-24T11:57:15.280 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package linux-headers-5.15.0-101. 2024-03-24T11:57:15.303 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../5-linux-headers-5.15.0-101_5.15.0-101.111_all.deb ... 2024-03-24T11:57:15.338 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-24T11:57:17.635 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../3-linux-generic_5.15.0.101.98_amd64.deb ... 2024-03-24T11:57:17.787 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-24T11:57:18.102 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.101.98_amd64.deb ... 2024-03-24T11:57:18.215 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-image-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-24T11:57:18.510 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-headers-5.15.0-101. 2024-03-24T11:57:18.533 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../5-linux-headers-5.15.0-101_5.15.0-101.111_all.deb ... 2024-03-24T11:57:18.585 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-24T11:57:21.038 INFO:teuthology.orchestra.run.smithi172.stdout:Selecting previously unselected package linux-headers-5.15.0-101-generic. 2024-03-24T11:57:21.076 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../6-linux-headers-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-24T11:57:21.113 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:23.689 INFO:teuthology.orchestra.run.smithi172.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.101.98_amd64.deb ... 2024-03-24T11:57:23.814 INFO:teuthology.orchestra.run.smithi172.stdout:Unpacking linux-headers-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-24T11:57:24.148 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-24T11:57:24.269 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:24.387 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-headers-generic (5.15.0.101.98) ... 2024-03-24T11:57:24.516 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:24.738 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-headers-5.15.0-101-generic. 2024-03-24T11:57:24.775 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../6-linux-headers-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-24T11:57:24.813 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:25.832 INFO:teuthology.orchestra.run.smithi172.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-03-24T11:57:25.832 INFO:teuthology.orchestra.run.smithi172.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-03-24T11:57:25.832 INFO:teuthology.orchestra.run.smithi172.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-101-generic 2024-03-24T11:57:25.832 INFO:teuthology.orchestra.run.smithi172.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-101-generic 2024-03-24T11:57:26.009 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:27.852 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:29.079 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.101.98_amd64.deb ... 2024-03-24T11:57:29.200 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-headers-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-24T11:57:29.244 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-image-generic (5.15.0.101.98) ... 2024-03-24T11:57:29.370 INFO:teuthology.orchestra.run.smithi172.stdout:Setting up linux-generic (5.15.0.101.98) ... 2024-03-24T11:57:29.497 INFO:teuthology.orchestra.run.smithi172.stdout:Processing triggers for linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:29.553 INFO:teuthology.orchestra.run.smithi172.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-03-24T11:57:29.553 INFO:teuthology.orchestra.run.smithi172.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-101-generic 2024-03-24T11:57:29.592 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-24T11:57:29.713 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:29.856 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-headers-generic (5.15.0.101.98) ... 2024-03-24T11:57:29.986 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:31.324 INFO:teuthology.orchestra.run.smithi170.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-03-24T11:57:31.324 INFO:teuthology.orchestra.run.smithi170.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-03-24T11:57:31.324 INFO:teuthology.orchestra.run.smithi170.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-101-generic 2024-03-24T11:57:31.324 INFO:teuthology.orchestra.run.smithi170.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-101-generic 2024-03-24T11:57:31.638 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:33.464 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:34.876 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-image-generic (5.15.0.101.98) ... 2024-03-24T11:57:35.007 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-generic (5.15.0.101.98) ... 2024-03-24T11:57:35.167 INFO:teuthology.orchestra.run.smithi170.stdout:Processing triggers for linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-24T11:57:35.235 INFO:teuthology.orchestra.run.smithi170.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-03-24T11:57:35.235 INFO:teuthology.orchestra.run.smithi170.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-101-generic 2024-03-24T11:57:43.637 INFO:teuthology.orchestra.run.smithi172.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-03-24T11:57:43.637 INFO:teuthology.orchestra.run.smithi172.stdout:Sourcing file `/etc/default/grub' 2024-03-24T11:57:43.647 INFO:teuthology.orchestra.run.smithi172.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-24T11:57:43.666 INFO:teuthology.orchestra.run.smithi172.stdout:Generating grub configuration file ... 2024-03-24T11:57:43.933 INFO:teuthology.orchestra.run.smithi172.stdout:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-24T11:57:43.959 INFO:teuthology.orchestra.run.smithi172.stdout:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-24T11:57:44.228 INFO:teuthology.orchestra.run.smithi172.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-24T11:57:44.233 INFO:teuthology.orchestra.run.smithi172.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-24T11:57:44.307 INFO:teuthology.orchestra.run.smithi172.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-24T11:57:44.312 INFO:teuthology.orchestra.run.smithi172.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-24T11:57:44.473 INFO:teuthology.orchestra.run.smithi172.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-24T11:57:44.473 INFO:teuthology.orchestra.run.smithi172.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-03-24T11:57:44.473 INFO:teuthology.orchestra.run.smithi172.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-24T11:57:44.516 INFO:teuthology.orchestra.run.smithi172.stdout:done 2024-03-24T11:57:44.976 DEBUG:teuthology.orchestra.run.smithi172:> dpkg -s linux-image-generic 2024-03-24T11:57:44.993 INFO:teuthology.orchestra.run.smithi172.stdout:Package: linux-image-generic 2024-03-24T11:57:44.993 INFO:teuthology.orchestra.run.smithi172.stdout:Status: install ok installed 2024-03-24T11:57:44.993 INFO:teuthology.orchestra.run.smithi172.stdout:Priority: optional 2024-03-24T11:57:44.994 INFO:teuthology.orchestra.run.smithi172.stdout:Section: kernel 2024-03-24T11:57:44.994 INFO:teuthology.orchestra.run.smithi172.stdout:Installed-Size: 21 2024-03-24T11:57:44.994 INFO:teuthology.orchestra.run.smithi172.stdout:Maintainer: Ubuntu Kernel Team 2024-03-24T11:57:44.994 INFO:teuthology.orchestra.run.smithi172.stdout:Architecture: amd64 2024-03-24T11:57:44.994 INFO:teuthology.orchestra.run.smithi172.stdout:Source: linux-meta 2024-03-24T11:57:44.994 INFO:teuthology.orchestra.run.smithi172.stdout:Version: 5.15.0.101.98 2024-03-24T11:57:44.994 INFO:teuthology.orchestra.run.smithi172.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-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-24T11:57:44.994 INFO:teuthology.orchestra.run.smithi172.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-24T11:57:44.994 INFO:teuthology.orchestra.run.smithi172.stdout:Recommends: thermald 2024-03-24T11:57:44.994 INFO:teuthology.orchestra.run.smithi172.stdout:Description: Generic Linux kernel image 2024-03-24T11:57:44.994 INFO:teuthology.orchestra.run.smithi172.stdout: This package will always depend on the latest generic kernel image 2024-03-24T11:57:44.994 INFO:teuthology.orchestra.run.smithi172.stdout: available. 2024-03-24T11:57:44.995 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-101-generic 2024-03-24T11:57:44.995 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-03-24T11:57:44.995 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-03-24T11:57:44.995 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-03-24T11:57:44.995 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi172.front.sepia.ceph.com, path=None, version=distro) 2024-03-24T11:57:44.995 DEBUG:teuthology.orchestra.run.smithi172:> sudo apt-get clean 2024-03-24T11:57:45.166 DEBUG:teuthology.orchestra.run.smithi172:> sudo apt-get update 2024-03-24T11:57:45.291 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-24T11:57:45.306 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-03-24T11:57:45.326 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-03-24T11:57:45.429 INFO:teuthology.orchestra.run.smithi172.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-03-24T11:57:46.637 INFO:teuthology.orchestra.run.smithi172.stdout:Reading package lists... 2024-03-24T11:57:46.655 DEBUG:teuthology.orchestra.run.smithi172:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-24T11:57:46.715 INFO:teuthology.orchestra.run.smithi172.stdout:Reading package lists... 2024-03-24T11:57:46.919 INFO:teuthology.orchestra.run.smithi172.stdout:Building dependency tree... 2024-03-24T11:57:46.919 INFO:teuthology.orchestra.run.smithi172.stdout:Reading state information... 2024-03-24T11:57:47.093 INFO:teuthology.orchestra.run.smithi172.stdout:linux-image-generic is already the newest version (5.15.0.101.98). 2024-03-24T11:57:47.093 INFO:teuthology.orchestra.run.smithi172.stdout:The following packages were automatically installed and are no longer required: 2024-03-24T11:57:47.093 INFO:teuthology.orchestra.run.smithi172.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-24T11:57:47.093 INFO:teuthology.orchestra.run.smithi172.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-24T11:57:47.093 INFO:teuthology.orchestra.run.smithi172.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-24T11:57:47.093 INFO:teuthology.orchestra.run.smithi172.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-24T11:57:47.093 INFO:teuthology.orchestra.run.smithi172.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-24T11:57:47.093 INFO:teuthology.orchestra.run.smithi172.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-24T11:57:47.135 INFO:teuthology.orchestra.run.smithi172.stdout:0 upgraded, 0 newly installed, 0 to remove and 298 not upgraded. 2024-03-24T11:57:47.137 DEBUG:teuthology.orchestra.run.smithi172:> dpkg -s linux-image-generic 2024-03-24T11:57:47.153 INFO:teuthology.orchestra.run.smithi172.stdout:Package: linux-image-generic 2024-03-24T11:57:47.154 INFO:teuthology.orchestra.run.smithi172.stdout:Status: install ok installed 2024-03-24T11:57:47.154 INFO:teuthology.orchestra.run.smithi172.stdout:Priority: optional 2024-03-24T11:57:47.154 INFO:teuthology.orchestra.run.smithi172.stdout:Section: kernel 2024-03-24T11:57:47.154 INFO:teuthology.orchestra.run.smithi172.stdout:Installed-Size: 21 2024-03-24T11:57:47.154 INFO:teuthology.orchestra.run.smithi172.stdout:Maintainer: Ubuntu Kernel Team 2024-03-24T11:57:47.154 INFO:teuthology.orchestra.run.smithi172.stdout:Architecture: amd64 2024-03-24T11:57:47.154 INFO:teuthology.orchestra.run.smithi172.stdout:Source: linux-meta 2024-03-24T11:57:47.154 INFO:teuthology.orchestra.run.smithi172.stdout:Version: 5.15.0.101.98 2024-03-24T11:57:47.154 INFO:teuthology.orchestra.run.smithi172.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-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-24T11:57:47.154 INFO:teuthology.orchestra.run.smithi172.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-24T11:57:47.154 INFO:teuthology.orchestra.run.smithi172.stdout:Recommends: thermald 2024-03-24T11:57:47.155 INFO:teuthology.orchestra.run.smithi172.stdout:Description: Generic Linux kernel image 2024-03-24T11:57:47.155 INFO:teuthology.orchestra.run.smithi172.stdout: This package will always depend on the latest generic kernel image 2024-03-24T11:57:47.155 INFO:teuthology.orchestra.run.smithi172.stdout: available. 2024-03-24T11:57:47.156 DEBUG:teuthology.orchestra.run.smithi172:> mktemp 2024-03-24T11:57:47.201 INFO:teuthology.orchestra.run.smithi172.stdout:/tmp/tmp.OHPI7GjoI3 2024-03-24T11:57:47.201 DEBUG:teuthology.orchestra.run.smithi172:> sudo cp /boot/grub/grub.cfg /tmp/tmp.OHPI7GjoI3 2024-03-24T11:57:47.257 DEBUG:teuthology.orchestra.run.smithi172:> sudo chmod 0666 /tmp/tmp.OHPI7GjoI3 2024-03-24T11:57:47.379 DEBUG:teuthology.orchestra.remote:smithi172:/tmp/tmp.OHPI7GjoI3 is 10KB 2024-03-24T11:57:47.392 DEBUG:teuthology.orchestra.run.smithi172:> rm -fr /tmp/tmp.OHPI7GjoI3 2024-03-24T11:57:47.398 DEBUG:teuthology.orchestra.run.smithi172:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-03-24T11:57:47.453 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-03-24T11:57:47.453 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-03-24T11:57:47.453 DEBUG:teuthology.orchestra.run.smithi172:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-03-24T11:57:47.519 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-101-generic 2024-03-24T11:57:47.519 DEBUG:teuthology.orchestra.run.smithi172:> sudo update-grub 2024-03-24T11:57:48.661 INFO:teuthology.orchestra.run.smithi172.stderr:Sourcing file `/etc/default/grub' 2024-03-24T11:57:48.662 INFO:teuthology.orchestra.run.smithi172.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-24T11:57:48.664 INFO:teuthology.orchestra.run.smithi172.stderr:Generating grub configuration file ... 2024-03-24T11:57:48.837 INFO:teuthology.orchestra.run.smithi172.stderr:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-24T11:57:48.843 INFO:teuthology.orchestra.run.smithi172.stderr:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-24T11:57:49.094 INFO:teuthology.orchestra.run.smithi172.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-24T11:57:49.099 INFO:teuthology.orchestra.run.smithi172.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-24T11:57:49.143 INFO:teuthology.orchestra.run.smithi172.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-24T11:57:49.148 INFO:teuthology.orchestra.run.smithi172.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-24T11:57:49.247 INFO:teuthology.orchestra.run.smithi170.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-03-24T11:57:49.251 INFO:teuthology.orchestra.run.smithi170.stdout:Sourcing file `/etc/default/grub' 2024-03-24T11:57:49.270 INFO:teuthology.orchestra.run.smithi172.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-24T11:57:49.270 INFO:teuthology.orchestra.run.smithi172.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-03-24T11:57:49.270 INFO:teuthology.orchestra.run.smithi172.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-24T11:57:49.273 INFO:teuthology.orchestra.run.smithi170.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-24T11:57:49.290 INFO:teuthology.orchestra.run.smithi170.stdout:Generating grub configuration file ... 2024-03-24T11:57:49.291 INFO:teuthology.orchestra.run.smithi172.stderr:done 2024-03-24T11:57:49.293 DEBUG:teuthology.orchestra.run.smithi172:> sudo shutdown -r now 2024-03-24T11:57:49.693 INFO:teuthology.orchestra.run.smithi170.stdout:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-24T11:57:49.717 INFO:teuthology.orchestra.run.smithi170.stdout:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-24T11:57:50.202 INFO:teuthology.orchestra.run.smithi170.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-24T11:57:50.208 INFO:teuthology.orchestra.run.smithi170.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-24T11:57:50.269 INFO:teuthology.orchestra.run.smithi170.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-24T11:57:50.275 INFO:teuthology.orchestra.run.smithi170.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-24T11:57:50.460 INFO:teuthology.orchestra.run.smithi170.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-24T11:57:50.460 INFO:teuthology.orchestra.run.smithi170.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-03-24T11:57:50.460 INFO:teuthology.orchestra.run.smithi170.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-24T11:57:50.507 INFO:teuthology.orchestra.run.smithi170.stdout:done 2024-03-24T11:57:51.003 DEBUG:teuthology.orchestra.run.smithi170:> dpkg -s linux-image-generic 2024-03-24T11:57:51.032 INFO:teuthology.orchestra.run.smithi170.stdout:Package: linux-image-generic 2024-03-24T11:57:51.032 INFO:teuthology.orchestra.run.smithi170.stdout:Status: install ok installed 2024-03-24T11:57:51.032 INFO:teuthology.orchestra.run.smithi170.stdout:Priority: optional 2024-03-24T11:57:51.032 INFO:teuthology.orchestra.run.smithi170.stdout:Section: kernel 2024-03-24T11:57:51.032 INFO:teuthology.orchestra.run.smithi170.stdout:Installed-Size: 21 2024-03-24T11:57:51.032 INFO:teuthology.orchestra.run.smithi170.stdout:Maintainer: Ubuntu Kernel Team 2024-03-24T11:57:51.033 INFO:teuthology.orchestra.run.smithi170.stdout:Architecture: amd64 2024-03-24T11:57:51.033 INFO:teuthology.orchestra.run.smithi170.stdout:Source: linux-meta 2024-03-24T11:57:51.033 INFO:teuthology.orchestra.run.smithi170.stdout:Version: 5.15.0.101.98 2024-03-24T11:57:51.033 INFO:teuthology.orchestra.run.smithi170.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-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-24T11:57:51.033 INFO:teuthology.orchestra.run.smithi170.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-24T11:57:51.033 INFO:teuthology.orchestra.run.smithi170.stdout:Recommends: thermald 2024-03-24T11:57:51.033 INFO:teuthology.orchestra.run.smithi170.stdout:Description: Generic Linux kernel image 2024-03-24T11:57:51.033 INFO:teuthology.orchestra.run.smithi170.stdout: This package will always depend on the latest generic kernel image 2024-03-24T11:57:51.033 INFO:teuthology.orchestra.run.smithi170.stdout: available. 2024-03-24T11:57:51.033 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-101-generic 2024-03-24T11:57:51.033 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-03-24T11:57:51.034 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-03-24T11:57:51.034 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-03-24T11:57:51.034 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi170.front.sepia.ceph.com, path=None, version=distro) 2024-03-24T11:57:51.034 DEBUG:teuthology.orchestra.run.smithi170:> sudo apt-get clean 2024-03-24T11:57:51.212 DEBUG:teuthology.orchestra.run.smithi170:> sudo apt-get update 2024-03-24T11:57:51.334 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-03-24T11:57:51.334 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-24T11:57:51.348 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-03-24T11:57:51.367 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-03-24T11:57:52.672 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-03-24T11:57:52.691 DEBUG:teuthology.orchestra.run.smithi170:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-24T11:57:52.742 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-03-24T11:57:52.917 INFO:teuthology.orchestra.run.smithi170.stdout:Building dependency tree... 2024-03-24T11:57:52.917 INFO:teuthology.orchestra.run.smithi170.stdout:Reading state information... 2024-03-24T11:57:53.068 INFO:teuthology.orchestra.run.smithi170.stdout:linux-image-generic is already the newest version (5.15.0.101.98). 2024-03-24T11:57:53.068 INFO:teuthology.orchestra.run.smithi170.stdout:The following packages were automatically installed and are no longer required: 2024-03-24T11:57:53.068 INFO:teuthology.orchestra.run.smithi170.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-24T11:57:53.068 INFO:teuthology.orchestra.run.smithi170.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-24T11:57:53.068 INFO:teuthology.orchestra.run.smithi170.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-24T11:57:53.068 INFO:teuthology.orchestra.run.smithi170.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-24T11:57:53.069 INFO:teuthology.orchestra.run.smithi170.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-24T11:57:53.069 INFO:teuthology.orchestra.run.smithi170.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-24T11:57:53.107 INFO:teuthology.orchestra.run.smithi170.stdout:0 upgraded, 0 newly installed, 0 to remove and 298 not upgraded. 2024-03-24T11:57:53.109 DEBUG:teuthology.orchestra.run.smithi170:> dpkg -s linux-image-generic 2024-03-24T11:57:53.167 INFO:teuthology.orchestra.run.smithi170.stdout:Package: linux-image-generic 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout:Status: install ok installed 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout:Priority: optional 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout:Section: kernel 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout:Installed-Size: 21 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout:Maintainer: Ubuntu Kernel Team 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout:Architecture: amd64 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout:Source: linux-meta 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout:Version: 5.15.0.101.98 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.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-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout:Recommends: thermald 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout:Description: Generic Linux kernel image 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout: This package will always depend on the latest generic kernel image 2024-03-24T11:57:53.168 INFO:teuthology.orchestra.run.smithi170.stdout: available. 2024-03-24T11:57:53.169 DEBUG:teuthology.orchestra.run.smithi170:> mktemp 2024-03-24T11:57:53.213 INFO:teuthology.orchestra.run.smithi170.stdout:/tmp/tmp.A8OX8egCcm 2024-03-24T11:57:53.213 DEBUG:teuthology.orchestra.run.smithi170:> sudo cp /boot/grub/grub.cfg /tmp/tmp.A8OX8egCcm 2024-03-24T11:57:53.268 DEBUG:teuthology.orchestra.run.smithi170:> sudo chmod 0666 /tmp/tmp.A8OX8egCcm 2024-03-24T11:57:53.386 DEBUG:teuthology.orchestra.remote:smithi170:/tmp/tmp.A8OX8egCcm is 10KB 2024-03-24T11:57:53.398 DEBUG:teuthology.orchestra.run.smithi170:> rm -fr /tmp/tmp.A8OX8egCcm 2024-03-24T11:57:53.403 DEBUG:teuthology.orchestra.run.smithi170:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-03-24T11:57:53.456 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T11:57:53.456 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-03-24T11:57:53.456 DEBUG:teuthology.orchestra.run.smithi170:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-03-24T11:57:53.525 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-101-generic 2024-03-24T11:57:53.526 DEBUG:teuthology.orchestra.run.smithi170:> sudo update-grub 2024-03-24T11:57:54.920 INFO:teuthology.orchestra.run.smithi170.stderr:Sourcing file `/etc/default/grub' 2024-03-24T11:57:54.921 INFO:teuthology.orchestra.run.smithi170.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-24T11:57:54.929 INFO:teuthology.orchestra.run.smithi170.stderr:Generating grub configuration file ... 2024-03-24T11:57:55.155 INFO:teuthology.orchestra.run.smithi170.stderr:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-24T11:57:55.161 INFO:teuthology.orchestra.run.smithi170.stderr:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-24T11:57:55.503 INFO:teuthology.orchestra.run.smithi170.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-24T11:57:55.509 INFO:teuthology.orchestra.run.smithi170.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-24T11:57:55.551 INFO:teuthology.orchestra.run.smithi170.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-24T11:57:55.556 INFO:teuthology.orchestra.run.smithi170.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-24T11:57:55.726 INFO:teuthology.orchestra.run.smithi170.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-24T11:57:55.727 INFO:teuthology.orchestra.run.smithi170.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-03-24T11:57:55.727 INFO:teuthology.orchestra.run.smithi170.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-24T11:57:55.748 INFO:teuthology.orchestra.run.smithi170.stderr:done 2024-03-24T11:57:55.753 DEBUG:teuthology.orchestra.run.smithi170:> sudo shutdown -r now 2024-03-24T11:58:19.318 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-03-24T11:58:19.319 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-03-24T11:58:19.320 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi172.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-24T11:58:25.758 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-03-24T11:58:25.759 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-03-24T11:58:25.759 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-24T11:58:37.854 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.172 2024-03-24T11:58:44.258 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.170 2024-03-24T11:58:46.859 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-03-24T11:58:46.860 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi172.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-24T11:58:49.918 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.172 2024-03-24T11:58:53.262 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-03-24T11:58:53.263 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-24T11:58:56.322 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.170 2024-03-24T11:59:01.922 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-03-24T11:59:01.923 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi172.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-24T11:59:08.330 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-03-24T11:59:08.331 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-24T11:59:40.029 DEBUG:teuthology.orchestra.run.smithi170:> true 2024-03-24T11:59:40.721 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-03-24T11:59:40.721 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-101-generic"... 2024-03-24T11:59:40.722 DEBUG:teuthology.orchestra.run.smithi170:> uname -r 2024-03-24T11:59:40.770 INFO:teuthology.orchestra.run.smithi170.stdout:5.15.0-101-generic 2024-03-24T11:59:40.770 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-101-generic vs 5.15.0-101-generic 2024-03-24T11:59:40.770 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-03-24T11:59:40.770 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-03-24T11:59:41.771 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-03-24T11:59:41.771 DEBUG:teuthology.orchestra.run.smithi170:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-03-24T11:59:41.880 INFO:teuthology.orchestra.run.smithi170.stdout:ttyS1 2024-03-24T11:59:41.912 DEBUG:teuthology.parallel:result is None 2024-03-24T12:00:01.925 DEBUG:teuthology.orchestra.remote:timed out 2024-03-24T12:00:16.926 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-03-24T12:00:16.927 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi172.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-24T12:00:17.237 DEBUG:teuthology.orchestra.run.smithi172:> true 2024-03-24T12:00:17.790 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-03-24T12:00:17.790 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-101-generic"... 2024-03-24T12:00:17.791 DEBUG:teuthology.orchestra.run.smithi172:> uname -r 2024-03-24T12:00:17.836 INFO:teuthology.orchestra.run.smithi172.stdout:5.15.0-101-generic 2024-03-24T12:00:17.836 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-101-generic vs 5.15.0-101-generic 2024-03-24T12:00:17.836 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-03-24T12:00:17.836 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-03-24T12:00:18.837 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-03-24T12:00:18.837 DEBUG:teuthology.orchestra.run.smithi172:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-03-24T12:00:19.206 INFO:teuthology.orchestra.run.smithi172.stdout:ttyS1 2024-03-24T12:00:19.241 DEBUG:teuthology.parallel:result is None 2024-03-24T12:00:19.242 INFO:teuthology.run_tasks:Running task internal.base... 2024-03-24T12:00:19.251 INFO:teuthology.task.internal:Creating test directory... 2024-03-24T12:00:19.251 DEBUG:teuthology.orchestra.run.smithi170:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-03-24T12:00:19.253 DEBUG:teuthology.orchestra.run.smithi172:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-03-24T12:00:19.259 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-03-24T12:00:19.272 INFO:teuthology.run_tasks:Running task internal.archive... 2024-03-24T12:00:19.281 INFO:teuthology.task.internal:Creating archive directory... 2024-03-24T12:00:19.281 DEBUG:teuthology.orchestra.run.smithi170:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-03-24T12:00:19.302 DEBUG:teuthology.orchestra.run.smithi172:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-03-24T12:00:19.410 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-03-24T12:00:19.425 INFO:teuthology.task.internal:Enabling coredump saving... 2024-03-24T12:00:19.426 DEBUG:teuthology.orchestra.run.smithi170:> 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-03-24T12:00:19.428 DEBUG:teuthology.orchestra.run.smithi172:> 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-03-24T12:00:19.445 INFO:teuthology.orchestra.run.smithi172.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-24T12:00:19.450 INFO:teuthology.orchestra.run.smithi170.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-24T12:00:19.453 INFO:teuthology.orchestra.run.smithi172.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-24T12:00:19.457 INFO:teuthology.orchestra.run.smithi170.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-24T12:00:19.459 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-03-24T12:00:19.466 INFO:teuthology.task.internal:Configuring sudo... 2024-03-24T12:00:19.466 DEBUG:teuthology.orchestra.run.smithi170:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-03-24T12:00:19.502 DEBUG:teuthology.orchestra.run.smithi172:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-03-24T12:00:19.517 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-03-24T12:00:19.525 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-03-24T12:00:19.526 DEBUG:teuthology.orchestra.run.smithi170:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-03-24T12:00:19.558 DEBUG:teuthology.orchestra.run.smithi172:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-03-24T12:00:19.564 DEBUG:teuthology.orchestra.run.smithi170:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-24T12:00:19.609 DEBUG:teuthology.orchestra.run.smithi170:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-24T12:00:19.657 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:00:19.657 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-03-24T12:00:19.719 DEBUG:teuthology.orchestra.run.smithi172:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-24T12:00:19.725 DEBUG:teuthology.orchestra.run.smithi172:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-24T12:00:19.771 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-03-24T12:00:19.772 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-03-24T12:00:19.837 DEBUG:teuthology.orchestra.run.smithi170:> sudo service rsyslog restart 2024-03-24T12:00:19.840 DEBUG:teuthology.orchestra.run.smithi172:> sudo service rsyslog restart 2024-03-24T12:00:19.911 INFO:teuthology.run_tasks:Running task internal.timer... 2024-03-24T12:00:19.918 INFO:teuthology.task.internal:Starting timer... 2024-03-24T12:00:19.918 INFO:teuthology.run_tasks:Running task pcp... 2024-03-24T12:00:19.928 INFO:teuthology.run_tasks:Running task selinux... 2024-03-24T12:00:19.936 DEBUG:teuthology.task.selinux:Excluding smithi170: OS 'ubuntu' does not support SELinux 2024-03-24T12:00:19.936 DEBUG:teuthology.task.selinux:Excluding smithi172: OS 'ubuntu' does not support SELinux 2024-03-24T12:00:19.937 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-03-24T12:00:19.937 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-03-24T12:00:19.937 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-03-24T12:00:19.937 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-03-24T12:00:19.946 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-03-24T12:00:19.952 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-03-24T12:00:20.175 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-03-24T12:00:20.191 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-03-24T12:00:20.192 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi170.front.sepia.ceph.com,smithi172.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-03-24T12:07:18.308 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi170.front.sepia.ceph.com'), Remote(name='ubuntu@smithi172.front.sepia.ceph.com')] 2024-03-24T12:07:18.309 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-03-24T12:07:18.310 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-24T12:07:18.391 DEBUG:teuthology.orchestra.run.smithi170:> true 2024-03-24T12:07:18.470 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-03-24T12:07:18.470 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-03-24T12:07:18.471 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi172.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-24T12:07:18.548 DEBUG:teuthology.orchestra.run.smithi172:> true 2024-03-24T12:07:18.626 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi172.front.sepia.ceph.com' 2024-03-24T12:07:18.626 INFO:teuthology.run_tasks:Running task clock... 2024-03-24T12:07:18.638 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-03-24T12:07:18.638 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-03-24T12:07:18.638 DEBUG:teuthology.orchestra.run.smithi170:> 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-03-24T12:07:18.641 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-03-24T12:07:18.641 DEBUG:teuthology.orchestra.run.smithi172:> 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-03-24T12:07:18.666 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-03-24T12:07:18.666 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: Command line: ntpd -gq 2024-03-24T12:07:18.666 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: ---------------------------------------------------- 2024-03-24T12:07:18.666 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: ntp-4 is maintained by Network Time Foundation, 2024-03-24T12:07:18.666 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-03-24T12:07:18.666 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: corporation. Support and training for ntp-4 are 2024-03-24T12:07:18.666 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: available at https://www.nwtime.org/support 2024-03-24T12:07:18.666 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: ---------------------------------------------------- 2024-03-24T12:07:18.667 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: proto: precision = 0.057 usec (-24) 2024-03-24T12:07:18.667 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: basedate set to 2022-02-04 2024-03-24T12:07:18.667 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: gps base set to 2022-02-06 (week 2196) 2024-03-24T12:07:18.667 INFO:teuthology.orchestra.run.smithi170.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-24T12:07:18.668 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-24T12:07:18.668 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: restrict ::: KOD does nothing without LIMITED. 2024-03-24T12:07:18.668 INFO:teuthology.orchestra.run.smithi170.stderr:restrict ::: KOD does nothing without LIMITED. 2024-03-24T12:07:18.669 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: Listen and drop on 0 v6wildcard [::]:123 2024-03-24T12:07:18.669 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-03-24T12:07:18.669 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: Listen normally on 2 lo 127.0.0.1:123 2024-03-24T12:07:18.669 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: Listen normally on 3 enp3s0f1 172.21.15.170:123 2024-03-24T12:07:18.669 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: Listen normally on 4 lo [::1]:123 2024-03-24T12:07:18.669 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7255%5]:123 2024-03-24T12:07:18.669 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:18 ntpd[17240]: Listening on routing socket on fd #22 for interface updates 2024-03-24T12:07:18.694 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-03-24T12:07:18.694 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: Command line: ntpd -gq 2024-03-24T12:07:18.694 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: ---------------------------------------------------- 2024-03-24T12:07:18.694 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: ntp-4 is maintained by Network Time Foundation, 2024-03-24T12:07:18.694 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-03-24T12:07:18.694 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: corporation. Support and training for ntp-4 are 2024-03-24T12:07:18.694 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: available at https://www.nwtime.org/support 2024-03-24T12:07:18.694 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: ---------------------------------------------------- 2024-03-24T12:07:18.695 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: proto: precision = 0.069 usec (-24) 2024-03-24T12:07:18.695 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: basedate set to 2022-02-04 2024-03-24T12:07:18.695 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: gps base set to 2022-02-06 (week 2196) 2024-03-24T12:07:18.695 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-24T12:07:18.696 INFO:teuthology.orchestra.run.smithi172.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-24T12:07:18.696 INFO:teuthology.orchestra.run.smithi172.stderr:restrict ::: KOD does nothing without LIMITED. 2024-03-24T12:07:18.697 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: restrict ::: KOD does nothing without LIMITED. 2024-03-24T12:07:18.697 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: Listen and drop on 0 v6wildcard [::]:123 2024-03-24T12:07:18.697 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-03-24T12:07:18.697 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: Listen normally on 2 lo 127.0.0.1:123 2024-03-24T12:07:18.697 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: Listen normally on 3 enp3s0f1 172.21.15.172:123 2024-03-24T12:07:18.697 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: Listen normally on 4 lo [::1]:123 2024-03-24T12:07:18.697 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7f91%5]:123 2024-03-24T12:07:18.697 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:18 ntpd[17212]: Listening on routing socket on fd #22 for interface updates 2024-03-24T12:07:19.666 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:19 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:19.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:19 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:19.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:19 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:19.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:19 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:19.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:19 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:19.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:19 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:19.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:19 ntpd[17240]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:19.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:19 ntpd[17240]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:19.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:19 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:19.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:19 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:19.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:19 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:19.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:19 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:19.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:19 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:19.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:19 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:19.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:19 ntpd[17212]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:19.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:19 ntpd[17212]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:19.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:19 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:19.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:19 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:19.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:19 ntpd[17212]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:19.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:19 ntpd[17212]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:21.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:21 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:21.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:21 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:21.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:21 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:21.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:21 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:21.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:21 ntpd[17240]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:21.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:21 ntpd[17240]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:21.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:21.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:21.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:21.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:21.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:21.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:21 ntpd[17212]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:22.666 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:22 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:22.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:22 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:22.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:22 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:22.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:22 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:22.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:22 ntpd[17240]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:22.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:22 ntpd[17240]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:22.694 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:22 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:22.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:22 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:23.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:23 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:23.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:23 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:23.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:23 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:23.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:23 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:23.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:23 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:23.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:23 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:23.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:23 ntpd[17240]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:23.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:23 ntpd[17240]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:23.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:23 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:23.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:23 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:23.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:23 ntpd[17240]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:23.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:23 ntpd[17240]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:23.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:23.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:23.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:23.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:23.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:23.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:23.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:23.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:23.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:23.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:23.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:23.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:23.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:23.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:23.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:23.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:23.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:23.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:23 ntpd[17212]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:24.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:24 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:24.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:24 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:24.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:24 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:24.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:24 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:24.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:24 ntpd[17240]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:24.667 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:24 ntpd[17240]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:25.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:25.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:25.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:25.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:25.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:25.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:25.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:25.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:25.668 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:25.669 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:25.669 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:25.669 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:25.669 INFO:teuthology.orchestra.run.smithi170.stdout:24 Mar 12:07:25 ntpd[17240]: ntpd: time slew -0.002722 s 2024-03-24T12:07:25.669 INFO:teuthology.orchestra.run.smithi170.stdout:ntpd: time slew -0.002722s 2024-03-24T12:07:25.669 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-03-24T12:07:25.670 INFO:teuthology.orchestra.run.smithi170.stderr:24 Mar 12:07:25 ntpd[17240]: can't open /var/log/ntpstats/loopstats.20240324: Permission denied 2024-03-24T12:07:25.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:25 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:25.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:25 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:25.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:25 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:25.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:25 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:25.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:25 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:25.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:25 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:25.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:25 ntpd[17212]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-24T12:07:25.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:25 ntpd[17212]: can't open /var/log/ntpstats/rawstats.20240324: Permission denied 2024-03-24T12:07:25.695 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:25 ntpd[17212]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-24T12:07:25.695 INFO:teuthology.orchestra.run.smithi172.stdout:24 Mar 12:07:25 ntpd[17212]: ntpd: time slew +0.000068 s 2024-03-24T12:07:25.696 INFO:teuthology.orchestra.run.smithi172.stdout:ntpd: time slew +0.000068s 2024-03-24T12:07:25.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:25 ntpd[17212]: can't open /var/log/ntpstats/peerstats.20240324: Permission denied 2024-03-24T12:07:25.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:25 ntpd[17212]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-03-24T12:07:25.696 INFO:teuthology.orchestra.run.smithi172.stderr:24 Mar 12:07:25 ntpd[17212]: can't open /var/log/ntpstats/loopstats.20240324: Permission denied 2024-03-24T12:07:25.723 INFO:teuthology.orchestra.run.smithi170.stdout: remote refid st t when poll reach delay offset jitter 2024-03-24T12:07:25.723 INFO:teuthology.orchestra.run.smithi170.stdout:============================================================================== 2024-03-24T12:07:25.723 INFO:teuthology.orchestra.run.smithi170.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-24T12:07:25.723 INFO:teuthology.orchestra.run.smithi170.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-24T12:07:25.724 INFO:teuthology.orchestra.run.smithi170.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-24T12:07:25.724 INFO:teuthology.orchestra.run.smithi170.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-24T12:07:25.744 INFO:teuthology.orchestra.run.smithi172.stdout: remote refid st t when poll reach delay offset jitter 2024-03-24T12:07:25.744 INFO:teuthology.orchestra.run.smithi172.stdout:============================================================================== 2024-03-24T12:07:25.745 INFO:teuthology.orchestra.run.smithi172.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-24T12:07:25.745 INFO:teuthology.orchestra.run.smithi172.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-24T12:07:25.745 INFO:teuthology.orchestra.run.smithi172.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-24T12:07:25.745 INFO:teuthology.orchestra.run.smithi172.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-24T12:07:25.746 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-03-24T12:07:25.755 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-03-24T12:07:25.756 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:07:25.756 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/scratch_devs of=/dev/stdout 2024-03-24T12:07:25.772 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-03-24T12:07:25.773 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_1 2024-03-24T12:07:25.820 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-03-24T12:07:25.820 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-24T12:07:25.820 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 880 Links: 1 2024-03-24T12:07:25.820 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-24T12:07:25.820 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-03-24 12:04:00.498601147 +0000 2024-03-24T12:07:25.820 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-03-24 12:04:00.494601183 +0000 2024-03-24T12:07:25.821 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-03-24 12:04:00.494601183 +0000 2024-03-24T12:07:25.821 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-03-24T12:07:25.821 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-03-24T12:07:25.874 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-03-24T12:07:25.874 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-03-24T12:07:25.874 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000242901 s, 2.1 MB/s 2024-03-24T12:07:25.876 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-03-24T12:07:25.925 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_2 2024-03-24T12:07:25.972 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-03-24T12:07:25.972 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-24T12:07:25.973 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 901 Links: 1 2024-03-24T12:07:25.973 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-24T12:07:25.973 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-03-24 12:04:00.986596794 +0000 2024-03-24T12:07:25.973 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-03-24 12:04:00.982596830 +0000 2024-03-24T12:07:25.973 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-03-24 12:04:00.982596830 +0000 2024-03-24T12:07:25.973 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-03-24T12:07:25.973 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-03-24T12:07:26.027 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-03-24T12:07:26.027 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-03-24T12:07:26.027 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000309334 s, 1.7 MB/s 2024-03-24T12:07:26.028 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-03-24T12:07:26.082 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_3 2024-03-24T12:07:26.128 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-03-24T12:07:26.128 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-24T12:07:26.128 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 912 Links: 1 2024-03-24T12:07:26.128 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-24T12:07:26.128 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-03-24 12:04:01.510592119 +0000 2024-03-24T12:07:26.128 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-03-24 12:04:01.506592155 +0000 2024-03-24T12:07:26.128 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-03-24 12:04:01.506592155 +0000 2024-03-24T12:07:26.129 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-03-24T12:07:26.129 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-03-24T12:07:26.182 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-03-24T12:07:26.183 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-03-24T12:07:26.183 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000199276 s, 2.6 MB/s 2024-03-24T12:07:26.183 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-03-24T12:07:26.233 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_4 2024-03-24T12:07:26.281 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-03-24T12:07:26.281 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-24T12:07:26.281 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 928 Links: 1 2024-03-24T12:07:26.281 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-24T12:07:26.281 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-03-24 12:04:02.286585196 +0000 2024-03-24T12:07:26.281 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-03-24 12:04:02.010587658 +0000 2024-03-24T12:07:26.281 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-03-24 12:04:02.010587658 +0000 2024-03-24T12:07:26.281 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-03-24T12:07:26.281 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-03-24T12:07:26.335 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-03-24T12:07:26.335 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-03-24T12:07:26.335 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000299231 s, 1.7 MB/s 2024-03-24T12:07:26.336 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-03-24T12:07:26.385 DEBUG:teuthology.orchestra.run.smithi170:> 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-03-24T12:07:26.522 INFO:teuthology.orchestra.run.smithi170.stdout:loop 2024-03-24T12:07:26.523 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_1... 2024-03-24T12:07:26.524 DEBUG:teuthology.orchestra.run.smithi170:> 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-03-24T12:07:26.543 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-03-24T12:07:26.564 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_11 2024-03-24T12:07:26.583 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_2... 2024-03-24T12:07:26.583 DEBUG:teuthology.orchestra.run.smithi170:> 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-03-24T12:07:26.642 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-03-24T12:07:26.661 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_21 2024-03-24T12:07:26.678 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_3... 2024-03-24T12:07:26.678 DEBUG:teuthology.orchestra.run.smithi170:> 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-03-24T12:07:26.737 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-03-24T12:07:26.757 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_31 2024-03-24T12:07:26.774 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_4... 2024-03-24T12:07:26.774 DEBUG:teuthology.orchestra.run.smithi170:> 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-03-24T12:07:26.832 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-03-24T12:07:26.854 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_41 2024-03-24T12:07:26.871 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:07:26.871 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/scratch_devs of=/dev/stdout 2024-03-24T12:07:26.916 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme list 2024-03-24T12:07:26.969 INFO:teuthology.orchestra.run.smithi170.stdout:Node SN Model Namespace Usage Format FW Rev 2024-03-24T12:07:26.969 INFO:teuthology.orchestra.run.smithi170.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-03-24T12:07:26.969 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme0n1 PHMB7476002R480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-03-24T12:07:26.969 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme1n1 3cd1406c6ad0ef11b4c6 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-24T12:07:26.970 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme2n1 99ba4e190b84502d3dc9 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-24T12:07:26.970 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme3n1 e2855ce1533b9451fdd9 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-24T12:07:26.970 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/nvme4n1 232351e92a0532808ca4 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-24T12:07:26.971 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-03-24T12:07:26.971 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:07:26.971 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/scratch_devs 2024-03-24T12:07:27.022 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-03-24T12:07:27.022 DEBUG:teuthology.orchestra.run.smithi172:> dd if=/scratch_devs of=/dev/stdout 2024-03-24T12:07:27.028 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-03-24T12:07:27.028 DEBUG:teuthology.orchestra.run.smithi172:> stat /dev/vg_nvme/lv_1 2024-03-24T12:07:27.078 INFO:teuthology.orchestra.run.smithi172.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-03-24T12:07:27.078 INFO:teuthology.orchestra.run.smithi172.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-24T12:07:27.078 INFO:teuthology.orchestra.run.smithi172.stdout:Device: 5h/5d Inode: 887 Links: 1 2024-03-24T12:07:27.078 INFO:teuthology.orchestra.run.smithi172.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-24T12:07:27.078 INFO:teuthology.orchestra.run.smithi172.stdout:Access: 2024-03-24 12:03:59.493389067 +0000 2024-03-24T12:07:27.078 INFO:teuthology.orchestra.run.smithi172.stdout:Modify: 2024-03-24 12:03:59.237391353 +0000 2024-03-24T12:07:27.078 INFO:teuthology.orchestra.run.smithi172.stdout:Change: 2024-03-24 12:03:59.237391353 +0000 2024-03-24T12:07:27.078 INFO:teuthology.orchestra.run.smithi172.stdout: Birth: - 2024-03-24T12:07:27.078 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-03-24T12:07:27.132 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records in 2024-03-24T12:07:27.132 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records out 2024-03-24T12:07:27.132 INFO:teuthology.orchestra.run.smithi172.stderr:512 bytes copied, 0.000444714 s, 1.2 MB/s 2024-03-24T12:07:27.133 DEBUG:teuthology.orchestra.run.smithi172:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-03-24T12:07:27.183 DEBUG:teuthology.orchestra.run.smithi172:> stat /dev/vg_nvme/lv_2 2024-03-24T12:07:27.228 INFO:teuthology.orchestra.run.smithi172.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-03-24T12:07:27.228 INFO:teuthology.orchestra.run.smithi172.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-24T12:07:27.229 INFO:teuthology.orchestra.run.smithi172.stdout:Device: 5h/5d Inode: 906 Links: 1 2024-03-24T12:07:27.229 INFO:teuthology.orchestra.run.smithi172.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-24T12:07:27.229 INFO:teuthology.orchestra.run.smithi172.stdout:Access: 2024-03-24 12:04:00.017384386 +0000 2024-03-24T12:07:27.229 INFO:teuthology.orchestra.run.smithi172.stdout:Modify: 2024-03-24 12:03:59.753386743 +0000 2024-03-24T12:07:27.229 INFO:teuthology.orchestra.run.smithi172.stdout:Change: 2024-03-24 12:03:59.753386743 +0000 2024-03-24T12:07:27.229 INFO:teuthology.orchestra.run.smithi172.stdout: Birth: - 2024-03-24T12:07:27.229 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-03-24T12:07:27.282 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records in 2024-03-24T12:07:27.282 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records out 2024-03-24T12:07:27.282 INFO:teuthology.orchestra.run.smithi172.stderr:512 bytes copied, 0.0002856 s, 1.8 MB/s 2024-03-24T12:07:27.283 DEBUG:teuthology.orchestra.run.smithi172:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-03-24T12:07:27.330 DEBUG:teuthology.orchestra.run.smithi172:> stat /dev/vg_nvme/lv_3 2024-03-24T12:07:27.376 INFO:teuthology.orchestra.run.smithi172.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-03-24T12:07:27.376 INFO:teuthology.orchestra.run.smithi172.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-24T12:07:27.376 INFO:teuthology.orchestra.run.smithi172.stdout:Device: 5h/5d Inode: 918 Links: 1 2024-03-24T12:07:27.377 INFO:teuthology.orchestra.run.smithi172.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-24T12:07:27.377 INFO:teuthology.orchestra.run.smithi172.stdout:Access: 2024-03-24 12:04:00.485380205 +0000 2024-03-24T12:07:27.377 INFO:teuthology.orchestra.run.smithi172.stdout:Modify: 2024-03-24 12:04:00.233382456 +0000 2024-03-24T12:07:27.377 INFO:teuthology.orchestra.run.smithi172.stdout:Change: 2024-03-24 12:04:00.233382456 +0000 2024-03-24T12:07:27.377 INFO:teuthology.orchestra.run.smithi172.stdout: Birth: - 2024-03-24T12:07:27.377 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-03-24T12:07:27.429 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records in 2024-03-24T12:07:27.429 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records out 2024-03-24T12:07:27.429 INFO:teuthology.orchestra.run.smithi172.stderr:512 bytes copied, 0.000308329 s, 1.7 MB/s 2024-03-24T12:07:27.430 DEBUG:teuthology.orchestra.run.smithi172:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-03-24T12:07:27.478 DEBUG:teuthology.orchestra.run.smithi172:> stat /dev/vg_nvme/lv_4 2024-03-24T12:07:27.525 INFO:teuthology.orchestra.run.smithi172.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-03-24T12:07:27.525 INFO:teuthology.orchestra.run.smithi172.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-24T12:07:27.525 INFO:teuthology.orchestra.run.smithi172.stdout:Device: 5h/5d Inode: 938 Links: 1 2024-03-24T12:07:27.525 INFO:teuthology.orchestra.run.smithi172.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-24T12:07:27.525 INFO:teuthology.orchestra.run.smithi172.stdout:Access: 2024-03-24 12:04:00.989375704 +0000 2024-03-24T12:07:27.525 INFO:teuthology.orchestra.run.smithi172.stdout:Modify: 2024-03-24 12:04:00.721378098 +0000 2024-03-24T12:07:27.525 INFO:teuthology.orchestra.run.smithi172.stdout:Change: 2024-03-24 12:04:00.721378098 +0000 2024-03-24T12:07:27.525 INFO:teuthology.orchestra.run.smithi172.stdout: Birth: - 2024-03-24T12:07:27.526 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-03-24T12:07:27.579 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records in 2024-03-24T12:07:27.579 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records out 2024-03-24T12:07:27.579 INFO:teuthology.orchestra.run.smithi172.stderr:512 bytes copied, 0.000337943 s, 1.5 MB/s 2024-03-24T12:07:27.581 DEBUG:teuthology.orchestra.run.smithi172:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-03-24T12:07:27.630 DEBUG:teuthology.orchestra.run.smithi172:> 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-03-24T12:07:27.766 INFO:teuthology.orchestra.run.smithi172.stdout:loop 2024-03-24T12:07:27.768 INFO:tasks.nvme_loop:Connecting nvme_loop smithi172:/dev/vg_nvme/lv_1... 2024-03-24T12:07:27.768 DEBUG:teuthology.orchestra.run.smithi172:> 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-03-24T12:07:27.785 INFO:teuthology.orchestra.run.smithi172.stdout:1 2024-03-24T12:07:27.804 INFO:teuthology.orchestra.run.smithi172.stdout:/dev/vg_nvme/lv_11 2024-03-24T12:07:27.821 INFO:tasks.nvme_loop:Connecting nvme_loop smithi172:/dev/vg_nvme/lv_2... 2024-03-24T12:07:27.821 DEBUG:teuthology.orchestra.run.smithi172:> 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-03-24T12:07:27.885 INFO:teuthology.orchestra.run.smithi172.stdout:1 2024-03-24T12:07:27.906 INFO:teuthology.orchestra.run.smithi172.stdout:/dev/vg_nvme/lv_21 2024-03-24T12:07:27.923 INFO:tasks.nvme_loop:Connecting nvme_loop smithi172:/dev/vg_nvme/lv_3... 2024-03-24T12:07:27.923 DEBUG:teuthology.orchestra.run.smithi172:> 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-03-24T12:07:27.980 INFO:teuthology.orchestra.run.smithi172.stdout:1 2024-03-24T12:07:27.999 INFO:teuthology.orchestra.run.smithi172.stdout:/dev/vg_nvme/lv_31 2024-03-24T12:07:28.016 INFO:tasks.nvme_loop:Connecting nvme_loop smithi172:/dev/vg_nvme/lv_4... 2024-03-24T12:07:28.016 DEBUG:teuthology.orchestra.run.smithi172:> 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-03-24T12:07:28.072 INFO:teuthology.orchestra.run.smithi172.stdout:1 2024-03-24T12:07:28.090 INFO:teuthology.orchestra.run.smithi172.stdout:/dev/vg_nvme/lv_41 2024-03-24T12:07:28.107 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-03-24T12:07:28.107 DEBUG:teuthology.orchestra.run.smithi172:> dd if=/scratch_devs of=/dev/stdout 2024-03-24T12:07:28.157 DEBUG:teuthology.orchestra.run.smithi172:> sudo nvme list 2024-03-24T12:07:28.210 INFO:teuthology.orchestra.run.smithi172.stdout:Node SN Model Namespace Usage Format FW Rev 2024-03-24T12:07:28.210 INFO:teuthology.orchestra.run.smithi172.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-03-24T12:07:28.210 INFO:teuthology.orchestra.run.smithi172.stdout:/dev/nvme0n1 CVFT6233005M400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-03-24T12:07:28.210 INFO:teuthology.orchestra.run.smithi172.stdout:/dev/nvme1n1 69df2a544f7f1f8e1480 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-24T12:07:28.210 INFO:teuthology.orchestra.run.smithi172.stdout:/dev/nvme2n1 c168202c83c0fdc1ecf6 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-24T12:07:28.210 INFO:teuthology.orchestra.run.smithi172.stdout:/dev/nvme3n1 8b5ac07049d950bba3b5 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-24T12:07:28.210 INFO:teuthology.orchestra.run.smithi172.stdout:/dev/nvme4n1 5d07f53583aa4c95afcb Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-24T12:07:28.211 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-03-24T12:07:28.211 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-03-24T12:07:28.211 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/scratch_devs 2024-03-24T12:07:28.264 INFO:teuthology.run_tasks:Running task cephadm... 2024-03-24T12:07:28.350 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'sha1': 'db0330b1e4e2470d52b750e251e55a522b4f7d69'} 2024-03-24T12:07:28.350 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 2024-03-24T12:07:28.350 INFO:tasks.cephadm:Cluster fsid is 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:07:28.350 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-03-24T12:07:28.351 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-03-24T12:07:28.351 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi170': '172.21.15.170', 'mon.smithi172': '172.21.15.172'} 2024-03-24T12:07:28.351 INFO:tasks.cephadm:Normalizing hostnames... 2024-03-24T12:07:28.351 DEBUG:teuthology.orchestra.run.smithi170:> sudo hostname $(hostname -s) 2024-03-24T12:07:28.366 DEBUG:teuthology.orchestra.run.smithi172:> sudo hostname $(hostname -s) 2024-03-24T12:07:28.382 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-03-24T12:07:28.382 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=db0330b1e4e2470d52b750e251e55a522b4f7d69 2024-03-24T12:07:28.526 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'db0330b1e4e2470d52b750e251e55a522b4f7d69', '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/77704/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-1667-gdb0330b1', '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-1667-gdb0330b1-1jammy'}, 'url': 'https://3.chacra.ceph.com/r/ceph/squid/db0330b1e4e2470d52b750e251e55a522b4f7d69/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-03-16 11:54:00.660610', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/squid/db0330b1e4e2470d52b750e251e55a522b4f7d69/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-03-24T12:07:28.881 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref squid, sha1 db0330b1e4e2470d52b750e251e55a522b4f7d69 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=db0330b1e4e2470d52b750e251e55a522b4f7d69 2024-03-24T12:07:28.883 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/squid/db0330b1e4e2470d52b750e251e55a522b4f7d69/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-03-24T12:07:28.883 DEBUG:teuthology.orchestra.run.smithi170:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/db0330b1e4e2470d52b750e251e55a522b4f7d69/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-03-24T12:07:30.014 INFO:teuthology.orchestra.run.smithi170.stdout:-rw-rw-r-- 1 ubuntu ubuntu 774072 Mar 24 12:07 /home/ubuntu/cephtest/cephadm 2024-03-24T12:07:30.015 DEBUG:teuthology.orchestra.run.smithi172:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/db0330b1e4e2470d52b750e251e55a522b4f7d69/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-03-24T12:07:30.587 INFO:teuthology.orchestra.run.smithi172.stdout:-rw-rw-r-- 1 ubuntu ubuntu 774072 Mar 24 12:07 /home/ubuntu/cephtest/cephadm 2024-03-24T12:07:30.588 DEBUG:teuthology.orchestra.run.smithi170:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-03-24T12:07:30.595 DEBUG:teuthology.orchestra.run.smithi172:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-03-24T12:07:30.611 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 on all hosts... 2024-03-24T12:07:30.612 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 pull 2024-03-24T12:07:30.639 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 pull 2024-03-24T12:07:30.802 INFO:teuthology.orchestra.run.smithi170.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69... 2024-03-24T12:07:30.805 INFO:teuthology.orchestra.run.smithi172.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69... 2024-03-24T12:08:39.183 INFO:teuthology.orchestra.run.smithi172.stdout:{ 2024-03-24T12:08:39.184 INFO:teuthology.orchestra.run.smithi172.stdout: "ceph_version": "ceph version 19.0.0-1667-gdb0330b1 (db0330b1e4e2470d52b750e251e55a522b4f7d69) squid (dev)", 2024-03-24T12:08:39.184 INFO:teuthology.orchestra.run.smithi172.stdout: "image_id": "4f325f8440e9c0f506d7739caefa90a7992ee8ebee3932602ec2cb63e901d08d", 2024-03-24T12:08:39.184 INFO:teuthology.orchestra.run.smithi172.stdout: "repo_digests": [ 2024-03-24T12:08:39.184 INFO:teuthology.orchestra.run.smithi172.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:f3031fd9fa3ec502ba783e14433a4d3ebf8f66e5c31d12a3a8cd7e489d3d4d10" 2024-03-24T12:08:39.184 INFO:teuthology.orchestra.run.smithi172.stdout: ] 2024-03-24T12:08:39.184 INFO:teuthology.orchestra.run.smithi172.stdout:} 2024-03-24T12:08:42.329 INFO:teuthology.orchestra.run.smithi170.stdout:{ 2024-03-24T12:08:42.329 INFO:teuthology.orchestra.run.smithi170.stdout: "ceph_version": "ceph version 19.0.0-1667-gdb0330b1 (db0330b1e4e2470d52b750e251e55a522b4f7d69) squid (dev)", 2024-03-24T12:08:42.329 INFO:teuthology.orchestra.run.smithi170.stdout: "image_id": "4f325f8440e9c0f506d7739caefa90a7992ee8ebee3932602ec2cb63e901d08d", 2024-03-24T12:08:42.329 INFO:teuthology.orchestra.run.smithi170.stdout: "repo_digests": [ 2024-03-24T12:08:42.329 INFO:teuthology.orchestra.run.smithi170.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:f3031fd9fa3ec502ba783e14433a4d3ebf8f66e5c31d12a3a8cd7e489d3d4d10" 2024-03-24T12:08:42.329 INFO:teuthology.orchestra.run.smithi170.stdout: ] 2024-03-24T12:08:42.329 INFO:teuthology.orchestra.run.smithi170.stdout:} 2024-03-24T12:08:42.376 DEBUG:teuthology.orchestra.run.smithi170:> sudo mkdir -p /etc/ceph 2024-03-24T12:08:42.390 DEBUG:teuthology.orchestra.run.smithi172:> sudo mkdir -p /etc/ceph 2024-03-24T12:08:42.405 DEBUG:teuthology.orchestra.run.smithi170:> sudo chmod 777 /etc/ceph 2024-03-24T12:08:42.445 DEBUG:teuthology.orchestra.run.smithi172:> sudo chmod 777 /etc/ceph 2024-03-24T12:08:42.458 INFO:tasks.cephadm:Writing seed config... 2024-03-24T12:08:42.459 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-03-24T12:08:42.460 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-03-24T12:08:42.460 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-03-24T12:08:42.460 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-03-24T12:08:42.460 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-03-24T12:08:42.460 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-03-24T12:08:42.460 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-03-24T12:08:42.460 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-03-24T12:08:42.461 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:08:42.461 DEBUG:teuthology.orchestra.run.smithi170:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-03-24T12:08:42.494 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 = 158785cc-e9d7-11ee-95cd-87774f69a715 [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-03-24T12:08:42.494 DEBUG:teuthology.orchestra.run.smithi170:mon.smithi170> sudo journalctl -f -n 0 -u ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mon.smithi170.service 2024-03-24T12:08:42.539 INFO:tasks.cephadm:Bootstrapping... 2024-03-24T12:08:42.539 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 -v bootstrap --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 --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.170 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-03-24T12:08:42.742 INFO:teuthology.orchestra.run.smithi170.stdout:-------------------------------------------------------------------------------- 2024-03-24T12:08:42.742 INFO:teuthology.orchestra.run.smithi170.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69', '-v', 'bootstrap', '--fsid', '158785cc-e9d7-11ee-95cd-87774f69a715', '--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.170', '--skip-admin-label'] 2024-03-24T12:08:42.742 INFO:teuthology.orchestra.run.smithi170.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-03-24T12:08:42.743 INFO:teuthology.orchestra.run.smithi170.stdout:Verifying podman|docker is present... 2024-03-24T12:08:42.743 INFO:teuthology.orchestra.run.smithi170.stdout:Verifying lvm2 is present... 2024-03-24T12:08:42.743 INFO:teuthology.orchestra.run.smithi170.stdout:Verifying time synchronization is in place... 2024-03-24T12:08:42.749 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-03-24T12:08:42.749 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-03-24T12:08:42.755 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-03-24T12:08:42.755 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout inactive 2024-03-24T12:08:42.760 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-03-24T12:08:42.760 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-03-24T12:08:42.764 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-03-24T12:08:42.764 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout inactive 2024-03-24T12:08:42.767 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-03-24T12:08:42.767 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout masked 2024-03-24T12:08:42.771 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-03-24T12:08:42.771 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout inactive 2024-03-24T12:08:42.774 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-03-24T12:08:42.775 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-03-24T12:08:42.778 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-03-24T12:08:42.778 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout inactive 2024-03-24T12:08:42.782 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout enabled 2024-03-24T12:08:42.786 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout active 2024-03-24T12:08:42.786 INFO:teuthology.orchestra.run.smithi170.stdout:Unit ntp.service is enabled and running 2024-03-24T12:08:42.786 INFO:teuthology.orchestra.run.smithi170.stdout:Repeating the final host check... 2024-03-24T12:08:42.786 INFO:teuthology.orchestra.run.smithi170.stdout:docker (/usr/bin/docker) is present 2024-03-24T12:08:42.786 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl is present 2024-03-24T12:08:42.786 INFO:teuthology.orchestra.run.smithi170.stdout:lvcreate is present 2024-03-24T12:08:42.789 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-03-24T12:08:42.789 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-03-24T12:08:42.792 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-03-24T12:08:42.793 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout inactive 2024-03-24T12:08:42.796 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-03-24T12:08:42.796 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-03-24T12:08:42.799 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-03-24T12:08:42.799 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout inactive 2024-03-24T12:08:42.803 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-03-24T12:08:42.803 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout masked 2024-03-24T12:08:42.806 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-03-24T12:08:42.806 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout inactive 2024-03-24T12:08:42.809 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-03-24T12:08:42.809 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-03-24T12:08:42.813 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-03-24T12:08:42.813 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout inactive 2024-03-24T12:08:42.816 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout enabled 2024-03-24T12:08:42.820 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stdout active 2024-03-24T12:08:42.821 INFO:teuthology.orchestra.run.smithi170.stdout:Unit ntp.service is enabled and running 2024-03-24T12:08:42.821 INFO:teuthology.orchestra.run.smithi170.stdout:Host looks OK 2024-03-24T12:08:42.821 INFO:teuthology.orchestra.run.smithi170.stdout:Cluster fsid: 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:08:42.821 INFO:teuthology.orchestra.run.smithi170.stdout:Acquiring lock 139954890126864 on /run/cephadm/158785cc-e9d7-11ee-95cd-87774f69a715.lock 2024-03-24T12:08:42.821 INFO:teuthology.orchestra.run.smithi170.stdout:Lock 139954890126864 acquired on /run/cephadm/158785cc-e9d7-11ee-95cd-87774f69a715.lock 2024-03-24T12:08:42.821 INFO:teuthology.orchestra.run.smithi170.stdout:Verifying IP 172.21.15.170 port 3300 ... 2024-03-24T12:08:42.821 INFO:teuthology.orchestra.run.smithi170.stdout:Verifying IP 172.21.15.170 port 6789 ... 2024-03-24T12:08:42.821 INFO:teuthology.orchestra.run.smithi170.stdout:Base mon IP(s) is [172.21.15.170:3300, 172.21.15.170:6789], mon addrv is [v2:172.21.15.170:3300,v1:172.21.15.170:6789] 2024-03-24T12:08:42.824 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 2024-03-24T12:08:42.824 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.170 metric 100 2024-03-24T12:08:42.824 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout 158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.170 metric 100 2024-03-24T12:08:42.824 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-03-24T12:08:42.824 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.170 metric 100 2024-03-24T12:08:42.824 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout 172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.170 metric 100 2024-03-24T12:08:42.824 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout 172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.170 metric 100 2024-03-24T12:08:42.824 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.170 metric 100 2024-03-24T12:08:42.826 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-03-24T12:08:42.826 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-03-24T12:08:42.826 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 expires 1799sec pref medium 2024-03-24T12:08:42.828 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-03-24T12:08:42.828 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-03-24T12:08:42.828 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-03-24T12:08:42.828 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-03-24T12:08:42.828 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:fe88:7255/64 scope link 2024-03-24T12:08:42.828 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-03-24T12:08:42.829 INFO:teuthology.orchestra.run.smithi170.stdout:Mon IP `172.21.15.170` is in CIDR network `172.21.0.0/20` 2024-03-24T12:08:42.830 INFO:teuthology.orchestra.run.smithi170.stdout:Mon IP `172.21.15.170` is in CIDR network `172.21.0.0/20` 2024-03-24T12:08:42.830 INFO:teuthology.orchestra.run.smithi170.stdout:Mon IP `172.21.15.170` is in CIDR network `172.21.0.1/32` 2024-03-24T12:08:42.830 INFO:teuthology.orchestra.run.smithi170.stdout:Mon IP `172.21.15.170` is in CIDR network `172.21.0.1/32` 2024-03-24T12:08:42.830 INFO:teuthology.orchestra.run.smithi170.stdout:Mon IP `172.21.15.170` is in CIDR network `172.21.0.2/32` 2024-03-24T12:08:42.830 INFO:teuthology.orchestra.run.smithi170.stdout:Mon IP `172.21.15.170` is in CIDR network `172.21.0.2/32` 2024-03-24T12:08:42.830 INFO:teuthology.orchestra.run.smithi170.stdout:Mon IP `172.21.15.170` is in CIDR network `172.21.15.254/32` 2024-03-24T12:08:42.830 INFO:teuthology.orchestra.run.smithi170.stdout:Mon IP `172.21.15.170` is in CIDR network `172.21.15.254/32` 2024-03-24T12:08:42.830 INFO:teuthology.orchestra.run.smithi170.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20', '172.21.0.1/32', '172.21.0.1/32', '172.21.0.2/32', '172.21.0.2/32', '172.21.15.254/32', '172.21.15.254/32'] 2024-03-24T12:08:42.830 INFO:teuthology.orchestra.run.smithi170.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-03-24T12:08:42.830 INFO:teuthology.orchestra.run.smithi170.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69... 2024-03-24T12:08:43.086 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/docker: stdout db0330b1e4e2470d52b750e251e55a522b4f7d69: Pulling from ceph-ci/ceph 2024-03-24T12:08:43.086 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/docker: stdout Digest: sha256:f3031fd9fa3ec502ba783e14433a4d3ebf8f66e5c31d12a3a8cd7e489d3d4d10 2024-03-24T12:08:43.086 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 2024-03-24T12:08:43.086 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 2024-03-24T12:08:44.560 INFO:teuthology.orchestra.run.smithi170.stdout:ceph: stdout ceph version 19.0.0-1667-gdb0330b1 (db0330b1e4e2470d52b750e251e55a522b4f7d69) squid (dev) 2024-03-24T12:08:44.560 INFO:teuthology.orchestra.run.smithi170.stdout:Ceph version: ceph version 19.0.0-1667-gdb0330b1 (db0330b1e4e2470d52b750e251e55a522b4f7d69) squid (dev) 2024-03-24T12:08:44.560 INFO:teuthology.orchestra.run.smithi170.stdout:Extracting ceph user uid/gid from container image... 2024-03-24T12:08:45.789 INFO:teuthology.orchestra.run.smithi170.stdout:stat: stdout 167 167 2024-03-24T12:08:45.790 INFO:teuthology.orchestra.run.smithi170.stdout:Creating initial keys... 2024-03-24T12:08:47.009 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-authtool: stdout AQDOFwBmKhu3GRAAeOLfJSzYW9jHIqnG4uQeZw== 2024-03-24T12:08:48.214 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-authtool: stdout AQDPFwBmMqiuKRAAxDnp73N5uF4jR7/IupeGSQ== 2024-03-24T12:08:49.412 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-authtool: stdout AQDQFwBmijQpNRAAZ3gGxW8KLu1VDbWPZTc8lw== 2024-03-24T12:08:49.412 INFO:teuthology.orchestra.run.smithi170.stdout:Creating initial monmap... 2024-03-24T12:08:50.666 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-03-24T12:08:50.666 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-03-24T12:08:50.667 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:08:50.667 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-03-24T12:08:50.667 INFO:teuthology.orchestra.run.smithi170.stdout:monmaptool for smithi170 [v2:172.21.15.170:3300,v1:172.21.15.170:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-03-24T12:08:50.667 INFO:teuthology.orchestra.run.smithi170.stdout:setting min_mon_release = quincy 2024-03-24T12:08:50.667 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/monmaptool: set fsid to 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:08:50.667 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-03-24T12:08:50.667 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:08:50.667 INFO:teuthology.orchestra.run.smithi170.stdout:Creating mon... 2024-03-24T12:08:52.057 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 0 set uid:gid to 167:167 (ceph:ceph) 2024-03-24T12:08:52.058 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 1 imported monmap: 2024-03-24T12:08:52.058 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-03-24T12:08:52.058 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr fsid 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:08:52.058 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-03-24T12:08:50.117688+0000 2024-03-24T12:08:52.058 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr created 2024-03-24T12:08:50.117688+0000 2024-03-24T12:08:52.058 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-03-24T12:08:52.058 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-03-24T12:08:52.058 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0] mon.smithi170 2024-03-24T12:08:52.058 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.058 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 0 /usr/bin/ceph-mon: set fsid to 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:08:52.058 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: RocksDB version: 7.9.2 2024-03-24T12:08:52.058 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Git sha 0 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Compile date 2024-03-16 10:36:11 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: DB SUMMARY 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: DB Session ID: S313F0MQRA0VXHFHQE34 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi170/store.db dir, Total Num: 0, files: 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi170/store.db: 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.error_if_exists: 0 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.create_if_missing: 1 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.paranoid_checks: 1 2024-03-24T12:08:52.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.env: 0x563d1f9b0ae0 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.fs: PosixFileSystem 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.info_log: 0x563d204d2a20 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_file_opening_threads: 16 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.statistics: (nil) 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.use_fsync: 0 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_log_file_size: 0 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.keep_log_file_num: 1000 2024-03-24T12:08:52.060 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.recycle_log_file_num: 0 2024-03-24T12:08:52.061 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.allow_fallocate: 1 2024-03-24T12:08:52.061 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.allow_mmap_reads: 0 2024-03-24T12:08:52.061 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.allow_mmap_writes: 0 2024-03-24T12:08:52.061 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.use_direct_reads: 0 2024-03-24T12:08:52.061 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-03-24T12:08:52.061 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.create_missing_column_families: 0 2024-03-24T12:08:52.061 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.db_log_dir: 2024-03-24T12:08:52.062 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.wal_dir: 2024-03-24T12:08:52.062 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-03-24T12:08:52.062 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-03-24T12:08:52.062 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-03-24T12:08:52.062 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-03-24T12:08:52.062 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-03-24T12:08:52.062 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-03-24T12:08:52.062 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.advise_random_on_open: 1 2024-03-24T12:08:52.062 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.db_write_buffer_size: 0 2024-03-24T12:08:52.062 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.write_buffer_manager: 0x563d204a7360 2024-03-24T12:08:52.062 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-03-24T12:08:52.062 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.rate_limiter: (nil) 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.wal_recovery_mode: 2 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.enable_thread_tracking: 0 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.enable_pipelined_write: 0 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.unordered_write: 0 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.row_cache: None 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.wal_filter: None 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-03-24T12:08:52.063 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.allow_ingest_behind: 0 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.two_write_queues: 0 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.manual_wal_flush: 0 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.wal_compression: 0 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.atomic_flush: 0 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.log_readahead_size: 0 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.best_efforts_recovery: 0 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.allow_data_in_errors: 0 2024-03-24T12:08:52.064 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.db_host_id: __hostname__ 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_background_jobs: 2 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_background_compactions: -1 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_subcompactions: 1 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_total_wal_size: 0 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-03-24T12:08:52.065 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_open_files: -1 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bytes_per_sync: 0 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_readahead_size: 0 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_background_flushes: -1 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Compression algorithms supported: 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: kZSTD supported: 0 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: kXpressCompression supported: 0 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: kLZ4HCCompression supported: 1 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: kZlibCompression supported: 1 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: kSnappyCompression supported: 1 2024-03-24T12:08:52.066 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: kLZ4Compression supported: 1 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: kBZip2Compression supported: 0 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi170/store.db/MANIFEST-000001 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.merge_operator: 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_filter: None 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_filter_factory: None 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.sst_partitioner_factory: None 2024-03-24T12:08:52.067 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x563d204d2b20) 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-03-24T12:08:52.068 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x563d204d7090 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-03-24T12:08:52.069 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.070 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.write_buffer_size: 33554432 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_write_buffer_number: 2 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compression: NoCompression 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bottommost_compression: Disabled 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.prefix_extractor: nullptr 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.num_levels: 7 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-03-24T12:08:52.071 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compression_opts.level: 32767 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compression_opts.strategy: 0 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compression_opts.enabled: false 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-03-24T12:08:52.072 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.target_file_size_base: 67108864 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-03-24T12:08:52.073 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.arena_block_size: 1048576 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.disable_auto_compactions: 0 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-03-24T12:08:52.074 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.table_properties_collectors: 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.inplace_update_support: 0 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.bloom_locality: 0 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.max_successive_merges: 0 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.paranoid_file_checks: 0 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.force_consistency_checks: 1 2024-03-24T12:08:52.075 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.report_bg_io_stats: 0 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.ttl: 2592000 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.enable_blob_files: false 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.min_blob_size: 0 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.blob_file_size: 268435456 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.blob_file_starting_level: 0 2024-03-24T12:08:52.076 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi170/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-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 91aece82-ce84-43d4-8bd6-3caccefa9836 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.416+0000 7fe76e7bac80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.420+0000 7fe76e7bac80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x563d205a2000 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.420+0000 7fe76e7bac80 4 rocksdb: DB pointer 0x563d20592000 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.420+0000 7fe75e932700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.420+0000 7fe75e932700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-03-24T12:08:52.077 INFO:teuthology.orchestra.run.smithi170.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-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.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-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.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-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.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-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.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-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.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-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.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-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.078 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.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-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.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-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.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-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.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-03-24T12:08:52.079 INFO:teuthology.orchestra.run.smithi170.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-03-24T12:08:52.080 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x563d204d7090#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-03-24T12:08:52.080 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-03-24T12:08:52.080 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.080 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-03-24T12:08:52.080 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr 2024-03-24T12:08:52.080 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.420+0000 7fe76e7bac80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-03-24T12:08:52.080 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.420+0000 7fe76e7bac80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-03-24T12:08:52.080 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph-mon: stderr debug 2024-03-24T12:08:51.420+0000 7fe76e7bac80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi170 for mon.smithi170 2024-03-24T12:08:52.080 INFO:teuthology.orchestra.run.smithi170.stdout:create mon.smithi170 on 2024-03-24T12:08:52.490 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-03-24T12:08:52.725 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-158785cc-e9d7-11ee-95cd-87774f69a715.target -> /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715.target. 2024-03-24T12:08:52.725 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-158785cc-e9d7-11ee-95cd-87774f69a715.target -> /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715.target. 2024-03-24T12:08:53.024 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mon.smithi170 2024-03-24T12:08:53.025 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Failed to reset failed state of unit ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mon.smithi170.service: Unit ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mon.smithi170.service not loaded. 2024-03-24T12:08:53.239 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715.target.wants/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mon.smithi170.service -> /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.service. 2024-03-24T12:08:53.249 INFO:teuthology.orchestra.run.smithi170.stdout:firewalld does not appear to be present 2024-03-24T12:08:53.249 INFO:teuthology.orchestra.run.smithi170.stdout:Not possible to enable service . firewalld.service is not available 2024-03-24T12:08:53.250 INFO:teuthology.orchestra.run.smithi170.stdout:Waiting for mon to start... 2024-03-24T12:08:53.250 INFO:teuthology.orchestra.run.smithi170.stdout:Waiting for mon... 2024-03-24T12:08:54.660 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:54 smithi170 bash[18247]: cluster 2024-03-24T12:08:54.480167+0000 mon.smithi170 (mon.0) 1 : cluster 1 mon.smithi170 is new leader, mons smithi170 in quorum (ranks 0) 2024-03-24T12:08:55.258 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout cluster: 2024-03-24T12:08:55.258 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout id: 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:08:55.259 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-03-24T12:08:55.259 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:08:55.259 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout services: 2024-03-24T12:08:55.259 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi170 (age 0.165564s) 2024-03-24T12:08:55.259 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-03-24T12:08:55.259 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-03-24T12:08:55.259 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:08:55.259 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout data: 2024-03-24T12:08:55.259 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-03-24T12:08:55.259 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-03-24T12:08:55.259 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-03-24T12:08:55.259 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout pgs: 2024-03-24T12:08:55.260 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:08:55.260 INFO:teuthology.orchestra.run.smithi170.stdout:mon is available 2024-03-24T12:08:55.260 INFO:teuthology.orchestra.run.smithi170.stdout:Assimilating anything we can from ceph.conf... 2024-03-24T12:08:55.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:55 smithi170 bash[18247]: cluster 2024-03-24T12:08:54.483806+0000 mon.smithi170 (mon.0) 2 : cluster 1 mon.smithi170 is new leader, mons smithi170 in quorum (ranks 0) 2024-03-24T12:08:55.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:55 smithi170 bash[18247]: cluster 2024-03-24T12:08:54.483955+0000 mon.smithi170 (mon.0) 3 : cluster 0 monmap e1: 1 mons at {smithi170=[v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-03-24T12:08:55.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:55 smithi170 bash[18247]: cluster 2024-03-24T12:08:54.485903+0000 mon.smithi170 (mon.0) 4 : cluster 0 fsmap 2024-03-24T12:08:55.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:55 smithi170 bash[18247]: cluster 2024-03-24T12:08:54.488051+0000 mon.smithi170 (mon.0) 5 : cluster 0 osdmap e1: 0 total, 0 up, 0 in 2024-03-24T12:08:55.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:55 smithi170 bash[18247]: cluster 2024-03-24T12:08:54.488486+0000 mon.smithi170 (mon.0) 6 : cluster 0 mgrmap e1: no daemons active 2024-03-24T12:08:55.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:55 smithi170 bash[18247]: audit 2024-03-24T12:08:54.649308+0000 mon.smithi170 (mon.0) 7 : audit 0 from='client.? 172.21.15.170:0/1046303195' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-03-24T12:08:56.763 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout [global] 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout fsid = 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.170:3300,v1:172.21.15.170:6789] 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout [mgr] 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout [osd] 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-03-24T12:08:56.764 INFO:teuthology.orchestra.run.smithi170.stdout:Generating new minimal ceph.conf... 2024-03-24T12:08:56.784 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:56 smithi170 bash[18247]: audit 2024-03-24T12:08:56.186692+0000 mon.smithi170 (mon.0) 8 : audit 1 from='client.? 172.21.15.170:0/4004826638' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-03-24T12:08:56.784 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:56 smithi170 bash[18247]: audit 2024-03-24T12:08:56.191434+0000 mon.smithi170 (mon.0) 9 : audit 1 from='client.? 172.21.15.170:0/4004826638' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-03-24T12:08:58.209 INFO:teuthology.orchestra.run.smithi170.stdout:Restarting the monitor... 2024-03-24T12:08:58.215 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:57 smithi170 bash[18247]: audit 2024-03-24T12:08:57.713991+0000 mon.smithi170 (mon.0) 10 : audit 0 from='client.? 172.21.15.170:0/2569995392' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:08:58.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:58 smithi170 systemd[1]: Stopping Ceph mon.smithi170 for 158785cc-e9d7-11ee-95cd-87774f69a715... 2024-03-24T12:08:58.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:58 smithi170 bash[18247]: debug 2024-03-24T12:08:58.348+0000 7fee5210a700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi170 -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-03-24T12:08:58.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:58 smithi170 bash[18247]: debug 2024-03-24T12:08:58.348+0000 7fee5210a700 -1 mon.smithi170@0(leader) e1 *** Got Signal Terminated *** 2024-03-24T12:08:59.143 INFO:teuthology.orchestra.run.smithi170.stdout:Setting public_network to 172.21.15.254/32,172.21.0.2/32,172.21.0.0/20,172.21.0.1/32 in mon config section 2024-03-24T12:08:59.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:58 smithi170 bash[18637]: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-mon-smithi170 2024-03-24T12:08:59.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:59 smithi170 bash[18698]: Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-mon-smithi170 2024-03-24T12:08:59.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:59 smithi170 systemd[1]: ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mon.smithi170.service: Deactivated successfully. 2024-03-24T12:08:59.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:59 smithi170 systemd[1]: Stopped Ceph mon.smithi170 for 158785cc-e9d7-11ee-95cd-87774f69a715. 2024-03-24T12:08:59.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:08:59 smithi170 systemd[1]: Started Ceph mon.smithi170 for 158785cc-e9d7-11ee-95cd-87774f69a715. 2024-03-24T12:09:00.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.192+0000 7f1127e1cc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-03-24T12:09:00.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.192+0000 7f1127e1cc80 0 ceph version 19.0.0-1667-gdb0330b1 (db0330b1e4e2470d52b750e251e55a522b4f7d69) squid (dev), process ceph-mon, pid 7 2024-03-24T12:09:00.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.192+0000 7f1127e1cc80 0 pidfile_write: ignore empty --pid-file 2024-03-24T12:09:00.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 0 load: jerasure load: lrc 2024-03-24T12:09:00.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: RocksDB version: 7.9.2 2024-03-24T12:09:00.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Git sha 0 2024-03-24T12:09:00.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Compile date 2024-03-16 10:36:11 2024-03-24T12:09:00.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: DB SUMMARY 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: DB Session ID: GQ13ACVF6LOZZIXT2SDD 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: CURRENT file: CURRENT 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: IDENTITY file: IDENTITY 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi170/store.db dir, Total Num: 1, files: 000008.sst 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi170/store.db: 000009.log size: 84725 ; 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.error_if_exists: 0 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.create_if_missing: 0 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.paranoid_checks: 1 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.env: 0x5651079faae0 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.fs: PosixFileSystem 2024-03-24T12:09:00.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.info_log: 0x56510853b7a0 2024-03-24T12:09:00.475 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-03-24T12:09:00.475 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.statistics: (nil) 2024-03-24T12:09:00.475 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.use_fsync: 0 2024-03-24T12:09:00.475 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_log_file_size: 0 2024-03-24T12:09:00.476 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-03-24T12:09:00.476 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-03-24T12:09:00.476 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-03-24T12:09:00.476 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-03-24T12:09:00.476 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.allow_fallocate: 1 2024-03-24T12:09:00.476 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-03-24T12:09:00.476 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-03-24T12:09:00.476 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.use_direct_reads: 0 2024-03-24T12:09:00.476 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-03-24T12:09:00.476 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.create_missing_column_families: 0 2024-03-24T12:09:00.476 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.db_log_dir: 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.wal_dir: 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.advise_random_on_open: 1 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.write_buffer_manager: 0x56510850f400 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-03-24T12:09:00.477 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.rate_limiter: (nil) 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.unordered_write: 0 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.row_cache: None 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.wal_filter: None 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-03-24T12:09:00.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.two_write_queues: 0 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.manual_wal_flush: 0 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.wal_compression: 0 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.atomic_flush: 0 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.log_readahead_size: 0 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_background_jobs: 2 2024-03-24T12:09:00.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_background_compactions: -1 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_subcompactions: 1 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_total_wal_size: 0 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_open_files: -1 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bytes_per_sync: 0 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-03-24T12:09:00.480 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_background_flushes: -1 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Compression algorithms supported: 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: kZSTD supported: 0 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: kXpressCompression supported: 0 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: kZlibCompression supported: 1 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: kSnappyCompression supported: 1 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: kLZ4Compression supported: 1 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: kBZip2Compression supported: 0 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-03-24T12:09:00.481 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi170/store.db/MANIFEST-000010 2024-03-24T12:09:00.482 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.merge_operator: 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_filter: None 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_filter_factory: None 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x56510853b8c0) 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: cache_index_and_filter_blocks: 1 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: cache_index_and_filter_blocks_with_high_priority: 0 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: pin_top_level_index_and_filter: 1 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: index_type: 0 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: data_block_index_type: 0 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: index_shortening: 1 2024-03-24T12:09:00.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: data_block_hash_table_util_ratio: 0.750000 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: checksum: 4 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: no_block_cache: 0 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: block_cache: 0x56510853d090 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: block_cache_name: BinnedLRUCache 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: block_cache_options: 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: capacity : 536870912 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: num_shard_bits : 4 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: strict_capacity_limit : 0 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: high_pri_pool_ratio: 0.000 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: block_cache_compressed: (nil) 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: persistent_cache: (nil) 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: block_size: 4096 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: block_size_deviation: 10 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: block_restart_interval: 16 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: index_block_restart_interval: 1 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: metadata_block_size: 4096 2024-03-24T12:09:00.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: partition_filters: 0 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: use_delta_encoding: 1 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: filter_policy: bloomfilter 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: whole_key_filtering: 1 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: verify_compression: 0 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: read_amp_bytes_per_bit: 0 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: format_version: 5 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: enable_index_compression: 1 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: block_align: 0 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: max_auto_readahead_size: 262144 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: prepopulate_block_cache: 0 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: initial_auto_readahead_size: 8192 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: num_file_reads_for_auto_readahead: 2 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compression: NoCompression 2024-03-24T12:09:00.485 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.num_levels: 7 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-03-24T12:09:00.486 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compression_opts.level: 32767 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compression_opts.enabled: false 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-03-24T12:09:00.487 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.arena_block_size: 1048576 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-03-24T12:09:00.488 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.table_properties_collectors: 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.inplace_update_support: 0 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-03-24T12:09:00.489 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.bloom_locality: 0 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.max_successive_merges: 0 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.force_consistency_checks: 1 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.ttl: 2592000 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.enable_blob_files: false 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.min_blob_size: 0 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.blob_file_size: 268435456 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-03-24T12:09:00.490 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi170/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-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 91aece82-ce84-43d4-8bd6-3caccefa9836 2024-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1711282140206002, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1711282140206991, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 81459, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 250, "table_properties": {"data_size": 79646, "index_size": 223, "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": 9884, "raw_average_key_size": 47, "raw_value_size": 73979, "raw_average_value_size": 353, "num_data_blocks": 10, "num_entries": 209, "num_filter_entries": 209, "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": "[]", "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": 1711282140, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "91aece82-ce84-43d4-8bd6-3caccefa9836", "db_session_id": "GQ13ACVF6LOZZIXT2SDD", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1711282140207089, "job": 1, "event": "recovery_finished"} 2024-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.200+0000 7f1127e1cc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-03-24T12:09:00.491 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f1127e1cc80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi170/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f1127e1cc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x565108630000 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f1127e1cc80 4 rocksdb: DB pointer 0x56510861c000 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f111658c700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f111658c700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: ** DB Stats ** 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Uptime(secs): 0.0 total, 0.0 interval 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: ** Compaction Stats [default] ** 2024-03-24T12:09:00.492 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: 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-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: L0 2/0 81.42 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 129.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Sum 2/0 81.42 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 129.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 129.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: ** Compaction Stats [default] ** 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: 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-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 129.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Uptime(secs): 0.0 total, 0.0 interval 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Flush(GB): cumulative 0.000, interval 0.000 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: AddFile(GB): cumulative 0.000, interval 0.000 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: AddFile(Total Files): cumulative 0, interval 0 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: AddFile(L0 Files): cumulative 0, interval 0 2024-03-24T12:09:00.493 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: AddFile(Keys): cumulative 0, interval 0 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Cumulative compaction: 0.00 GB write, 22.77 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Interval compaction: 0.00 GB write, 22.77 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: 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-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Block cache BinnedLRUCache@0x56510853d090#7 capacity: 512.00 MB usage: 1.17 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.41 KB,7.7486e-05%) Misc(1,0.00 KB,0%) 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: ** File Read Latency Histogram By Level [default] ** 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f1127e1cc80 0 starting mon.smithi170 rank 0 at public addrs [v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0] at bind addrs [v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi170 fsid 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f1127e1cc80 1 mon.smithi170@-1(???) e1 preinit fsid 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f1127e1cc80 0 mon.smithi170@-1(???).mds e1 new map 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f1127e1cc80 0 mon.smithi170@-1(???).mds e1 print_map 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: e1 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: enable_multiple, ever_enabled_multiple: 1,1 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: 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} 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: legacy client fscid: -1 2024-03-24T12:09:00.494 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: 2024-03-24T12:09:00.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: No filesystems configured 2024-03-24T12:09:00.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f1127e1cc80 0 mon.smithi170@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-03-24T12:09:00.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f1127e1cc80 0 mon.smithi170@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-03-24T12:09:00.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f1127e1cc80 0 mon.smithi170@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-03-24T12:09:00.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f1127e1cc80 0 mon.smithi170@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-03-24T12:09:00.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: debug 2024-03-24T12:09:00.204+0000 7f1127e1cc80 1 mon.smithi170@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-03-24T12:09:00.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: cluster 2024-03-24T12:09:00.213610+0000 mon.smithi170 (mon.0) 1 : cluster 1 mon.smithi170 is new leader, mons smithi170 in quorum (ranks 0) 2024-03-24T12:09:00.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: cluster 2024-03-24T12:09:00.213657+0000 mon.smithi170 (mon.0) 2 : cluster 0 monmap e1: 1 mons at {smithi170=[v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-03-24T12:09:00.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: cluster 2024-03-24T12:09:00.214015+0000 mon.smithi170 (mon.0) 3 : cluster 0 fsmap 2024-03-24T12:09:00.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: cluster 2024-03-24T12:09:00.214041+0000 mon.smithi170 (mon.0) 4 : cluster 0 osdmap e1: 0 total, 0 up, 0 in 2024-03-24T12:09:00.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:00 smithi170 bash[18738]: cluster 2024-03-24T12:09:00.214336+0000 mon.smithi170 (mon.0) 5 : cluster 0 mgrmap e1: no daemons active 2024-03-24T12:09:01.161 INFO:teuthology.orchestra.run.smithi170.stdout:Wrote config to /etc/ceph/ceph.conf 2024-03-24T12:09:01.178 INFO:teuthology.orchestra.run.smithi170.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-03-24T12:09:01.178 INFO:teuthology.orchestra.run.smithi170.stdout:Creating mgr... 2024-03-24T12:09:01.178 INFO:teuthology.orchestra.run.smithi170.stdout:Verifying port 0.0.0.0:9283 ... 2024-03-24T12:09:01.178 INFO:teuthology.orchestra.run.smithi170.stdout:Verifying port 0.0.0.0:8765 ... 2024-03-24T12:09:01.179 INFO:teuthology.orchestra.run.smithi170.stdout:Verifying port 0.0.0.0:8443 ... 2024-03-24T12:09:01.496 INFO:teuthology.orchestra.run.smithi170.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mgr.smithi170.xkyvyq 2024-03-24T12:09:01.497 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Failed to reset failed state of unit ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mgr.smithi170.xkyvyq.service: Unit ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mgr.smithi170.xkyvyq.service not loaded. 2024-03-24T12:09:01.501 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:01 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:09:01.501 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:01 smithi170 bash[18738]: audit 2024-03-24T12:09:00.475145+0000 mon.smithi170 (mon.0) 6 : audit 1 from='client.? 172.21.15.170:0/3731473431' entity='client.admin' 2024-03-24T12:09:01.708 INFO:teuthology.orchestra.run.smithi170.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715.target.wants/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mgr.smithi170.xkyvyq.service -> /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.service. 2024-03-24T12:09:01.715 INFO:teuthology.orchestra.run.smithi170.stdout:firewalld does not appear to be present 2024-03-24T12:09:01.715 INFO:teuthology.orchestra.run.smithi170.stdout:Not possible to enable service . firewalld.service is not available 2024-03-24T12:09:01.715 INFO:teuthology.orchestra.run.smithi170.stdout:firewalld does not appear to be present 2024-03-24T12:09:01.715 INFO:teuthology.orchestra.run.smithi170.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-03-24T12:09:01.715 INFO:teuthology.orchestra.run.smithi170.stdout:Waiting for mgr to start... 2024-03-24T12:09:01.716 INFO:teuthology.orchestra.run.smithi170.stdout:Waiting for mgr... 2024-03-24T12:09:01.756 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:01 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:09:03.349 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:03 smithi170 bash[18738]: audit 2024-03-24T12:09:03.181695+0000 mon.smithi170 (mon.0) 7 : audit 0 from='client.? 172.21.15.170:0/4200590155' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-03-24T12:09:03.739 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:09:03.739 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout { 2024-03-24T12:09:03.739 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "fsid": "158785cc-e9d7-11ee-95cd-87774f69a715", 2024-03-24T12:09:03.739 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "health": { 2024-03-24T12:09:03.739 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-03-24T12:09:03.739 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-03-24T12:09:03.739 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-03-24T12:09:03.739 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 0 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ], 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "smithi170" 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ], 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "monmap": { 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:03.740 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-03-24T12:09:03.741 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:03.741 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-03-24T12:09:03.741 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-03-24T12:09:03.741 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-03-24T12:09:03.741 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-03-24T12:09:03.741 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-03-24T12:09:03.741 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-03-24T12:09:03.744 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:03.744 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-03-24T12:09:03.744 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-03-24T12:09:03.744 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:03.745 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "available": false, 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "modules": [ 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "iostat", 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "nfs", 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "restful" 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ], 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "modified": "2024-03-24T12:08:54.485004+0000", 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-24T12:09:03.746 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:03.747 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-03-24T12:09:03.747 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout } 2024-03-24T12:09:03.747 INFO:teuthology.orchestra.run.smithi170.stdout:mgr not available, waiting (1/15)... 2024-03-24T12:09:07.137 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:06 smithi170 bash[18738]: audit 2024-03-24T12:09:06.838068+0000 mon.smithi170 (mon.0) 8 : audit 0 from='client.? 172.21.15.170:0/1791847570' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-03-24T12:09:07.369 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:09:07.370 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout { 2024-03-24T12:09:07.370 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "fsid": "158785cc-e9d7-11ee-95cd-87774f69a715", 2024-03-24T12:09:07.370 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "health": { 2024-03-24T12:09:07.370 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-03-24T12:09:07.370 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-03-24T12:09:07.370 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-03-24T12:09:07.370 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:07.370 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-03-24T12:09:07.370 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-03-24T12:09:07.370 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 0 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ], 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "smithi170" 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ], 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "monmap": { 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-03-24T12:09:07.371 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-03-24T12:09:07.372 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "available": false, 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "modules": [ 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "iostat", 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "nfs", 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "restful" 2024-03-24T12:09:07.373 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ], 2024-03-24T12:09:07.374 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-24T12:09:07.374 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:07.374 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-03-24T12:09:07.374 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:07.374 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "modified": "2024-03-24T12:08:54.485004+0000", 2024-03-24T12:09:07.374 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-24T12:09:07.374 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:07.374 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-03-24T12:09:07.374 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout } 2024-03-24T12:09:07.374 INFO:teuthology.orchestra.run.smithi170.stdout:mgr not available, waiting (2/15)... 2024-03-24T12:09:10.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:10 smithi170 bash[18738]: audit 2024-03-24T12:09:10.328225+0000 mon.smithi170 (mon.0) 9 : audit 0 from='client.? 172.21.15.170:0/1617156866' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-03-24T12:09:10.885 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:09:10.885 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout { 2024-03-24T12:09:10.885 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "fsid": "158785cc-e9d7-11ee-95cd-87774f69a715", 2024-03-24T12:09:10.886 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "health": { 2024-03-24T12:09:10.886 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-03-24T12:09:10.886 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-03-24T12:09:10.886 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-03-24T12:09:10.886 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:10.886 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-03-24T12:09:10.886 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-03-24T12:09:10.886 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 0 2024-03-24T12:09:10.886 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ], 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "smithi170" 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ], 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "monmap": { 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-03-24T12:09:10.887 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-03-24T12:09:10.888 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "available": false, 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "modules": [ 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "iostat", 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "nfs", 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "restful" 2024-03-24T12:09:10.889 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ], 2024-03-24T12:09:10.890 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-24T12:09:10.890 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:10.890 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-03-24T12:09:10.890 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:10.890 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "modified": "2024-03-24T12:08:54.485004+0000", 2024-03-24T12:09:10.890 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-24T12:09:10.890 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:10.890 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-03-24T12:09:10.890 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout } 2024-03-24T12:09:10.890 INFO:teuthology.orchestra.run.smithi170.stdout:mgr not available, waiting (3/15)... 2024-03-24T12:09:11.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: cluster 2024-03-24T12:09:10.893727+0000 mon.smithi170 (mon.0) 10 : cluster 1 Activating manager daemon smithi170.xkyvyq 2024-03-24T12:09:11.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: cluster 2024-03-24T12:09:10.897776+0000 mon.smithi170 (mon.0) 11 : cluster 0 mgrmap e2: smithi170.xkyvyq(active, starting, since 0.00456474s) 2024-03-24T12:09:11.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: audit 2024-03-24T12:09:10.899173+0000 mon.smithi170 (mon.0) 12 : audit 0 from='mgr.14100 172.21.15.170:0/815170719' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-03-24T12:09:11.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: audit 2024-03-24T12:09:10.899440+0000 mon.smithi170 (mon.0) 13 : audit 0 from='mgr.14100 172.21.15.170:0/815170719' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-03-24T12:09:11.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: audit 2024-03-24T12:09:10.899708+0000 mon.smithi170 (mon.0) 14 : audit 0 from='mgr.14100 172.21.15.170:0/815170719' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-03-24T12:09:11.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: audit 2024-03-24T12:09:10.899975+0000 mon.smithi170 (mon.0) 15 : audit 0 from='mgr.14100 172.21.15.170:0/815170719' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi170"}]: dispatch 2024-03-24T12:09:11.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: audit 2024-03-24T12:09:10.900268+0000 mon.smithi170 (mon.0) 16 : audit 0 from='mgr.14100 172.21.15.170:0/815170719' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr metadata", "who": "smithi170.xkyvyq", "id": "smithi170.xkyvyq"}]: dispatch 2024-03-24T12:09:11.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: cluster 2024-03-24T12:09:10.925882+0000 mon.smithi170 (mon.0) 17 : cluster 1 Manager daemon smithi170.xkyvyq is now available 2024-03-24T12:09:11.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: audit 2024-03-24T12:09:10.937818+0000 mon.smithi170 (mon.0) 18 : audit 1 from='mgr.14100 172.21.15.170:0/815170719' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi170.xkyvyq/mirror_snapshot_schedule"}]: dispatch 2024-03-24T12:09:11.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: audit 2024-03-24T12:09:10.940477+0000 mon.smithi170 (mon.0) 19 : audit 1 from='mgr.14100 172.21.15.170:0/815170719' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi170.xkyvyq/trash_purge_schedule"}]: dispatch 2024-03-24T12:09:11.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: audit 2024-03-24T12:09:10.943281+0000 mon.smithi170 (mon.0) 20 : audit 1 from='mgr.14100 172.21.15.170:0/815170719' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:11.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: audit 2024-03-24T12:09:10.945020+0000 mon.smithi170 (mon.0) 21 : audit 1 from='mgr.14100 172.21.15.170:0/815170719' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:11.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:11 smithi170 bash[18738]: audit 2024-03-24T12:09:10.947641+0000 mon.smithi170 (mon.0) 22 : audit 1 from='mgr.14100 172.21.15.170:0/815170719' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:13.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:12 smithi170 bash[18738]: cluster 2024-03-24T12:09:11.909098+0000 mon.smithi170 (mon.0) 23 : cluster 0 mgrmap e3: smithi170.xkyvyq(active, since 1.01588s) 2024-03-24T12:09:14.899 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:09:14.899 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout { 2024-03-24T12:09:14.899 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "fsid": "158785cc-e9d7-11ee-95cd-87774f69a715", 2024-03-24T12:09:14.899 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "health": { 2024-03-24T12:09:14.899 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-03-24T12:09:14.899 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-03-24T12:09:14.899 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-03-24T12:09:14.899 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:14.899 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 0 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ], 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "smithi170" 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ], 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "quorum_age": 14, 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "monmap": { 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:14.900 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-03-24T12:09:14.901 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "available": true, 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "modules": [ 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "iostat", 2024-03-24T12:09:14.902 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "nfs", 2024-03-24T12:09:14.904 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "restful" 2024-03-24T12:09:14.904 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ], 2024-03-24T12:09:14.904 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-24T12:09:14.904 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:14.904 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-03-24T12:09:14.904 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-03-24T12:09:14.904 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "modified": "2024-03-24T12:08:54.485004+0000", 2024-03-24T12:09:14.904 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "services": {} 2024-03-24T12:09:14.904 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout }, 2024-03-24T12:09:14.904 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-03-24T12:09:14.904 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout } 2024-03-24T12:09:14.905 INFO:teuthology.orchestra.run.smithi170.stdout:mgr is available 2024-03-24T12:09:15.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:14 smithi170 bash[18738]: cluster 2024-03-24T12:09:13.905119+0000 mon.smithi170 (mon.0) 24 : cluster 0 mgrmap e4: smithi170.xkyvyq(active, since 3s) 2024-03-24T12:09:15.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:14 smithi170 bash[18738]: audit 2024-03-24T12:09:14.306169+0000 mon.smithi170 (mon.0) 25 : audit 0 from='client.? 172.21.15.170:0/2931671685' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-03-24T12:09:16.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:16 smithi170 bash[18738]: audit 2024-03-24T12:09:16.144136+0000 mon.smithi170 (mon.0) 26 : audit 1 from='client.? 172.21.15.170:0/271913171' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-03-24T12:09:16.675 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:09:16.676 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout [global] 2024-03-24T12:09:16.676 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout fsid = 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:09:16.676 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-03-24T12:09:16.676 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-03-24T12:09:16.676 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-03-24T12:09:16.676 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-03-24T12:09:16.677 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:09:16.677 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout [mgr] 2024-03-24T12:09:16.677 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-03-24T12:09:16.677 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 2024-03-24T12:09:16.677 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout [osd] 2024-03-24T12:09:16.677 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-03-24T12:09:16.677 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-03-24T12:09:16.677 INFO:teuthology.orchestra.run.smithi170.stdout:Enabling cephadm module... 2024-03-24T12:09:18.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:18 smithi170 bash[18738]: audit 2024-03-24T12:09:17.966584+0000 mon.smithi170 (mon.0) 27 : audit 1 from='client.? 172.21.15.170:0/428302723' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-03-24T12:09:19.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:19 smithi170 bash[18738]: audit 2024-03-24T12:09:18.018087+0000 mon.smithi170 (mon.0) 28 : audit 1 from='client.? 172.21.15.170:0/428302723' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-03-24T12:09:19.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:19 smithi170 bash[18738]: cluster 2024-03-24T12:09:18.022408+0000 mon.smithi170 (mon.0) 29 : cluster 0 mgrmap e5: smithi170.xkyvyq(active, since 7s) 2024-03-24T12:09:20.054 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:20 smithi170 bash[18738]: audit 2024-03-24T12:09:19.839631+0000 mon.smithi170 (mon.0) 30 : audit 0 from='client.? 172.21.15.170:0/2650136345' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-03-24T12:09:20.443 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout { 2024-03-24T12:09:20.443 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-03-24T12:09:20.443 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "available": true, 2024-03-24T12:09:20.443 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "active_name": "smithi170.xkyvyq", 2024-03-24T12:09:20.443 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-03-24T12:09:20.443 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout } 2024-03-24T12:09:20.443 INFO:teuthology.orchestra.run.smithi170.stdout:Waiting for the mgr to restart... 2024-03-24T12:09:20.443 INFO:teuthology.orchestra.run.smithi170.stdout:Waiting for mgr epoch 5... 2024-03-24T12:09:26.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:26 smithi170 bash[18738]: cluster 2024-03-24T12:09:26.057833+0000 mon.smithi170 (mon.0) 31 : cluster 1 Active manager daemon smithi170.xkyvyq restarted 2024-03-24T12:09:26.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:26 smithi170 bash[18738]: cluster 2024-03-24T12:09:26.058660+0000 mon.smithi170 (mon.0) 32 : cluster 1 Activating manager daemon smithi170.xkyvyq 2024-03-24T12:09:26.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:26 smithi170 bash[18738]: cluster 2024-03-24T12:09:26.064453+0000 mon.smithi170 (mon.0) 33 : cluster 0 osdmap e2: 0 total, 0 up, 0 in 2024-03-24T12:09:26.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:26 smithi170 bash[18738]: cluster 2024-03-24T12:09:26.064572+0000 mon.smithi170 (mon.0) 34 : cluster 0 mgrmap e6: smithi170.xkyvyq(active, starting, since 0.00628215s) 2024-03-24T12:09:26.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:26 smithi170 bash[18738]: audit 2024-03-24T12:09:26.067140+0000 mon.smithi170 (mon.0) 35 : audit 0 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi170"}]: dispatch 2024-03-24T12:09:26.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:26 smithi170 bash[18738]: audit 2024-03-24T12:09:26.069539+0000 mon.smithi170 (mon.0) 36 : audit 0 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr metadata", "who": "smithi170.xkyvyq", "id": "smithi170.xkyvyq"}]: dispatch 2024-03-24T12:09:26.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:26 smithi170 bash[18738]: audit 2024-03-24T12:09:26.070719+0000 mon.smithi170 (mon.0) 37 : audit 0 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-03-24T12:09:26.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:26 smithi170 bash[18738]: audit 2024-03-24T12:09:26.071172+0000 mon.smithi170 (mon.0) 38 : audit 0 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-03-24T12:09:26.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:26 smithi170 bash[18738]: audit 2024-03-24T12:09:26.071445+0000 mon.smithi170 (mon.0) 39 : audit 0 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-03-24T12:09:26.222 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:26 smithi170 bash[18738]: cluster 2024-03-24T12:09:26.097819+0000 mon.smithi170 (mon.0) 40 : cluster 1 Manager daemon smithi170.xkyvyq is now available 2024-03-24T12:09:27.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:27 smithi170 bash[18738]: cephadm 2024-03-24T12:09:26.119789+0000 mgr.smithi170.xkyvyq (mgr.14120) 1 : cephadm 1 Found migration_current of "None". Setting to last migration. 2024-03-24T12:09:27.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:27 smithi170 bash[18738]: audit 2024-03-24T12:09:26.122115+0000 mon.smithi170 (mon.0) 41 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:27.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:27 smithi170 bash[18738]: audit 2024-03-24T12:09:26.125292+0000 mon.smithi170 (mon.0) 42 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:27.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:27 smithi170 bash[18738]: audit 2024-03-24T12:09:26.129143+0000 mon.smithi170 (mon.0) 43 : audit 0 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:09:27.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:27 smithi170 bash[18738]: audit 2024-03-24T12:09:26.130915+0000 mon.smithi170 (mon.0) 44 : audit 0 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:09:27.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:27 smithi170 bash[18738]: audit 2024-03-24T12:09:26.134823+0000 mon.smithi170 (mon.0) 45 : audit 0 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:09:27.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:27 smithi170 bash[18738]: audit 2024-03-24T12:09:26.144721+0000 mon.smithi170 (mon.0) 46 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi170.xkyvyq/mirror_snapshot_schedule"}]: dispatch 2024-03-24T12:09:27.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:27 smithi170 bash[18738]: audit 2024-03-24T12:09:26.148096+0000 mon.smithi170 (mon.0) 47 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi170.xkyvyq/trash_purge_schedule"}]: dispatch 2024-03-24T12:09:27.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:27 smithi170 bash[18738]: audit 2024-03-24T12:09:27.067775+0000 mgr.smithi170.xkyvyq (mgr.14120) 2 : audit 0 from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-03-24T12:09:27.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:27 smithi170 bash[18738]: cluster 2024-03-24T12:09:27.070636+0000 mon.smithi170 (mon.0) 48 : cluster 0 mgrmap e7: smithi170.xkyvyq(active, since 1.01232s) 2024-03-24T12:09:27.699 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout { 2024-03-24T12:09:27.699 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-03-24T12:09:27.699 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "initialized": true 2024-03-24T12:09:27.699 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout } 2024-03-24T12:09:27.699 INFO:teuthology.orchestra.run.smithi170.stdout:mgr epoch 5 is available 2024-03-24T12:09:27.700 INFO:teuthology.orchestra.run.smithi170.stdout:Setting orchestrator backend to cephadm... 2024-03-24T12:09:28.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:28 smithi170 bash[18738]: audit 2024-03-24T12:09:27.080702+0000 mgr.smithi170.xkyvyq (mgr.14120) 3 : audit 0 from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-03-24T12:09:28.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:28 smithi170 bash[18738]: audit 2024-03-24T12:09:27.164586+0000 mon.smithi170 (mon.0) 49 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:28.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:28 smithi170 bash[18738]: audit 2024-03-24T12:09:27.166806+0000 mon.smithi170 (mon.0) 50 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:28.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:28 smithi170 bash[18738]: cephadm 2024-03-24T12:09:27.575820+0000 mgr.smithi170.xkyvyq (mgr.14120) 4 : cephadm 1 [24/Mar/2024:12:09:27] ENGINE Bus STARTING 2024-03-24T12:09:28.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:28 smithi170 bash[18738]: cephadm 2024-03-24T12:09:27.693684+0000 mgr.smithi170.xkyvyq (mgr.14120) 5 : cephadm 1 [24/Mar/2024:12:09:27] ENGINE Serving on https://172.21.15.170:7150 2024-03-24T12:09:28.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:28 smithi170 bash[18738]: cephadm 2024-03-24T12:09:27.795142+0000 mgr.smithi170.xkyvyq (mgr.14120) 6 : cephadm 1 [24/Mar/2024:12:09:27] ENGINE Serving on http://172.21.15.170:8765 2024-03-24T12:09:28.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:28 smithi170 bash[18738]: cephadm 2024-03-24T12:09:27.795325+0000 mgr.smithi170.xkyvyq (mgr.14120) 7 : cephadm 1 [24/Mar/2024:12:09:27] ENGINE Bus STARTED 2024-03-24T12:09:28.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:28 smithi170 bash[18738]: audit 2024-03-24T12:09:27.808156+0000 mon.smithi170 (mon.0) 51 : audit 0 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:09:29.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:29 smithi170 bash[18738]: cluster 2024-03-24T12:09:28.175601+0000 mon.smithi170 (mon.0) 52 : cluster 0 mgrmap e8: smithi170.xkyvyq(active, since 2s) 2024-03-24T12:09:29.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:29 smithi170 bash[18738]: audit 2024-03-24T12:09:28.923944+0000 mgr.smithi170.xkyvyq (mgr.14120) 8 : audit 0 from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:29.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:29 smithi170 bash[18738]: audit 2024-03-24T12:09:28.927768+0000 mon.smithi170 (mon.0) 53 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:29.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:29 smithi170 bash[18738]: audit 2024-03-24T12:09:28.977691+0000 mon.smithi170 (mon.0) 54 : audit 0 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:09:31.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:31 smithi170 bash[18738]: audit 2024-03-24T12:09:30.869563+0000 mgr.smithi170.xkyvyq (mgr.14120) 9 : audit 0 from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:31.419 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout value unchanged 2024-03-24T12:09:31.419 INFO:teuthology.orchestra.run.smithi170.stdout:Generating ssh key... 2024-03-24T12:09:34.134 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:33 smithi170 bash[18738]: audit 2024-03-24T12:09:32.630148+0000 mgr.smithi170.xkyvyq (mgr.14120) 10 : audit 0 from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:34.134 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:33 smithi170 bash[18738]: cephadm 2024-03-24T12:09:32.630395+0000 mgr.smithi170.xkyvyq (mgr.14120) 11 : cephadm 1 Generating ssh key... 2024-03-24T12:09:34.134 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:33 smithi170 bash[18738]: audit 2024-03-24T12:09:32.874270+0000 mon.smithi170 (mon.0) 55 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:34.134 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:33 smithi170 bash[18738]: audit 2024-03-24T12:09:32.878583+0000 mon.smithi170 (mon.0) 56 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:35.288 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDDa+R9KY1UkiGoVk/VLNdsIbNKJhWPaOBSVoDQSiY9Fi/HBM6GqAqXDTC0g5IPOplY8r5HziUG5er3gzir79yPqpBYMF3WkVino+mZZh3c0dF02tjMFcnK8IOeMz8ULQyPttZRX2WpwtUe7WOuqc0Yi7s5+/qos1kUmkc/pddEXNbr8nejGp+7P15meDPrMqkN9TkESwJiIsTlepigTEXen3NMoguJE69uSBn/LkgLd5LVXBNT6/fkxDjYdrYFSa49S4a4f7pnc5g/9gKE5YJRkfjLEIkEqnV6wmDLIglimVAAbtvpD1/bTkViMS8PIpOKJtzx9+aOjq2D9SzoD8my/nuyko3ItEM8lUS11WCZ7ruHpOdPjQ0cwX8bw4glT0h55gZjcTQQY+sWufvZESzXSDMQWsfupJQdPauQY2UIW5uoudK4KHPBmnYjRxWTpE36uBSwyONCjCTiMU4gacsQLjNVYReBBBT1A1g3n9yir1gkaEpqqAcQzD0ZeeAoq5E= ceph-158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:09:35.288 INFO:teuthology.orchestra.run.smithi170.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-03-24T12:09:35.288 INFO:teuthology.orchestra.run.smithi170.stdout:Adding key to root@localhost authorized_keys... 2024-03-24T12:09:35.289 INFO:teuthology.orchestra.run.smithi170.stdout:Adding host smithi170... 2024-03-24T12:09:35.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:35 smithi170 bash[18738]: audit 2024-03-24T12:09:34.716175+0000 mgr.smithi170.xkyvyq (mgr.14120) 12 : audit 0 from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:37.386 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:37 smithi170 bash[18738]: audit 2024-03-24T12:09:36.547737+0000 mgr.smithi170.xkyvyq (mgr.14120) 13 : audit 0 from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi170", "addr": "172.21.15.170", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:38.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:38 smithi170 bash[18738]: cephadm 2024-03-24T12:09:37.169867+0000 mgr.smithi170.xkyvyq (mgr.14120) 14 : cephadm 1 Deploying cephadm binary to smithi170 2024-03-24T12:09:42.812 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout Added host 'smithi170' with addr '172.21.15.170' 2024-03-24T12:09:42.813 INFO:teuthology.orchestra.run.smithi170.stdout:Deploying mon service with default placement... 2024-03-24T12:09:43.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:42 smithi170 bash[18738]: audit 2024-03-24T12:09:41.984664+0000 mon.smithi170 (mon.0) 57 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:43.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:42 smithi170 bash[18738]: cephadm 2024-03-24T12:09:41.985532+0000 mgr.smithi170.xkyvyq (mgr.14120) 15 : cephadm 1 Added host smithi170 2024-03-24T12:09:43.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:42 smithi170 bash[18738]: audit 2024-03-24T12:09:42.006625+0000 mon.smithi170 (mon.0) 58 : audit 0 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:09:45.462 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-03-24T12:09:45.462 INFO:teuthology.orchestra.run.smithi170.stdout:Deploying mgr service with default placement... 2024-03-24T12:09:46.097 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:45 smithi170 bash[18738]: audit 2024-03-24T12:09:44.776938+0000 mgr.smithi170.xkyvyq (mgr.14120) 16 : audit 0 from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:46.097 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:45 smithi170 bash[18738]: cephadm 2024-03-24T12:09:44.778767+0000 mgr.smithi170.xkyvyq (mgr.14120) 17 : cephadm 1 Saving service mon spec with placement count:5 2024-03-24T12:09:46.097 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:45 smithi170 bash[18738]: audit 2024-03-24T12:09:44.783280+0000 mon.smithi170 (mon.0) 59 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:46.097 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:45 smithi170 bash[18738]: audit 2024-03-24T12:09:45.082767+0000 mon.smithi170 (mon.0) 60 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:46.097 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:45 smithi170 bash[18738]: audit 2024-03-24T12:09:45.621442+0000 mon.smithi170 (mon.0) 61 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:47.255 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-03-24T12:09:47.255 INFO:teuthology.orchestra.run.smithi170.stdout:Deploying crash service with default placement... 2024-03-24T12:09:47.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:47 smithi170 bash[18738]: cluster 2024-03-24T12:09:46.072157+0000 mgr.smithi170.xkyvyq (mgr.14120) 18 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:09:47.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:47 smithi170 bash[18738]: audit 2024-03-24T12:09:46.690442+0000 mon.smithi170 (mon.0) 62 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:48.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:48 smithi170 bash[18738]: audit 2024-03-24T12:09:46.683368+0000 mgr.smithi170.xkyvyq (mgr.14120) 19 : audit 0 from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:48.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:48 smithi170 bash[18738]: cephadm 2024-03-24T12:09:46.685758+0000 mgr.smithi170.xkyvyq (mgr.14120) 20 : cephadm 1 Saving service mgr spec with placement count:2 2024-03-24T12:09:49.203 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-03-24T12:09:49.203 INFO:teuthology.orchestra.run.smithi170.stdout:Deploying ceph-exporter service with default placement... 2024-03-24T12:09:49.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:49 smithi170 bash[18738]: cluster 2024-03-24T12:09:48.072466+0000 mgr.smithi170.xkyvyq (mgr.14120) 21 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:09:49.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:49 smithi170 bash[18738]: audit 2024-03-24T12:09:48.573331+0000 mgr.smithi170.xkyvyq (mgr.14120) 22 : audit 0 from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:49.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:49 smithi170 bash[18738]: cephadm 2024-03-24T12:09:48.575658+0000 mgr.smithi170.xkyvyq (mgr.14120) 23 : cephadm 1 Saving service crash spec with placement * 2024-03-24T12:09:49.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:49 smithi170 bash[18738]: audit 2024-03-24T12:09:48.580552+0000 mon.smithi170 (mon.0) 63 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:50.222 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:50 smithi170 bash[18738]: cluster 2024-03-24T12:09:50.072850+0000 mgr.smithi170.xkyvyq (mgr.14120) 24 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:09:51.056 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-03-24T12:09:51.056 INFO:teuthology.orchestra.run.smithi170.stdout:Deploying prometheus service with default placement... 2024-03-24T12:09:51.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:51 smithi170 bash[18738]: audit 2024-03-24T12:09:50.506673+0000 mgr.smithi170.xkyvyq (mgr.14120) 25 : audit 0 from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:51.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:51 smithi170 bash[18738]: cephadm 2024-03-24T12:09:50.509728+0000 mgr.smithi170.xkyvyq (mgr.14120) 26 : cephadm 1 Saving service ceph-exporter spec with placement * 2024-03-24T12:09:51.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:51 smithi170 bash[18738]: audit 2024-03-24T12:09:50.512665+0000 mon.smithi170 (mon.0) 64 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:52.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:52 smithi170 bash[18738]: cluster 2024-03-24T12:09:52.073196+0000 mgr.smithi170.xkyvyq (mgr.14120) 27 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:09:52.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:52 smithi170 bash[18738]: audit 2024-03-24T12:09:52.255775+0000 mon.smithi170 (mon.0) 65 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:52.863 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-03-24T12:09:52.863 INFO:teuthology.orchestra.run.smithi170.stdout:Deploying grafana service with default placement... 2024-03-24T12:09:53.957 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:53 smithi170 bash[18738]: audit 2024-03-24T12:09:52.251261+0000 mgr.smithi170.xkyvyq (mgr.14120) 28 : audit 0 from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:53.957 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:53 smithi170 bash[18738]: cephadm 2024-03-24T12:09:52.252724+0000 mgr.smithi170.xkyvyq (mgr.14120) 29 : cephadm 1 Saving service prometheus spec with placement count:1 2024-03-24T12:09:54.776 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-03-24T12:09:54.776 INFO:teuthology.orchestra.run.smithi170.stdout:Deploying node-exporter service with default placement... 2024-03-24T12:09:54.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:54 smithi170 bash[18738]: audit 2024-03-24T12:09:53.607000+0000 mon.smithi170 (mon.0) 66 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:54.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:54 smithi170 bash[18738]: cluster 2024-03-24T12:09:54.073501+0000 mgr.smithi170.xkyvyq (mgr.14120) 30 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:09:54.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:54 smithi170 bash[18738]: audit 2024-03-24T12:09:54.129080+0000 mon.smithi170 (mon.0) 67 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:54.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:54 smithi170 bash[18738]: audit 2024-03-24T12:09:54.596893+0000 mon.smithi170 (mon.0) 68 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:55.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:55 smithi170 bash[18738]: audit 2024-03-24T12:09:54.124850+0000 mgr.smithi170.xkyvyq (mgr.14120) 31 : audit 0 from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:55.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:55 smithi170 bash[18738]: cephadm 2024-03-24T12:09:54.126655+0000 mgr.smithi170.xkyvyq (mgr.14120) 32 : cephadm 1 Saving service grafana spec with placement count:1 2024-03-24T12:09:56.665 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-03-24T12:09:56.665 INFO:teuthology.orchestra.run.smithi170.stdout:Deploying alertmanager service with default placement... 2024-03-24T12:09:57.330 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:57 smithi170 bash[18738]: audit 2024-03-24T12:09:56.031640+0000 mgr.smithi170.xkyvyq (mgr.14120) 33 : audit 0 from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:57.330 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:57 smithi170 bash[18738]: cephadm 2024-03-24T12:09:56.033937+0000 mgr.smithi170.xkyvyq (mgr.14120) 34 : cephadm 1 Saving service node-exporter spec with placement * 2024-03-24T12:09:57.330 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:57 smithi170 bash[18738]: audit 2024-03-24T12:09:56.037392+0000 mon.smithi170 (mon.0) 69 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:57.330 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:57 smithi170 bash[18738]: cluster 2024-03-24T12:09:56.073804+0000 mgr.smithi170.xkyvyq (mgr.14120) 35 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:09:58.521 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-03-24T12:09:59.188 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:58 smithi170 bash[18738]: audit 2024-03-24T12:09:57.924780+0000 mgr.smithi170.xkyvyq (mgr.14120) 36 : audit 0 from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:09:59.188 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:58 smithi170 bash[18738]: cephadm 2024-03-24T12:09:57.926396+0000 mgr.smithi170.xkyvyq (mgr.14120) 37 : cephadm 1 Saving service alertmanager spec with placement count:1 2024-03-24T12:09:59.188 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:58 smithi170 bash[18738]: audit 2024-03-24T12:09:57.931228+0000 mon.smithi170 (mon.0) 70 : audit 1 from='mgr.14120 172.21.15.170:0/2230059463' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:09:59.188 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:09:58 smithi170 bash[18738]: cluster 2024-03-24T12:09:58.074173+0000 mgr.smithi170.xkyvyq (mgr.14120) 38 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:01.250 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:00 smithi170 bash[18738]: audit 2024-03-24T12:09:59.761663+0000 mon.smithi170 (mon.0) 71 : audit 1 from='client.? 172.21.15.170:0/232446967' entity='client.admin' 2024-03-24T12:10:01.250 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:00 smithi170 bash[18738]: cluster 2024-03-24T12:10:00.074586+0000 mgr.smithi170.xkyvyq (mgr.14120) 39 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:02.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:02 smithi170 bash[18738]: cluster 2024-03-24T12:10:02.075023+0000 mgr.smithi170.xkyvyq (mgr.14120) 40 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:03.063 INFO:teuthology.orchestra.run.smithi170.stdout:Enabling the dashboard module... 2024-03-24T12:10:03.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:03 smithi170 bash[18738]: audit 2024-03-24T12:10:02.186116+0000 mon.smithi170 (mon.0) 72 : audit 1 from='client.? 172.21.15.170:0/3087038929' entity='client.admin' 2024-03-24T12:10:04.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:04 smithi170 bash[18738]: cluster 2024-03-24T12:10:04.075338+0000 mgr.smithi170.xkyvyq (mgr.14120) 41 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:05.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:05 smithi170 bash[18738]: audit 2024-03-24T12:10:04.358610+0000 mon.smithi170 (mon.0) 73 : audit 1 from='client.? 172.21.15.170:0/322286334' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-03-24T12:10:06.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:06 smithi170 bash[18738]: audit 2024-03-24T12:10:05.195112+0000 mon.smithi170 (mon.0) 74 : audit 1 from='client.? 172.21.15.170:0/322286334' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-03-24T12:10:06.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:06 smithi170 bash[18738]: cluster 2024-03-24T12:10:05.200659+0000 mon.smithi170 (mon.0) 75 : cluster 0 mgrmap e9: smithi170.xkyvyq(active, since 39s) 2024-03-24T12:10:07.246 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:07 smithi170 bash[18738]: audit 2024-03-24T12:10:07.181858+0000 mon.smithi170 (mon.0) 76 : audit 0 from='client.? 172.21.15.170:0/2495808299' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-03-24T12:10:07.765 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout { 2024-03-24T12:10:07.765 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-03-24T12:10:07.765 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "available": true, 2024-03-24T12:10:07.765 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "active_name": "smithi170.xkyvyq", 2024-03-24T12:10:07.766 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-03-24T12:10:07.766 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout } 2024-03-24T12:10:07.766 INFO:teuthology.orchestra.run.smithi170.stdout:Waiting for the mgr to restart... 2024-03-24T12:10:07.766 INFO:teuthology.orchestra.run.smithi170.stdout:Waiting for mgr epoch 9... 2024-03-24T12:10:13.437 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:13 smithi170 bash[18738]: cluster 2024-03-24T12:10:13.305294+0000 mon.smithi170 (mon.0) 77 : cluster 1 Active manager daemon smithi170.xkyvyq restarted 2024-03-24T12:10:13.437 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:13 smithi170 bash[18738]: cluster 2024-03-24T12:10:13.305832+0000 mon.smithi170 (mon.0) 78 : cluster 1 Activating manager daemon smithi170.xkyvyq 2024-03-24T12:10:13.438 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:13 smithi170 bash[18738]: cluster 2024-03-24T12:10:13.313210+0000 mon.smithi170 (mon.0) 79 : cluster 0 osdmap e3: 0 total, 0 up, 0 in 2024-03-24T12:10:13.438 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:13 smithi170 bash[18738]: cluster 2024-03-24T12:10:13.313457+0000 mon.smithi170 (mon.0) 80 : cluster 0 mgrmap e10: smithi170.xkyvyq(active, starting, since 0.00782033s) 2024-03-24T12:10:13.438 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:13 smithi170 bash[18738]: audit 2024-03-24T12:10:13.315169+0000 mon.smithi170 (mon.0) 81 : audit 0 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi170"}]: dispatch 2024-03-24T12:10:13.438 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:13 smithi170 bash[18738]: audit 2024-03-24T12:10:13.316784+0000 mon.smithi170 (mon.0) 82 : audit 0 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr metadata", "who": "smithi170.xkyvyq", "id": "smithi170.xkyvyq"}]: dispatch 2024-03-24T12:10:13.438 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:13 smithi170 bash[18738]: audit 2024-03-24T12:10:13.317930+0000 mon.smithi170 (mon.0) 83 : audit 0 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-03-24T12:10:13.438 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:13 smithi170 bash[18738]: audit 2024-03-24T12:10:13.318056+0000 mon.smithi170 (mon.0) 84 : audit 0 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-03-24T12:10:13.438 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:13 smithi170 bash[18738]: audit 2024-03-24T12:10:13.318188+0000 mon.smithi170 (mon.0) 85 : audit 0 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-03-24T12:10:13.438 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:13 smithi170 bash[18738]: cluster 2024-03-24T12:10:13.341798+0000 mon.smithi170 (mon.0) 86 : cluster 1 Manager daemon smithi170.xkyvyq is now available 2024-03-24T12:10:14.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:14 smithi170 bash[18738]: audit 2024-03-24T12:10:13.368464+0000 mon.smithi170 (mon.0) 87 : audit 0 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:10:14.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:14 smithi170 bash[18738]: audit 2024-03-24T12:10:13.371801+0000 mon.smithi170 (mon.0) 88 : audit 0 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:10:14.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:14 smithi170 bash[18738]: audit 2024-03-24T12:10:13.393530+0000 mon.smithi170 (mon.0) 89 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi170.xkyvyq/mirror_snapshot_schedule"}]: dispatch 2024-03-24T12:10:14.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:14 smithi170 bash[18738]: audit 2024-03-24T12:10:13.398850+0000 mon.smithi170 (mon.0) 90 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi170.xkyvyq/trash_purge_schedule"}]: dispatch 2024-03-24T12:10:14.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:14 smithi170 bash[18738]: cluster 2024-03-24T12:10:14.317671+0000 mon.smithi170 (mon.0) 91 : cluster 0 mgrmap e11: smithi170.xkyvyq(active, since 1.01204s) 2024-03-24T12:10:14.981 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout { 2024-03-24T12:10:14.981 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-03-24T12:10:14.981 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout "initialized": true 2024-03-24T12:10:14.981 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout } 2024-03-24T12:10:14.981 INFO:teuthology.orchestra.run.smithi170.stdout:mgr epoch 9 is available 2024-03-24T12:10:14.981 INFO:teuthology.orchestra.run.smithi170.stdout:Generating a dashboard self-signed certificate... 2024-03-24T12:10:15.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:15 smithi170 bash[18738]: cephadm 2024-03-24T12:10:14.640826+0000 mgr.smithi170.xkyvyq (mgr.14164) 3 : cephadm 1 [24/Mar/2024:12:10:14] ENGINE Bus STARTING 2024-03-24T12:10:15.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:15 smithi170 bash[18738]: cephadm 2024-03-24T12:10:14.758217+0000 mgr.smithi170.xkyvyq (mgr.14164) 4 : cephadm 1 [24/Mar/2024:12:10:14] ENGINE Serving on https://172.21.15.170:7150 2024-03-24T12:10:15.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:15 smithi170 bash[18738]: cephadm 2024-03-24T12:10:14.859452+0000 mgr.smithi170.xkyvyq (mgr.14164) 5 : cephadm 1 [24/Mar/2024:12:10:14] ENGINE Serving on http://172.21.15.170:8765 2024-03-24T12:10:15.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:15 smithi170 bash[18738]: cephadm 2024-03-24T12:10:14.859582+0000 mgr.smithi170.xkyvyq (mgr.14164) 6 : cephadm 1 [24/Mar/2024:12:10:14] ENGINE Bus STARTED 2024-03-24T12:10:16.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:16 smithi170 bash[18738]: cluster 2024-03-24T12:10:15.365102+0000 mon.smithi170 (mon.0) 92 : cluster 0 mgrmap e12: smithi170.xkyvyq(active, since 2s) 2024-03-24T12:10:16.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:16 smithi170 bash[18738]: audit 2024-03-24T12:10:16.184019+0000 mgr.smithi170.xkyvyq (mgr.14164) 7 : audit 0 from='client.14176 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:10:17.002 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-03-24T12:10:17.002 INFO:teuthology.orchestra.run.smithi170.stdout:Creating initial admin user... 2024-03-24T12:10:17.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:17 smithi170 bash[18738]: audit 2024-03-24T12:10:16.386415+0000 mon.smithi170 (mon.0) 93 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:17.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:17 smithi170 bash[18738]: audit 2024-03-24T12:10:16.391393+0000 mon.smithi170 (mon.0) 94 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:18.652 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:18 smithi170 bash[18738]: audit 2024-03-24T12:10:18.198187+0000 mgr.smithi170.xkyvyq (mgr.14164) 8 : audit 0 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-03-24T12:10:19.059 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$WIawJsr5zzWVdkQNRp/uLO.5qAJBLrqAO6VlleZDMKV2Tl48rkvYO", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1711282218, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-03-24T12:10:19.059 INFO:teuthology.orchestra.run.smithi170.stdout:Fetching dashboard port number... 2024-03-24T12:10:19.702 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:19 smithi170 bash[18738]: audit 2024-03-24T12:10:18.454687+0000 mon.smithi170 (mon.0) 95 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:20.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:20 smithi170 bash[18738]: cluster 2024-03-24T12:10:19.462034+0000 mon.smithi170 (mon.0) 96 : cluster 0 mgrmap e13: smithi170.xkyvyq(active, since 6s) 2024-03-24T12:10:20.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:20 smithi170 bash[18738]: audit 2024-03-24T12:10:20.288062+0000 mon.smithi170 (mon.0) 97 : audit 0 from='client.? 172.21.15.170:0/1744653889' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-03-24T12:10:20.847 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stdout 8443 2024-03-24T12:10:20.847 INFO:teuthology.orchestra.run.smithi170.stdout:firewalld does not appear to be present 2024-03-24T12:10:20.847 INFO:teuthology.orchestra.run.smithi170.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-03-24T12:10:20.850 INFO:teuthology.orchestra.run.smithi170.stdout:Ceph Dashboard is now available at: 2024-03-24T12:10:20.850 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:10:20.850 INFO:teuthology.orchestra.run.smithi170.stdout: URL: https://smithi170.front.sepia.ceph.com:8443/ 2024-03-24T12:10:20.850 INFO:teuthology.orchestra.run.smithi170.stdout: User: admin 2024-03-24T12:10:20.851 INFO:teuthology.orchestra.run.smithi170.stdout: Password: y76u9zcgte 2024-03-24T12:10:20.851 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:10:20.851 INFO:teuthology.orchestra.run.smithi170.stdout:Saving cluster configuration to /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config directory 2024-03-24T12:10:20.851 INFO:teuthology.orchestra.run.smithi170.stdout:Enabling autotune for osd_memory_target 2024-03-24T12:10:22.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:22 smithi170 bash[18738]: audit 2024-03-24T12:10:21.530283+0000 mon.smithi170 (mon.0) 98 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:22.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:22 smithi170 bash[18738]: audit 2024-03-24T12:10:22.519729+0000 mon.smithi170 (mon.0) 99 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:24.709 INFO:teuthology.orchestra.run.smithi170.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-03-24T12:10:24.709 INFO:teuthology.orchestra.run.smithi170.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-03-24T12:10:24.709 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:10:24.709 INFO:teuthology.orchestra.run.smithi170.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-03-24T12:10:24.709 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout:Or, if you are only running a single cluster on this host: 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout:Please consider enabling telemetry to help improve Ceph: 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout: ceph telemetry on 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout:For more information see: 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:10:24.710 INFO:teuthology.orchestra.run.smithi170.stdout:Bootstrap complete. 2024-03-24T12:10:24.764 INFO:tasks.cephadm:Fetching config... 2024-03-24T12:10:24.765 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:10:24.765 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-03-24T12:10:24.770 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-03-24T12:10:24.770 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:10:24.771 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-03-24T12:10:24.822 INFO:tasks.cephadm:Fetching mon keyring... 2024-03-24T12:10:24.822 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:10:24.823 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/keyring of=/dev/stdout 2024-03-24T12:10:24.879 INFO:tasks.cephadm:Fetching pub ssh key... 2024-03-24T12:10:24.879 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:10:24.879 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-03-24T12:10:24.925 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-03-24T12:10:24.925 DEBUG:teuthology.orchestra.run.smithi170:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDDa+R9KY1UkiGoVk/VLNdsIbNKJhWPaOBSVoDQSiY9Fi/HBM6GqAqXDTC0g5IPOplY8r5HziUG5er3gzir79yPqpBYMF3WkVino+mZZh3c0dF02tjMFcnK8IOeMz8ULQyPttZRX2WpwtUe7WOuqc0Yi7s5+/qos1kUmkc/pddEXNbr8nejGp+7P15meDPrMqkN9TkESwJiIsTlepigTEXen3NMoguJE69uSBn/LkgLd5LVXBNT6/fkxDjYdrYFSa49S4a4f7pnc5g/9gKE5YJRkfjLEIkEqnV6wmDLIglimVAAbtvpD1/bTkViMS8PIpOKJtzx9+aOjq2D9SzoD8my/nuyko3ItEM8lUS11WCZ7ruHpOdPjQ0cwX8bw4glT0h55gZjcTQQY+sWufvZESzXSDMQWsfupJQdPauQY2UIW5uoudK4KHPBmnYjRxWTpE36uBSwyONCjCTiMU4gacsQLjNVYReBBBT1A1g3n9yir1gkaEpqqAcQzD0ZeeAoq5E= ceph-158785cc-e9d7-11ee-95cd-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-03-24T12:10:24.988 INFO:teuthology.orchestra.run.smithi170.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDDa+R9KY1UkiGoVk/VLNdsIbNKJhWPaOBSVoDQSiY9Fi/HBM6GqAqXDTC0g5IPOplY8r5HziUG5er3gzir79yPqpBYMF3WkVino+mZZh3c0dF02tjMFcnK8IOeMz8ULQyPttZRX2WpwtUe7WOuqc0Yi7s5+/qos1kUmkc/pddEXNbr8nejGp+7P15meDPrMqkN9TkESwJiIsTlepigTEXen3NMoguJE69uSBn/LkgLd5LVXBNT6/fkxDjYdrYFSa49S4a4f7pnc5g/9gKE5YJRkfjLEIkEqnV6wmDLIglimVAAbtvpD1/bTkViMS8PIpOKJtzx9+aOjq2D9SzoD8my/nuyko3ItEM8lUS11WCZ7ruHpOdPjQ0cwX8bw4glT0h55gZjcTQQY+sWufvZESzXSDMQWsfupJQdPauQY2UIW5uoudK4KHPBmnYjRxWTpE36uBSwyONCjCTiMU4gacsQLjNVYReBBBT1A1g3n9yir1gkaEpqqAcQzD0ZeeAoq5E= ceph-158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:10:24.997 DEBUG:teuthology.orchestra.run.smithi172:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDDa+R9KY1UkiGoVk/VLNdsIbNKJhWPaOBSVoDQSiY9Fi/HBM6GqAqXDTC0g5IPOplY8r5HziUG5er3gzir79yPqpBYMF3WkVino+mZZh3c0dF02tjMFcnK8IOeMz8ULQyPttZRX2WpwtUe7WOuqc0Yi7s5+/qos1kUmkc/pddEXNbr8nejGp+7P15meDPrMqkN9TkESwJiIsTlepigTEXen3NMoguJE69uSBn/LkgLd5LVXBNT6/fkxDjYdrYFSa49S4a4f7pnc5g/9gKE5YJRkfjLEIkEqnV6wmDLIglimVAAbtvpD1/bTkViMS8PIpOKJtzx9+aOjq2D9SzoD8my/nuyko3ItEM8lUS11WCZ7ruHpOdPjQ0cwX8bw4glT0h55gZjcTQQY+sWufvZESzXSDMQWsfupJQdPauQY2UIW5uoudK4KHPBmnYjRxWTpE36uBSwyONCjCTiMU4gacsQLjNVYReBBBT1A1g3n9yir1gkaEpqqAcQzD0ZeeAoq5E= ceph-158785cc-e9d7-11ee-95cd-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-03-24T12:10:25.022 INFO:teuthology.orchestra.run.smithi172.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDDa+R9KY1UkiGoVk/VLNdsIbNKJhWPaOBSVoDQSiY9Fi/HBM6GqAqXDTC0g5IPOplY8r5HziUG5er3gzir79yPqpBYMF3WkVino+mZZh3c0dF02tjMFcnK8IOeMz8ULQyPttZRX2WpwtUe7WOuqc0Yi7s5+/qos1kUmkc/pddEXNbr8nejGp+7P15meDPrMqkN9TkESwJiIsTlepigTEXen3NMoguJE69uSBn/LkgLd5LVXBNT6/fkxDjYdrYFSa49S4a4f7pnc5g/9gKE5YJRkfjLEIkEqnV6wmDLIglimVAAbtvpD1/bTkViMS8PIpOKJtzx9+aOjq2D9SzoD8my/nuyko3ItEM8lUS11WCZ7ruHpOdPjQ0cwX8bw4glT0h55gZjcTQQY+sWufvZESzXSDMQWsfupJQdPauQY2UIW5uoudK4KHPBmnYjRxWTpE36uBSwyONCjCTiMU4gacsQLjNVYReBBBT1A1g3n9yir1gkaEpqqAcQzD0ZeeAoq5E= ceph-158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:10:25.031 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-03-24T12:10:25.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:25 smithi170 bash[18738]: audit 2024-03-24T12:10:24.102554+0000 mon.smithi170 (mon.0) 100 : audit 1 from='client.? 172.21.15.170:0/3851528751' entity='client.admin' 2024-03-24T12:10:29.502 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:10:33.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:33 smithi170 bash[18738]: audit 2024-03-24T12:10:32.310188+0000 mon.smithi170 (mon.0) 101 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:33.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:33 smithi170 bash[18738]: audit 2024-03-24T12:10:32.313007+0000 mon.smithi170 (mon.0) 102 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:33.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:33 smithi170 bash[18738]: audit 2024-03-24T12:10:32.313859+0000 mon.smithi170 (mon.0) 103 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd/host:smithi170", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:10:33.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:33 smithi170 bash[18738]: audit 2024-03-24T12:10:32.317440+0000 mon.smithi170 (mon.0) 104 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:33.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:33 smithi170 bash[18738]: audit 2024-03-24T12:10:32.319080+0000 mon.smithi170 (mon.0) 105 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-24T12:10:33.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:33 smithi170 bash[18738]: audit 2024-03-24T12:10:32.320279+0000 mon.smithi170 (mon.0) 106 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-03-24T12:10:33.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:33 smithi170 bash[18738]: audit 2024-03-24T12:10:32.322573+0000 mon.smithi170 (mon.0) 107 : audit 0 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:10:33.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:33 smithi170 bash[18738]: cephadm 2024-03-24T12:10:32.323732+0000 mgr.smithi170.xkyvyq (mgr.14164) 9 : cephadm 1 Deploying daemon ceph-exporter.smithi170 on smithi170 2024-03-24T12:10:33.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:33 smithi170 bash[18738]: audit 2024-03-24T12:10:32.589697+0000 mon.smithi170 (mon.0) 108 : audit 1 from='client.? 172.21.15.170:0/1553794588' entity='client.admin' 2024-03-24T12:10:33.565 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-03-24T12:10:33.565 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-03-24T12:10:34.580 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:34 smithi170 bash[18738]: cluster 2024-03-24T12:10:33.319367+0000 mgr.smithi170.xkyvyq (mgr.14164) 10 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:34.832 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:34 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:10:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:34 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:10:36.385 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:36 smithi170 bash[18738]: audit 2024-03-24T12:10:35.109937+0000 mon.smithi170 (mon.0) 109 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:36.385 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:36 smithi170 bash[18738]: audit 2024-03-24T12:10:35.112876+0000 mon.smithi170 (mon.0) 110 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:36.385 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:36 smithi170 bash[18738]: audit 2024-03-24T12:10:35.146669+0000 mon.smithi170 (mon.0) 111 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:36.385 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:36 smithi170 bash[18738]: audit 2024-03-24T12:10:35.148961+0000 mon.smithi170 (mon.0) 112 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:36.385 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:36 smithi170 bash[18738]: audit 2024-03-24T12:10:35.150268+0000 mon.smithi170 (mon.0) 113 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-24T12:10:36.386 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:36 smithi170 bash[18738]: audit 2024-03-24T12:10:35.150887+0000 mon.smithi170 (mon.0) 114 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-03-24T12:10:36.386 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:36 smithi170 bash[18738]: audit 2024-03-24T12:10:35.152528+0000 mon.smithi170 (mon.0) 115 : audit 0 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:10:36.386 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:36 smithi170 bash[18738]: cephadm 2024-03-24T12:10:35.153354+0000 mgr.smithi170.xkyvyq (mgr.14164) 11 : cephadm 1 Deploying daemon crash.smithi170 on smithi170 2024-03-24T12:10:37.387 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:37 smithi170 bash[18738]: cluster 2024-03-24T12:10:35.319645+0000 mgr.smithi170.xkyvyq (mgr.14164) 12 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:37.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:37 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:10:37.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:37 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:10:38.268 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:10:38.785 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:38 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:10:38.785 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:38 smithi170 bash[18738]: cluster 2024-03-24T12:10:37.320064+0000 mgr.smithi170.xkyvyq (mgr.14164) 13 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:38.785 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:38 smithi170 bash[18738]: audit 2024-03-24T12:10:37.782820+0000 mon.smithi170 (mon.0) 116 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:38.785 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:38 smithi170 bash[18738]: audit 2024-03-24T12:10:37.786194+0000 mon.smithi170 (mon.0) 117 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:38.785 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:38 smithi170 bash[18738]: audit 2024-03-24T12:10:37.824633+0000 mon.smithi170 (mon.0) 118 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:38.785 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:38 smithi170 bash[18738]: audit 2024-03-24T12:10:37.827028+0000 mon.smithi170 (mon.0) 119 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:38.785 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:38 smithi170 bash[18738]: cephadm 2024-03-24T12:10:37.828395+0000 mgr.smithi170.xkyvyq (mgr.14164) 14 : cephadm 1 Deploying daemon node-exporter.smithi170 on smithi170 2024-03-24T12:10:38.785 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:38 smithi170 bash[18738]: audit 2024-03-24T12:10:38.393300+0000 mon.smithi170 (mon.0) 120 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:39.057 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:38 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:10:40.391 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:40 smithi170 bash[18738]: audit 2024-03-24T12:10:39.060442+0000 mon.smithi170 (mon.0) 121 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:40.391 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:40 smithi170 bash[18738]: audit 2024-03-24T12:10:39.063570+0000 mon.smithi170 (mon.0) 122 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:40.391 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:40 smithi170 bash[18738]: audit 2024-03-24T12:10:39.096936+0000 mon.smithi170 (mon.0) 123 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:40.391 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:40 smithi170 bash[18738]: audit 2024-03-24T12:10:39.099689+0000 mon.smithi170 (mon.0) 124 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:40.391 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:40 smithi170 bash[18738]: cephadm 2024-03-24T12:10:39.111894+0000 mgr.smithi170.xkyvyq (mgr.14164) 15 : cephadm 1 Deploying daemon alertmanager.smithi170 on smithi170 2024-03-24T12:10:41.392 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:41 smithi170 bash[18738]: cluster 2024-03-24T12:10:39.320381+0000 mgr.smithi170.xkyvyq (mgr.14164) 16 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:43.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:43 smithi170 bash[18738]: cluster 2024-03-24T12:10:41.320812+0000 mgr.smithi170.xkyvyq (mgr.14164) 17 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:43.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:43 smithi170 bash[18738]: audit 2024-03-24T12:10:42.079067+0000 mgr.smithi170.xkyvyq (mgr.14164) 18 : audit 0 from='client.14189 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:10:43.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:43 smithi170 bash[18738]: audit 2024-03-24T12:10:42.084485+0000 mon.smithi170 (mon.0) 125 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:43.698 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi172 2024-03-24T12:10:43.698 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-03-24T12:10:43.698 DEBUG:teuthology.orchestra.run.smithi172:> dd of=/etc/ceph/ceph.conf 2024-03-24T12:10:43.705 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-03-24T12:10:43.705 DEBUG:teuthology.orchestra.run.smithi172:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-03-24T12:10:43.754 INFO:tasks.cephadm:Adding host smithi172 to orchestrator... 2024-03-24T12:10:43.754 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph orch host add smithi172 2024-03-24T12:10:44.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:44 smithi170 bash[18738]: cluster 2024-03-24T12:10:43.321264+0000 mgr.smithi170.xkyvyq (mgr.14164) 19 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:44.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:44 smithi170 bash[18738]: audit 2024-03-24T12:10:43.397981+0000 mon.smithi170 (mon.0) 126 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:46.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:46 smithi170 bash[18738]: cluster 2024-03-24T12:10:45.321676+0000 mgr.smithi170.xkyvyq (mgr.14164) 20 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:48.663 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:48 smithi170 bash[18738]: cluster 2024-03-24T12:10:47.322066+0000 mgr.smithi170.xkyvyq (mgr.14164) 21 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:49.684 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:49 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:10:49.829 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:10:49.950 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:49 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:10:51.201 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: cluster 2024-03-24T12:10:49.322485+0000 mgr.smithi170.xkyvyq (mgr.14164) 22 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:51.202 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: audit 2024-03-24T12:10:49.948776+0000 mon.smithi170 (mon.0) 127 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:51.202 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: audit 2024-03-24T12:10:49.951981+0000 mon.smithi170 (mon.0) 128 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:51.202 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: audit 2024-03-24T12:10:50.000931+0000 mon.smithi170 (mon.0) 129 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:51.202 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: audit 2024-03-24T12:10:50.003874+0000 mon.smithi170 (mon.0) 130 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:51.202 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: audit 2024-03-24T12:10:50.009814+0000 mon.smithi170 (mon.0) 131 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:51.202 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: audit 2024-03-24T12:10:50.013324+0000 mon.smithi170 (mon.0) 132 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:51.202 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: cephadm 2024-03-24T12:10:50.028300+0000 mgr.smithi170.xkyvyq (mgr.14164) 23 : cephadm 1 Regenerating cephadm self-signed grafana TLS certificates 2024-03-24T12:10:51.202 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: audit 2024-03-24T12:10:50.143210+0000 mon.smithi170 (mon.0) 133 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:51.202 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: audit 2024-03-24T12:10:50.147589+0000 mon.smithi170 (mon.0) 134 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:51.202 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: audit 2024-03-24T12:10:50.149396+0000 mon.smithi170 (mon.0) 135 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-03-24T12:10:51.202 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: audit 2024-03-24T12:10:50.149854+0000 mgr.smithi170.xkyvyq (mgr.14164) 24 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-03-24T12:10:51.202 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: audit 2024-03-24T12:10:50.153524+0000 mon.smithi170 (mon.0) 136 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:51.203 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:50 smithi170 bash[18738]: cephadm 2024-03-24T12:10:50.168393+0000 mgr.smithi170.xkyvyq (mgr.14164) 25 : cephadm 1 Deploying daemon grafana.smithi170 on smithi170 2024-03-24T12:10:53.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:52 smithi170 bash[18738]: cluster 2024-03-24T12:10:51.322851+0000 mgr.smithi170.xkyvyq (mgr.14164) 26 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:54.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:54 smithi170 bash[18738]: cluster 2024-03-24T12:10:53.323155+0000 mgr.smithi170.xkyvyq (mgr.14164) 27 : cluster 0 pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:54.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:54 smithi170 bash[18738]: audit 2024-03-24T12:10:53.403138+0000 mon.smithi170 (mon.0) 137 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:10:54.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:54 smithi170 bash[18738]: audit 2024-03-24T12:10:53.469762+0000 mgr.smithi170.xkyvyq (mgr.14164) 28 : audit 0 from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi172", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:10:54.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:54 smithi170 bash[18738]: cephadm 2024-03-24T12:10:54.124470+0000 mgr.smithi170.xkyvyq (mgr.14164) 29 : cephadm 1 Deploying cephadm binary to smithi172 2024-03-24T12:10:56.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:56 smithi170 bash[18738]: cluster 2024-03-24T12:10:55.323490+0000 mgr.smithi170.xkyvyq (mgr.14164) 30 : cluster 0 pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:58.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:10:58 smithi170 bash[18738]: cluster 2024-03-24T12:10:57.323787+0000 mgr.smithi170.xkyvyq (mgr.14164) 31 : cluster 0 pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:10:59.678 INFO:teuthology.orchestra.run.smithi170.stdout:Added host 'smithi172' with addr '172.21.15.172' 2024-03-24T12:11:00.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:00 smithi170 bash[18738]: cluster 2024-03-24T12:10:59.324020+0000 mgr.smithi170.xkyvyq (mgr.14164) 32 : cluster 0 pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:00.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:00 smithi170 bash[18738]: audit 2024-03-24T12:10:59.680206+0000 mon.smithi170 (mon.0) 138 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:00.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:00 smithi170 bash[18738]: cephadm 2024-03-24T12:10:59.680662+0000 mgr.smithi170.xkyvyq (mgr.14164) 33 : cephadm 1 Added host smithi172 2024-03-24T12:11:02.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:02 smithi170 bash[18738]: cluster 2024-03-24T12:11:01.324281+0000 mgr.smithi170.xkyvyq (mgr.14164) 34 : cluster 0 pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:04.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:04 smithi170 bash[18738]: cluster 2024-03-24T12:11:03.324690+0000 mgr.smithi170.xkyvyq (mgr.14164) 35 : cluster 0 pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:06.059 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph orch host ls --format=json 2024-03-24T12:11:06.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:06 smithi170 bash[18738]: cluster 2024-03-24T12:11:05.325180+0000 mgr.smithi170.xkyvyq (mgr.14164) 36 : cluster 0 pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:08.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:08 smithi170 bash[18738]: cluster 2024-03-24T12:11:07.325615+0000 mgr.smithi170.xkyvyq (mgr.14164) 37 : cluster 0 pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:10.805 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:11:10.825 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:10 smithi170 bash[18738]: cluster 2024-03-24T12:11:09.326058+0000 mgr.smithi170.xkyvyq (mgr.14164) 38 : cluster 0 pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:11.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:11 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:11:12.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:12 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:11:13.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:13 smithi170 bash[18738]: cluster 2024-03-24T12:11:11.326514+0000 mgr.smithi170.xkyvyq (mgr.14164) 39 : cluster 0 pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:13.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:13 smithi170 bash[18738]: audit 2024-03-24T12:11:12.159452+0000 mon.smithi170 (mon.0) 139 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:13.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:13 smithi170 bash[18738]: audit 2024-03-24T12:11:12.163991+0000 mon.smithi170 (mon.0) 140 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:13.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:13 smithi170 bash[18738]: audit 2024-03-24T12:11:12.215195+0000 mon.smithi170 (mon.0) 141 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:13.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:13 smithi170 bash[18738]: audit 2024-03-24T12:11:12.217437+0000 mon.smithi170 (mon.0) 142 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:13.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:13 smithi170 bash[18738]: audit 2024-03-24T12:11:12.219899+0000 mon.smithi170 (mon.0) 143 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:13.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:13 smithi170 bash[18738]: audit 2024-03-24T12:11:12.222574+0000 mon.smithi170 (mon.0) 144 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:13.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:13 smithi170 bash[18738]: audit 2024-03-24T12:11:12.225253+0000 mon.smithi170 (mon.0) 145 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:13.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:13 smithi170 bash[18738]: audit 2024-03-24T12:11:12.227040+0000 mon.smithi170 (mon.0) 146 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:14.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:14 smithi170 bash[18738]: cephadm 2024-03-24T12:11:12.466540+0000 mgr.smithi170.xkyvyq (mgr.14164) 40 : cephadm 1 Deploying daemon prometheus.smithi170 on smithi170 2024-03-24T12:11:14.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:14 smithi170 bash[18738]: audit 2024-03-24T12:11:13.415344+0000 mon.smithi170 (mon.0) 147 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:15.064 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:11:15.064 INFO:teuthology.orchestra.run.smithi170.stdout:[{"addr": "172.21.15.170", "hostname": "smithi170", "labels": [], "status": ""}, {"addr": "172.21.15.172", "hostname": "smithi172", "labels": [], "status": ""}] 2024-03-24T12:11:15.319 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:15 smithi170 bash[18738]: cluster 2024-03-24T12:11:13.326915+0000 mgr.smithi170.xkyvyq (mgr.14164) 41 : cluster 0 pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:16.321 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:16 smithi170 bash[18738]: audit 2024-03-24T12:11:15.065595+0000 mgr.smithi170.xkyvyq (mgr.14164) 42 : audit 0 from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-24T12:11:16.326 INFO:tasks.cephadm:Setting crush tunables to default 2024-03-24T12:11:16.326 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd crush tunables default 2024-03-24T12:11:17.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:17 smithi170 bash[18738]: cluster 2024-03-24T12:11:15.327333+0000 mgr.smithi170.xkyvyq (mgr.14164) 43 : cluster 0 pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:19.228 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:19 smithi170 bash[18738]: cluster 2024-03-24T12:11:17.327750+0000 mgr.smithi170.xkyvyq (mgr.14164) 44 : cluster 0 pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:21.087 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:11:21.452 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:21 smithi170 bash[18738]: cluster 2024-03-24T12:11:19.328141+0000 mgr.smithi170.xkyvyq (mgr.14164) 45 : cluster 0 pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:23.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:23 smithi170 bash[18738]: cluster 2024-03-24T12:11:21.328476+0000 mgr.smithi170.xkyvyq (mgr.14164) 46 : cluster 0 pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:25.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:25 smithi170 bash[18738]: cluster 2024-03-24T12:11:23.328845+0000 mgr.smithi170.xkyvyq (mgr.14164) 47 : cluster 0 pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:27.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:27 smithi170 bash[18738]: cluster 2024-03-24T12:11:25.329291+0000 mgr.smithi170.xkyvyq (mgr.14164) 48 : cluster 0 pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:29.186 INFO:teuthology.orchestra.run.smithi170.stderr:adjusted tunables profile to default 2024-03-24T12:11:29.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:29 smithi170 bash[18738]: cluster 2024-03-24T12:11:27.329755+0000 mgr.smithi170.xkyvyq (mgr.14164) 49 : cluster 0 pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:29.504 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:29 smithi170 bash[18738]: audit 2024-03-24T12:11:28.596636+0000 mon.smithi170 (mon.0) 148 : audit 1 from='client.? 172.21.15.170:0/2508641033' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-03-24T12:11:30.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:30 smithi170 bash[18738]: audit 2024-03-24T12:11:29.184620+0000 mon.smithi170 (mon.0) 149 : audit 1 from='client.? 172.21.15.170:0/2508641033' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-03-24T12:11:30.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:30 smithi170 bash[18738]: cluster 2024-03-24T12:11:29.189063+0000 mon.smithi170 (mon.0) 150 : cluster 0 osdmap e4: 0 total, 0 up, 0 in 2024-03-24T12:11:30.803 INFO:tasks.cephadm:Adding mon.smithi170 on smithi170 2024-03-24T12:11:30.803 INFO:tasks.cephadm:Adding mon.smithi172 on smithi172 2024-03-24T12:11:30.803 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph orch apply mon '2;smithi170:172.21.15.170=smithi170;smithi172:172.21.15.172=smithi172' 2024-03-24T12:11:31.466 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:31 smithi170 bash[18738]: cluster 2024-03-24T12:11:29.330086+0000 mgr.smithi170.xkyvyq (mgr.14164) 50 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:32.011 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /etc/ceph/ceph.conf 2024-03-24T12:11:33.055 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /etc/ceph/ceph.conf 2024-03-24T12:11:33.369 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:33 smithi170 bash[18738]: cluster 2024-03-24T12:11:31.330395+0000 mgr.smithi170.xkyvyq (mgr.14164) 51 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:34.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:34 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:11:34.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:34 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:11:35.262 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:35 smithi170 bash[18738]: cluster 2024-03-24T12:11:33.330841+0000 mgr.smithi170.xkyvyq (mgr.14164) 52 : cluster 0 pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:11:35.263 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:35 smithi170 bash[18738]: audit 2024-03-24T12:11:34.459589+0000 mon.smithi170 (mon.0) 151 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:35.263 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:35 smithi170 bash[18738]: audit 2024-03-24T12:11:34.464832+0000 mon.smithi170 (mon.0) 152 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:35.263 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:35 smithi170 bash[18738]: audit 2024-03-24T12:11:34.487933+0000 mon.smithi170 (mon.0) 153 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:35.263 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:35 smithi170 bash[18738]: audit 2024-03-24T12:11:34.490004+0000 mon.smithi170 (mon.0) 154 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-03-24T12:11:35.346 INFO:teuthology.orchestra.run.smithi172.stdout:Scheduled mon update... 2024-03-24T12:11:35.946 DEBUG:teuthology.orchestra.run.smithi172:mon.smithi172> sudo journalctl -f -n 0 -u ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mon.smithi172.service 2024-03-24T12:11:35.949 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-03-24T12:11:35.950 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph mon dump -f json 2024-03-24T12:11:36.582 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:36 smithi170 bash[18738]: audit 2024-03-24T12:11:35.344373+0000 mon.smithi170 (mon.0) 155 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:36.582 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:36 smithi170 bash[18738]: audit 2024-03-24T12:11:35.488599+0000 mon.smithi170 (mon.0) 156 : audit 1 from='mgr.14164 172.21.15.170:0/3503843198' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-03-24T12:11:36.582 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:36 smithi170 bash[18738]: cluster 2024-03-24T12:11:35.494823+0000 mon.smithi170 (mon.0) 157 : cluster 0 mgrmap e14: smithi170.xkyvyq(active, since 82s) 2024-03-24T12:11:37.196 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /etc/ceph/ceph.conf 2024-03-24T12:11:38.243 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /etc/ceph/ceph.conf 2024-03-24T12:11:40.504 INFO:teuthology.orchestra.run.smithi172.stdout: 2024-03-24T12:11:40.504 INFO:teuthology.orchestra.run.smithi172.stdout:{"epoch":1,"fsid":"158785cc-e9d7-11ee-95cd-87774f69a715","modified":"2024-03-24T12:08:50.117688Z","created":"2024-03-24T12:08:50.117688Z","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":"smithi170","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:3300","nonce":0},{"type":"v1","addr":"172.21.15.170:6789","nonce":0}]},"addr":"172.21.15.170:6789/0","public_addr":"172.21.15.170:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-03-24T12:11:40.506 INFO:teuthology.orchestra.run.smithi172.stderr:dumped monmap epoch 1 2024-03-24T12:11:40.789 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:40 smithi170 bash[18738]: audit 2024-03-24T12:11:40.505930+0000 mon.smithi170 (mon.0) 158 : audit 0 from='client.? 172.21.15.172:0/906270383' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-24T12:11:42.014 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-03-24T12:11:42.015 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph mon dump -f json 2024-03-24T12:11:43.214 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /etc/ceph/ceph.conf 2024-03-24T12:11:43.934 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:43 smithi170 bash[18738]: cluster 2024-03-24T12:11:43.805402+0000 mon.smithi170 (mon.0) 159 : cluster 1 Active manager daemon smithi170.xkyvyq restarted 2024-03-24T12:11:43.934 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:43 smithi170 bash[18738]: cluster 2024-03-24T12:11:43.806015+0000 mon.smithi170 (mon.0) 160 : cluster 1 Activating manager daemon smithi170.xkyvyq 2024-03-24T12:11:43.934 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:43 smithi170 bash[18738]: cluster 2024-03-24T12:11:43.809768+0000 mon.smithi170 (mon.0) 161 : cluster 0 osdmap e5: 0 total, 0 up, 0 in 2024-03-24T12:11:43.934 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:43 smithi170 bash[18738]: cluster 2024-03-24T12:11:43.809925+0000 mon.smithi170 (mon.0) 162 : cluster 0 mgrmap e15: smithi170.xkyvyq(active, starting, since 0.00414418s) 2024-03-24T12:11:43.934 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:43 smithi170 bash[18738]: audit 2024-03-24T12:11:43.813028+0000 mon.smithi170 (mon.0) 163 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi170"}]: dispatch 2024-03-24T12:11:43.934 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:43 smithi170 bash[18738]: audit 2024-03-24T12:11:43.813911+0000 mon.smithi170 (mon.0) 164 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr metadata", "who": "smithi170.xkyvyq", "id": "smithi170.xkyvyq"}]: dispatch 2024-03-24T12:11:43.934 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:43 smithi170 bash[18738]: audit 2024-03-24T12:11:43.814890+0000 mon.smithi170 (mon.0) 165 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-03-24T12:11:43.934 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:43 smithi170 bash[18738]: audit 2024-03-24T12:11:43.815251+0000 mon.smithi170 (mon.0) 166 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-03-24T12:11:43.934 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:43 smithi170 bash[18738]: audit 2024-03-24T12:11:43.815647+0000 mon.smithi170 (mon.0) 167 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-03-24T12:11:43.934 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:43 smithi170 bash[18738]: cluster 2024-03-24T12:11:43.845809+0000 mon.smithi170 (mon.0) 168 : cluster 1 Manager daemon smithi170.xkyvyq is now available 2024-03-24T12:11:44.258 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /etc/ceph/ceph.conf 2024-03-24T12:11:45.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:44 smithi170 bash[18738]: audit 2024-03-24T12:11:43.876078+0000 mon.smithi170 (mon.0) 169 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:11:45.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:44 smithi170 bash[18738]: audit 2024-03-24T12:11:43.879990+0000 mon.smithi170 (mon.0) 170 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:11:45.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:44 smithi170 bash[18738]: audit 2024-03-24T12:11:43.896027+0000 mon.smithi170 (mon.0) 171 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:45.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:44 smithi170 bash[18738]: audit 2024-03-24T12:11:43.899433+0000 mon.smithi170 (mon.0) 172 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:11:45.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:44 smithi170 bash[18738]: audit 2024-03-24T12:11:43.911244+0000 mon.smithi170 (mon.0) 173 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi170.xkyvyq/mirror_snapshot_schedule"}]: dispatch 2024-03-24T12:11:45.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:44 smithi170 bash[18738]: audit 2024-03-24T12:11:43.917898+0000 mon.smithi170 (mon.0) 174 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi170.xkyvyq/trash_purge_schedule"}]: dispatch 2024-03-24T12:11:45.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:44 smithi170 bash[18738]: cephadm 2024-03-24T12:11:44.505786+0000 mgr.smithi170.xkyvyq (mgr.14199) 1 : cephadm 1 [24/Mar/2024:12:11:44] ENGINE Bus STARTING 2024-03-24T12:11:45.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:44 smithi170 bash[18738]: audit 2024-03-24T12:11:44.754253+0000 mon.smithi170 (mon.0) 175 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:45.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:44 smithi170 bash[18738]: cluster 2024-03-24T12:11:44.817840+0000 mon.smithi170 (mon.0) 176 : cluster 0 mgrmap e16: smithi170.xkyvyq(active, since 1.01204s) 2024-03-24T12:11:46.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:45 smithi170 bash[18738]: cephadm 2024-03-24T12:11:44.607995+0000 mgr.smithi170.xkyvyq (mgr.14199) 2 : cephadm 1 [24/Mar/2024:12:11:44] ENGINE Serving on http://172.21.15.170:8765 2024-03-24T12:11:46.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:45 smithi170 bash[18738]: cephadm 2024-03-24T12:11:44.725438+0000 mgr.smithi170.xkyvyq (mgr.14199) 3 : cephadm 1 [24/Mar/2024:12:11:44] ENGINE Serving on https://172.21.15.170:7150 2024-03-24T12:11:46.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:45 smithi170 bash[18738]: cephadm 2024-03-24T12:11:44.725531+0000 mgr.smithi170.xkyvyq (mgr.14199) 4 : cephadm 1 [24/Mar/2024:12:11:44] ENGINE Bus STARTED 2024-03-24T12:11:46.511 INFO:teuthology.orchestra.run.smithi172.stdout: 2024-03-24T12:11:46.511 INFO:teuthology.orchestra.run.smithi172.stdout:{"epoch":1,"fsid":"158785cc-e9d7-11ee-95cd-87774f69a715","modified":"2024-03-24T12:08:50.117688Z","created":"2024-03-24T12:08:50.117688Z","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":"smithi170","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:3300","nonce":0},{"type":"v1","addr":"172.21.15.170:6789","nonce":0}]},"addr":"172.21.15.170:6789/0","public_addr":"172.21.15.170:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-03-24T12:11:46.514 INFO:teuthology.orchestra.run.smithi172.stderr:dumped monmap epoch 1 2024-03-24T12:11:47.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:46 smithi170 bash[18738]: cluster 2024-03-24T12:11:45.870504+0000 mon.smithi170 (mon.0) 177 : cluster 0 mgrmap e17: smithi170.xkyvyq(active, since 2s) 2024-03-24T12:11:47.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:46 smithi170 bash[18738]: audit 2024-03-24T12:11:46.513151+0000 mon.smithi170 (mon.0) 178 : audit 0 from='client.? 172.21.15.172:0/1429318038' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-24T12:11:47.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:46 smithi170 bash[18738]: audit 2024-03-24T12:11:46.578790+0000 mon.smithi170 (mon.0) 179 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:48.000 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-03-24T12:11:48.000 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph mon dump -f json 2024-03-24T12:11:48.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:48 smithi170 bash[18738]: audit 2024-03-24T12:11:47.671006+0000 mon.smithi170 (mon.0) 180 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:49.188 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /etc/ceph/ceph.conf 2024-03-24T12:11:50.230 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /etc/ceph/ceph.conf 2024-03-24T12:11:51.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:51 smithi170 bash[18738]: audit 2024-03-24T12:11:50.129207+0000 mon.smithi170 (mon.0) 181 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:51.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:51 smithi170 bash[18738]: audit 2024-03-24T12:11:50.132832+0000 mon.smithi170 (mon.0) 182 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:52.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:52 smithi170 bash[18738]: audit 2024-03-24T12:11:51.187508+0000 mon.smithi170 (mon.0) 183 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:52.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:52 smithi170 bash[18738]: audit 2024-03-24T12:11:51.194004+0000 mon.smithi170 (mon.0) 184 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:52.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:52 smithi170 bash[18738]: audit 2024-03-24T12:11:51.195700+0000 mon.smithi170 (mon.0) 185 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd/host:smithi170", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:11:52.814 INFO:teuthology.orchestra.run.smithi172.stdout: 2024-03-24T12:11:52.814 INFO:teuthology.orchestra.run.smithi172.stdout:{"epoch":1,"fsid":"158785cc-e9d7-11ee-95cd-87774f69a715","modified":"2024-03-24T12:08:50.117688Z","created":"2024-03-24T12:08:50.117688Z","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":"smithi170","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:3300","nonce":0},{"type":"v1","addr":"172.21.15.170:6789","nonce":0}]},"addr":"172.21.15.170:6789/0","public_addr":"172.21.15.170:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-03-24T12:11:52.816 INFO:teuthology.orchestra.run.smithi172.stderr:dumped monmap epoch 1 2024-03-24T12:11:53.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:53 smithi170 bash[18738]: audit 2024-03-24T12:11:52.815912+0000 mon.smithi170 (mon.0) 186 : audit 0 from='client.? 172.21.15.172:0/3034398010' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-24T12:11:53.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:53 smithi170 bash[18738]: audit 2024-03-24T12:11:53.125126+0000 mon.smithi170 (mon.0) 187 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:53.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:53 smithi170 bash[18738]: audit 2024-03-24T12:11:53.130737+0000 mon.smithi170 (mon.0) 188 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:53.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:53 smithi170 bash[18738]: audit 2024-03-24T12:11:53.138439+0000 mon.smithi170 (mon.0) 189 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:53.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:53 smithi170 bash[18738]: audit 2024-03-24T12:11:53.143914+0000 mon.smithi170 (mon.0) 190 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:53.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:53 smithi170 bash[18738]: audit 2024-03-24T12:11:53.145461+0000 mon.smithi170 (mon.0) 191 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd/host:smithi172", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:11:53.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:53 smithi170 bash[18738]: audit 2024-03-24T12:11:53.147443+0000 mon.smithi170 (mon.0) 192 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:11:53.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:53 smithi170 bash[18738]: audit 2024-03-24T12:11:53.149196+0000 mon.smithi170 (mon.0) 193 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:11:54.403 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-03-24T12:11:54.403 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph mon dump -f json 2024-03-24T12:11:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:54 smithi170 bash[18738]: cephadm 2024-03-24T12:11:53.152039+0000 mgr.smithi170.xkyvyq (mgr.14199) 5 : cephadm 1 Updating smithi170:/etc/ceph/ceph.conf 2024-03-24T12:11:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:54 smithi170 bash[18738]: cephadm 2024-03-24T12:11:53.152548+0000 mgr.smithi170.xkyvyq (mgr.14199) 6 : cephadm 1 Updating smithi172:/etc/ceph/ceph.conf 2024-03-24T12:11:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:54 smithi170 bash[18738]: cephadm 2024-03-24T12:11:53.419102+0000 mgr.smithi170.xkyvyq (mgr.14199) 7 : cephadm 1 Updating smithi170:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.conf 2024-03-24T12:11:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:54 smithi170 bash[18738]: cephadm 2024-03-24T12:11:53.420026+0000 mgr.smithi170.xkyvyq (mgr.14199) 8 : cephadm 1 Updating smithi172:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.conf 2024-03-24T12:11:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:54 smithi170 bash[18738]: audit 2024-03-24T12:11:53.918871+0000 mon.smithi170 (mon.0) 194 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:54 smithi170 bash[18738]: audit 2024-03-24T12:11:53.921983+0000 mon.smithi170 (mon.0) 195 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:54 smithi170 bash[18738]: audit 2024-03-24T12:11:53.927779+0000 mon.smithi170 (mon.0) 196 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:54 smithi170 bash[18738]: audit 2024-03-24T12:11:53.932908+0000 mon.smithi170 (mon.0) 197 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:54 smithi170 bash[18738]: audit 2024-03-24T12:11:53.939615+0000 mon.smithi170 (mon.0) 198 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:54 smithi170 bash[18738]: audit 2024-03-24T12:11:53.942607+0000 mon.smithi170 (mon.0) 199 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi172", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-24T12:11:54.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:54 smithi170 bash[18738]: audit 2024-03-24T12:11:53.944202+0000 mon.smithi170 (mon.0) 200 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi172", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-03-24T12:11:54.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:54 smithi170 bash[18738]: audit 2024-03-24T12:11:53.948358+0000 mon.smithi170 (mon.0) 201 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:11:55.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: cephadm 2024-03-24T12:11:53.583686+0000 mgr.smithi170.xkyvyq (mgr.14199) 9 : cephadm 1 Updating smithi170:/etc/ceph/ceph.client.admin.keyring 2024-03-24T12:11:55.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: cephadm 2024-03-24T12:11:53.584837+0000 mgr.smithi170.xkyvyq (mgr.14199) 10 : cephadm 1 Updating smithi172:/etc/ceph/ceph.client.admin.keyring 2024-03-24T12:11:55.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: cephadm 2024-03-24T12:11:53.748480+0000 mgr.smithi170.xkyvyq (mgr.14199) 11 : cephadm 1 Updating smithi170:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.client.admin.keyring 2024-03-24T12:11:55.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: cephadm 2024-03-24T12:11:53.750485+0000 mgr.smithi170.xkyvyq (mgr.14199) 12 : cephadm 1 Updating smithi172:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.client.admin.keyring 2024-03-24T12:11:55.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: cephadm 2024-03-24T12:11:53.950309+0000 mgr.smithi170.xkyvyq (mgr.14199) 13 : cephadm 1 Deploying daemon ceph-exporter.smithi172 on smithi172 2024-03-24T12:11:55.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: cephadm 2024-03-24T12:11:54.379212+0000 mgr.smithi170.xkyvyq (mgr.14199) 14 : cephadm 1 Removing key for client.ceph-exporter.smithi172 2024-03-24T12:11:55.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: audit 2024-03-24T12:11:54.379852+0000 mon.smithi170 (mon.0) 202 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.ceph-exporter.smithi172"}]: dispatch 2024-03-24T12:11:55.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: audit 2024-03-24T12:11:54.381409+0000 mon.smithi170 (mon.0) 203 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth rm", "entity": "client.ceph-exporter.smithi172"}]': finished 2024-03-24T12:11:55.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: cephadm 2024-03-24T12:11:54.415229+0000 mgr.smithi170.xkyvyq (mgr.14199) 15 : cephadm 4 Failed while placing ceph-exporter.smithi172 on smithi172: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172 2024-03-24T12:11:55.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: /usr/bin/docker: stdout 2024-03-24T12:11:55.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172 2024-03-24T12:11:55.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172 2024-03-24T12:11:55.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: /usr/bin/docker: stdout 2024-03-24T12:11:55.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172 2024-03-24T12:11:55.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: Deploy daemon ceph-exporter.smithi172 ... 2024-03-24T12:11:55.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: ERROR: Directory does not exist. Got: /var/run/ceph/ 2024-03-24T12:11:55.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: audit 2024-03-24T12:11:54.418896+0000 mon.smithi170 (mon.0) 204 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi172", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-24T12:11:55.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: audit 2024-03-24T12:11:54.420438+0000 mon.smithi170 (mon.0) 205 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi172", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-03-24T12:11:55.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: audit 2024-03-24T12:11:54.425031+0000 mon.smithi170 (mon.0) 206 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:11:55.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:55 smithi170 bash[18738]: cephadm 2024-03-24T12:11:54.427111+0000 mgr.smithi170.xkyvyq (mgr.14199) 16 : cephadm 1 Deploying daemon crash.smithi172 on smithi172 2024-03-24T12:11:55.584 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.conf 2024-03-24T12:11:59.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:58 smithi170 bash[18738]: audit 2024-03-24T12:11:57.731130+0000 mon.smithi170 (mon.0) 207 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:59.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:58 smithi170 bash[18738]: audit 2024-03-24T12:11:57.737295+0000 mon.smithi170 (mon.0) 208 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:59.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:58 smithi170 bash[18738]: audit 2024-03-24T12:11:57.755249+0000 mon.smithi170 (mon.0) 209 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:59.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:58 smithi170 bash[18738]: audit 2024-03-24T12:11:57.760731+0000 mon.smithi170 (mon.0) 210 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:11:59.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:58 smithi170 bash[18738]: cephadm 2024-03-24T12:11:57.764193+0000 mgr.smithi170.xkyvyq (mgr.14199) 17 : cephadm 1 Deploying daemon node-exporter.smithi172 on smithi172 2024-03-24T12:11:59.237 INFO:teuthology.orchestra.run.smithi172.stdout: 2024-03-24T12:11:59.238 INFO:teuthology.orchestra.run.smithi172.stdout:{"epoch":1,"fsid":"158785cc-e9d7-11ee-95cd-87774f69a715","modified":"2024-03-24T12:08:50.117688Z","created":"2024-03-24T12:08:50.117688Z","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":"smithi170","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:3300","nonce":0},{"type":"v1","addr":"172.21.15.170:6789","nonce":0}]},"addr":"172.21.15.170:6789/0","public_addr":"172.21.15.170:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-03-24T12:11:59.240 INFO:teuthology.orchestra.run.smithi172.stderr:dumped monmap epoch 1 2024-03-24T12:12:00.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:59 smithi170 bash[18738]: audit 2024-03-24T12:11:58.816704+0000 mon.smithi170 (mon.0) 211 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:00.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:59 smithi170 bash[18738]: audit 2024-03-24T12:11:58.822962+0000 mon.smithi170 (mon.0) 212 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:00.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:59 smithi170 bash[18738]: audit 2024-03-24T12:11:58.836352+0000 mon.smithi170 (mon.0) 213 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:00.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:59 smithi170 bash[18738]: audit 2024-03-24T12:11:58.841965+0000 mon.smithi170 (mon.0) 214 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:00.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:59 smithi170 bash[18738]: audit 2024-03-24T12:11:58.846855+0000 mon.smithi170 (mon.0) 215 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi172.uznkeq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-24T12:12:00.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:59 smithi170 bash[18738]: audit 2024-03-24T12:11:58.848492+0000 mon.smithi170 (mon.0) 216 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi172.uznkeq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-03-24T12:12:00.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:59 smithi170 bash[18738]: audit 2024-03-24T12:11:58.852961+0000 mon.smithi170 (mon.0) 217 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-24T12:12:00.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:59 smithi170 bash[18738]: audit 2024-03-24T12:11:58.855039+0000 mon.smithi170 (mon.0) 218 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:00.222 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:59 smithi170 bash[18738]: cephadm 2024-03-24T12:11:58.856916+0000 mgr.smithi170.xkyvyq (mgr.14199) 18 : cephadm 1 Deploying daemon mgr.smithi172.uznkeq on smithi172 2024-03-24T12:12:00.222 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:59 smithi170 bash[18738]: audit 2024-03-24T12:11:58.899833+0000 mon.smithi170 (mon.0) 219 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:00.222 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:59 smithi170 bash[18738]: audit 2024-03-24T12:11:58.900805+0000 mon.smithi170 (mon.0) 220 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:12:00.222 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:11:59 smithi170 bash[18738]: audit 2024-03-24T12:11:59.239865+0000 mon.smithi170 (mon.0) 221 : audit 0 from='client.? 172.21.15.172:0/3614880281' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-24T12:12:01.261 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-03-24T12:12:01.262 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph mon dump -f json 2024-03-24T12:12:02.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:02 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:12:03.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:03 smithi170 bash[18738]: audit 2024-03-24T12:12:02.026274+0000 mon.smithi170 (mon.0) 222 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:03.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:03 smithi170 bash[18738]: audit 2024-03-24T12:12:02.032613+0000 mon.smithi170 (mon.0) 223 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:03.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:03 smithi170 bash[18738]: audit 2024-03-24T12:12:02.038789+0000 mon.smithi170 (mon.0) 224 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:03.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:03 smithi170 bash[18738]: audit 2024-03-24T12:12:02.044422+0000 mon.smithi170 (mon.0) 225 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:03.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:03 smithi170 bash[18738]: audit 2024-03-24T12:12:02.048199+0000 mon.smithi170 (mon.0) 226 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-24T12:12:03.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:03 smithi170 bash[18738]: audit 2024-03-24T12:12:02.049908+0000 mon.smithi170 (mon.0) 227 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:03.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:03 smithi170 bash[18738]: cephadm 2024-03-24T12:12:02.051939+0000 mgr.smithi170.xkyvyq (mgr.14199) 19 : cephadm 1 Deploying daemon mon.smithi172 on smithi172 2024-03-24T12:12:05.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:04 smithi170 bash[18738]: audit 2024-03-24T12:12:03.907050+0000 mon.smithi170 (mon.0) 228 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:05.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:04 smithi170 bash[18738]: cluster 2024-03-24T12:12:04.417157+0000 mgr.smithi170.xkyvyq (mgr.14199) 20 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:05.883 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:05 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:12:05.883 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:05 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:12:05.883 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:05 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:12:05.883 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:05 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:12:05.970 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi172/config 2024-03-24T12:12:06.167 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:05 smithi172 systemd[1]: Started Ceph mon.smithi172 for 158785cc-e9d7-11ee-95cd-87774f69a715. 2024-03-24T12:12:06.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:05 smithi170 bash[18738]: cluster 2024-03-24T12:12:04.903521+0000 mon.smithi170 (mon.0) 229 : cluster 3 Health check failed: Failed to place 1 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-03-24T12:12:07.168 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.955+0000 7f4a51689c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-03-24T12:12:07.168 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.955+0000 7f4a51689c80 0 ceph version 19.0.0-1667-gdb0330b1 (db0330b1e4e2470d52b750e251e55a522b4f7d69) squid (dev), process ceph-mon, pid 7 2024-03-24T12:12:07.168 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.955+0000 7f4a51689c80 0 pidfile_write: ignore empty --pid-file 2024-03-24T12:12:07.168 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 0 load: jerasure load: lrc 2024-03-24T12:12:07.168 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: RocksDB version: 7.9.2 2024-03-24T12:12:07.168 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Git sha 0 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Compile date 2024-03-16 10:36:11 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: DB SUMMARY 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: DB Session ID: SH47MKCA85LGNC2G0CTT 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: CURRENT file: CURRENT 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: IDENTITY file: IDENTITY 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi172/store.db dir, Total Num: 0, files: 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi172/store.db: 000004.log size: 511 ; 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.error_if_exists: 0 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.create_if_missing: 0 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.paranoid_checks: 1 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-03-24T12:12:07.169 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-03-24T12:12:07.170 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-03-24T12:12:07.170 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.env: 0x5556309a2ae0 2024-03-24T12:12:07.170 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.fs: PosixFileSystem 2024-03-24T12:12:07.170 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.info_log: 0x555632ae97a0 2024-03-24T12:12:07.170 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-03-24T12:12:07.170 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.statistics: (nil) 2024-03-24T12:12:07.170 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.use_fsync: 0 2024-03-24T12:12:07.170 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_log_file_size: 0 2024-03-24T12:12:07.170 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-03-24T12:12:07.170 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-03-24T12:12:07.170 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-03-24T12:12:07.170 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-03-24T12:12:07.171 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.allow_fallocate: 1 2024-03-24T12:12:07.171 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-03-24T12:12:07.171 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-03-24T12:12:07.171 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.use_direct_reads: 0 2024-03-24T12:12:07.171 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-03-24T12:12:07.171 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.create_missing_column_families: 0 2024-03-24T12:12:07.171 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.db_log_dir: 2024-03-24T12:12:07.171 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.wal_dir: 2024-03-24T12:12:07.171 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-03-24T12:12:07.171 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-03-24T12:12:07.171 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-03-24T12:12:07.172 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-03-24T12:12:07.172 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-03-24T12:12:07.172 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-03-24T12:12:07.172 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.advise_random_on_open: 1 2024-03-24T12:12:07.172 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-03-24T12:12:07.172 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.write_buffer_manager: 0x555632abd400 2024-03-24T12:12:07.172 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-03-24T12:12:07.172 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-03-24T12:12:07.172 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-03-24T12:12:07.173 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.rate_limiter: (nil) 2024-03-24T12:12:07.173 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-03-24T12:12:07.173 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-03-24T12:12:07.175 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-03-24T12:12:07.175 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-03-24T12:12:07.176 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.unordered_write: 0 2024-03-24T12:12:07.176 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-03-24T12:12:07.176 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-03-24T12:12:07.176 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-03-24T12:12:07.176 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-03-24T12:12:07.176 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.row_cache: None 2024-03-24T12:12:07.176 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.wal_filter: None 2024-03-24T12:12:07.176 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-03-24T12:12:07.176 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-03-24T12:12:07.176 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.two_write_queues: 0 2024-03-24T12:12:07.176 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.manual_wal_flush: 0 2024-03-24T12:12:07.177 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.wal_compression: 0 2024-03-24T12:12:07.177 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.atomic_flush: 0 2024-03-24T12:12:07.177 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-03-24T12:12:07.177 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-03-24T12:12:07.177 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-03-24T12:12:07.177 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.log_readahead_size: 0 2024-03-24T12:12:07.177 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-03-24T12:12:07.177 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-03-24T12:12:07.177 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-03-24T12:12:07.177 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-03-24T12:12:07.178 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-03-24T12:12:07.178 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-03-24T12:12:07.178 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-03-24T12:12:07.178 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_background_jobs: 2 2024-03-24T12:12:07.178 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_background_compactions: -1 2024-03-24T12:12:07.178 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_subcompactions: 1 2024-03-24T12:12:07.178 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-03-24T12:12:07.178 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-03-24T12:12:07.178 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-03-24T12:12:07.178 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_total_wal_size: 0 2024-03-24T12:12:07.178 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-03-24T12:12:07.178 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_open_files: -1 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bytes_per_sync: 0 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_background_flushes: -1 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Compression algorithms supported: 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: kZSTD supported: 0 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: kXpressCompression supported: 0 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-03-24T12:12:07.179 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: kZlibCompression supported: 1 2024-03-24T12:12:07.180 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: kSnappyCompression supported: 1 2024-03-24T12:12:07.180 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: kLZ4Compression supported: 1 2024-03-24T12:12:07.180 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: kBZip2Compression supported: 0 2024-03-24T12:12:07.180 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-03-24T12:12:07.180 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-03-24T12:12:07.180 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi172/store.db/MANIFEST-000005 2024-03-24T12:12:07.180 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-03-24T12:12:07.180 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-03-24T12:12:07.180 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.merge_operator: 2024-03-24T12:12:07.180 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_filter: None 2024-03-24T12:12:07.180 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_filter_factory: None 2024-03-24T12:12:07.180 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x555632ae98c0) 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cache_index_and_filter_blocks: 1 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cache_index_and_filter_blocks_with_high_priority: 0 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: pin_top_level_index_and_filter: 1 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: index_type: 0 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: data_block_index_type: 0 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: index_shortening: 1 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: data_block_hash_table_util_ratio: 0.750000 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: checksum: 4 2024-03-24T12:12:07.181 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: no_block_cache: 0 2024-03-24T12:12:07.182 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: block_cache: 0x555632aeb090 2024-03-24T12:12:07.182 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: block_cache_name: BinnedLRUCache 2024-03-24T12:12:07.182 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: block_cache_options: 2024-03-24T12:12:07.182 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: capacity : 536870912 2024-03-24T12:12:07.182 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: num_shard_bits : 4 2024-03-24T12:12:07.182 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: strict_capacity_limit : 0 2024-03-24T12:12:07.182 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: high_pri_pool_ratio: 0.000 2024-03-24T12:12:07.182 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: block_cache_compressed: (nil) 2024-03-24T12:12:07.182 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: persistent_cache: (nil) 2024-03-24T12:12:07.182 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: block_size: 4096 2024-03-24T12:12:07.183 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: block_size_deviation: 10 2024-03-24T12:12:07.183 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: block_restart_interval: 16 2024-03-24T12:12:07.183 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: index_block_restart_interval: 1 2024-03-24T12:12:07.183 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: metadata_block_size: 4096 2024-03-24T12:12:07.183 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: partition_filters: 0 2024-03-24T12:12:07.183 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: use_delta_encoding: 1 2024-03-24T12:12:07.183 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: filter_policy: bloomfilter 2024-03-24T12:12:07.184 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: whole_key_filtering: 1 2024-03-24T12:12:07.184 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: verify_compression: 0 2024-03-24T12:12:07.184 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: read_amp_bytes_per_bit: 0 2024-03-24T12:12:07.184 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: format_version: 5 2024-03-24T12:12:07.184 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: enable_index_compression: 1 2024-03-24T12:12:07.184 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: block_align: 0 2024-03-24T12:12:07.184 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: max_auto_readahead_size: 262144 2024-03-24T12:12:07.184 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: prepopulate_block_cache: 0 2024-03-24T12:12:07.184 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: initial_auto_readahead_size: 8192 2024-03-24T12:12:07.184 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: num_file_reads_for_auto_readahead: 2 2024-03-24T12:12:07.184 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-03-24T12:12:07.184 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-03-24T12:12:07.185 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compression: NoCompression 2024-03-24T12:12:07.185 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-03-24T12:12:07.185 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-03-24T12:12:07.185 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-03-24T12:12:07.185 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.num_levels: 7 2024-03-24T12:12:07.185 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-03-24T12:12:07.185 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-03-24T12:12:07.185 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-03-24T12:12:07.185 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-03-24T12:12:07.185 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-03-24T12:12:07.186 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-03-24T12:12:07.186 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-03-24T12:12:07.186 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-03-24T12:12:07.186 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-03-24T12:12:07.186 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-03-24T12:12:07.186 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-03-24T12:12:07.186 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-03-24T12:12:07.186 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compression_opts.level: 32767 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compression_opts.enabled: false 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-03-24T12:12:07.187 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-03-24T12:12:07.188 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-03-24T12:12:07.188 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-03-24T12:12:07.188 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-03-24T12:12:07.188 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-03-24T12:12:07.188 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-03-24T12:12:07.188 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-03-24T12:12:07.188 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-03-24T12:12:07.188 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-03-24T12:12:07.188 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-03-24T12:12:07.188 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-03-24T12:12:07.188 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-03-24T12:12:07.189 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-03-24T12:12:07.189 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-03-24T12:12:07.189 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.arena_block_size: 1048576 2024-03-24T12:12:07.189 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-03-24T12:12:07.189 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-03-24T12:12:07.189 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-03-24T12:12:07.189 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-03-24T12:12:07.189 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-03-24T12:12:07.189 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-03-24T12:12:07.189 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-03-24T12:12:07.189 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-03-24T12:12:07.189 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-03-24T12:12:07.190 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-03-24T12:12:07.190 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-03-24T12:12:07.190 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-03-24T12:12:07.190 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-03-24T12:12:07.190 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.table_properties_collectors: 2024-03-24T12:12:07.190 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.inplace_update_support: 0 2024-03-24T12:12:07.190 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-03-24T12:12:07.190 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-03-24T12:12:07.190 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-03-24T12:12:07.190 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-03-24T12:12:07.190 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.bloom_locality: 0 2024-03-24T12:12:07.190 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.max_successive_merges: 0 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.force_consistency_checks: 1 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.ttl: 2592000 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.enable_blob_files: false 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.min_blob_size: 0 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.blob_file_size: 268435456 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-03-24T12:12:07.191 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-03-24T12:12:07.192 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-03-24T12:12:07.192 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-03-24T12:12:07.192 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-03-24T12:12:07.192 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-03-24T12:12:07.192 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi172/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-03-24T12:12:07.192 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-03-24T12:12:07.192 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 5f32c44a-ad95-43e2-a0aa-210771a0d96a 2024-03-24T12:12:07.192 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1711282326966035, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-03-24T12:12:07.192 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-03-24T12:12:07.192 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1711282326966477, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1622, "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": "[]", "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": 1711282326, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "5f32c44a-ad95-43e2-a0aa-210771a0d96a", "db_session_id": "SH47MKCA85LGNC2G0CTT", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-03-24T12:12:07.192 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1711282326966574, "job": 1, "event": "recovery_finished"} 2024-03-24T12:12:07.192 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.959+0000 7f4a51689c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-03-24T12:12:07.193 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.963+0000 7f4a51689c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi172/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-03-24T12:12:07.193 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.963+0000 7f4a51689c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x555632bde000 2024-03-24T12:12:07.193 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.963+0000 7f4a51689c80 4 rocksdb: DB pointer 0x555632bca000 2024-03-24T12:12:07.193 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.963+0000 7f4a3fdf9700 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-03-24T12:12:07.193 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.963+0000 7f4a3fdf9700 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-03-24T12:12:07.193 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: ** DB Stats ** 2024-03-24T12:12:07.193 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Uptime(secs): 0.0 total, 0.0 interval 2024-03-24T12:12:07.193 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-03-24T12:12:07.193 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-03-24T12:12:07.193 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-24T12:12:07.193 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-03-24T12:12:07.193 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-03-24T12:12:07.194 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-03-24T12:12:07.194 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: ** Compaction Stats [default] ** 2024-03-24T12:12:07.194 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: 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-03-24T12:12:07.194 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-03-24T12:12:07.194 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: L0 1/0 1.58 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.6 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-03-24T12:12:07.194 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Sum 1/0 1.58 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.6 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-03-24T12:12:07.194 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.6 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-03-24T12:12:07.194 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: ** Compaction Stats [default] ** 2024-03-24T12:12:07.194 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: 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-03-24T12:12:07.194 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-03-24T12:12:07.194 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.6 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-03-24T12:12:07.194 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Uptime(secs): 0.0 total, 0.0 interval 2024-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Flush(GB): cumulative 0.000, interval 0.000 2024-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: AddFile(GB): cumulative 0.000, interval 0.000 2024-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: AddFile(Total Files): cumulative 0, interval 0 2024-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: AddFile(L0 Files): cumulative 0, interval 0 2024-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: AddFile(Keys): cumulative 0, interval 0 2024-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Cumulative compaction: 0.00 GB write, 0.58 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Interval compaction: 0.00 GB write, 0.58 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: 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-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Block cache BinnedLRUCache@0x555632aeb090#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: 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-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: ** File Read Latency Histogram By Level [default] ** 2024-03-24T12:12:07.195 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.963+0000 7f4a51689c80 0 mon.smithi172 does not exist in monmap, will attempt to join an existing cluster 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.963+0000 7f4a51689c80 0 using public_addr v2:172.21.15.172:0/0 -> [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.963+0000 7f4a51689c80 0 starting mon.smithi172 rank -1 at public addrs [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] at bind addrs [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi172 fsid 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.963+0000 7f4a51689c80 1 mon.smithi172@-1(???) e0 preinit fsid 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 0 mon.smithi172@-1(synchronizing).mds e1 new map 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 0 mon.smithi172@-1(synchronizing).mds e1 print_map 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: e1 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: enable_multiple, ever_enabled_multiple: 1,1 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: 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} 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: legacy client fscid: -1 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: No filesystems configured 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 1 mon.smithi172@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 1 mon.smithi172@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 1 mon.smithi172@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-03-24T12:12:07.196 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 1 mon.smithi172@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-03-24T12:12:07.197 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 1 mon.smithi172@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-03-24T12:12:07.197 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 1 mon.smithi172@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-03-24T12:12:07.197 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 1 mon.smithi172@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-03-24T12:12:07.197 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 0 mon.smithi172@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-03-24T12:12:07.197 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 0 mon.smithi172@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-03-24T12:12:07.197 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 0 mon.smithi172@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-03-24T12:12:07.197 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.987+0000 7f4a42dff700 0 mon.smithi172@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-03-24T12:12:07.197 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:52.815912+0000 mon.smithi170 (mon.0) 186 : audit 0 from='client.? 172.21.15.172:0/3034398010' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-24T12:12:07.197 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.125126+0000 mon.smithi170 (mon.0) 187 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.197 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.130737+0000 mon.smithi170 (mon.0) 188 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.138439+0000 mon.smithi170 (mon.0) 189 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.143914+0000 mon.smithi170 (mon.0) 190 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.145461+0000 mon.smithi170 (mon.0) 191 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd/host:smithi172", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.147443+0000 mon.smithi170 (mon.0) 192 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.149196+0000 mon.smithi170 (mon.0) 193 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:53.152039+0000 mgr.smithi170.xkyvyq (mgr.14199) 5 : cephadm 1 Updating smithi170:/etc/ceph/ceph.conf 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:53.152548+0000 mgr.smithi170.xkyvyq (mgr.14199) 6 : cephadm 1 Updating smithi172:/etc/ceph/ceph.conf 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:53.419102+0000 mgr.smithi170.xkyvyq (mgr.14199) 7 : cephadm 1 Updating smithi170:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.conf 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:53.420026+0000 mgr.smithi170.xkyvyq (mgr.14199) 8 : cephadm 1 Updating smithi172:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.conf 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.918871+0000 mon.smithi170 (mon.0) 194 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.921983+0000 mon.smithi170 (mon.0) 195 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.927779+0000 mon.smithi170 (mon.0) 196 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.198 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.932908+0000 mon.smithi170 (mon.0) 197 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.199 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.939615+0000 mon.smithi170 (mon.0) 198 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.199 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.942607+0000 mon.smithi170 (mon.0) 199 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi172", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-24T12:12:07.199 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.944202+0000 mon.smithi170 (mon.0) 200 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi172", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-03-24T12:12:07.199 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:53.948358+0000 mon.smithi170 (mon.0) 201 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:07.199 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:53.583686+0000 mgr.smithi170.xkyvyq (mgr.14199) 9 : cephadm 1 Updating smithi170:/etc/ceph/ceph.client.admin.keyring 2024-03-24T12:12:07.199 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:53.584837+0000 mgr.smithi170.xkyvyq (mgr.14199) 10 : cephadm 1 Updating smithi172:/etc/ceph/ceph.client.admin.keyring 2024-03-24T12:12:07.199 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:53.748480+0000 mgr.smithi170.xkyvyq (mgr.14199) 11 : cephadm 1 Updating smithi170:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.client.admin.keyring 2024-03-24T12:12:07.199 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:53.750485+0000 mgr.smithi170.xkyvyq (mgr.14199) 12 : cephadm 1 Updating smithi172:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.client.admin.keyring 2024-03-24T12:12:07.199 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:53.950309+0000 mgr.smithi170.xkyvyq (mgr.14199) 13 : cephadm 1 Deploying daemon ceph-exporter.smithi172 on smithi172 2024-03-24T12:12:07.199 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:54.379212+0000 mgr.smithi170.xkyvyq (mgr.14199) 14 : cephadm 1 Removing key for client.ceph-exporter.smithi172 2024-03-24T12:12:07.199 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:54.379852+0000 mon.smithi170 (mon.0) 202 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.ceph-exporter.smithi172"}]: dispatch 2024-03-24T12:12:07.199 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:54.381409+0000 mon.smithi170 (mon.0) 203 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth rm", "entity": "client.ceph-exporter.smithi172"}]': finished 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:54.415229+0000 mgr.smithi170.xkyvyq (mgr.14199) 15 : cephadm 4 Failed while placing ceph-exporter.smithi172 on smithi172: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: /usr/bin/docker: stdout 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: /usr/bin/docker: stdout 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: /usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: Deploy daemon ceph-exporter.smithi172 ... 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: ERROR: Directory does not exist. Got: /var/run/ceph/ 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:54.418896+0000 mon.smithi170 (mon.0) 204 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi172", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:54.420438+0000 mon.smithi170 (mon.0) 205 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi172", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:54.425031+0000 mon.smithi170 (mon.0) 206 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:54.427111+0000 mgr.smithi170.xkyvyq (mgr.14199) 16 : cephadm 1 Deploying daemon crash.smithi172 on smithi172 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:57.731130+0000 mon.smithi170 (mon.0) 207 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.200 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:57.737295+0000 mon.smithi170 (mon.0) 208 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.201 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:57.755249+0000 mon.smithi170 (mon.0) 209 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.201 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:57.760731+0000 mon.smithi170 (mon.0) 210 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.201 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:57.764193+0000 mgr.smithi170.xkyvyq (mgr.14199) 17 : cephadm 1 Deploying daemon node-exporter.smithi172 on smithi172 2024-03-24T12:12:07.201 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:58.816704+0000 mon.smithi170 (mon.0) 211 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.201 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:58.822962+0000 mon.smithi170 (mon.0) 212 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.201 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:58.836352+0000 mon.smithi170 (mon.0) 213 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.201 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:58.841965+0000 mon.smithi170 (mon.0) 214 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.201 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:58.846855+0000 mon.smithi170 (mon.0) 215 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi172.uznkeq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-24T12:12:07.201 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:58.848492+0000 mon.smithi170 (mon.0) 216 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi172.uznkeq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-03-24T12:12:07.202 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:58.852961+0000 mon.smithi170 (mon.0) 217 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-24T12:12:07.202 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:58.855039+0000 mon.smithi170 (mon.0) 218 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:07.202 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:11:58.856916+0000 mgr.smithi170.xkyvyq (mgr.14199) 18 : cephadm 1 Deploying daemon mgr.smithi172.uznkeq on smithi172 2024-03-24T12:12:07.202 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:58.899833+0000 mon.smithi170 (mon.0) 219 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.202 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:58.900805+0000 mon.smithi170 (mon.0) 220 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:12:07.202 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:11:59.239865+0000 mon.smithi170 (mon.0) 221 : audit 0 from='client.? 172.21.15.172:0/3614880281' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-24T12:12:07.202 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:02.026274+0000 mon.smithi170 (mon.0) 222 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.202 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:02.032613+0000 mon.smithi170 (mon.0) 223 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.202 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:02.038789+0000 mon.smithi170 (mon.0) 224 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.202 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:02.044422+0000 mon.smithi170 (mon.0) 225 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.202 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:02.048199+0000 mon.smithi170 (mon.0) 226 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-24T12:12:07.202 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:02.049908+0000 mon.smithi170 (mon.0) 227 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:07.203 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cephadm 2024-03-24T12:12:02.051939+0000 mgr.smithi170.xkyvyq (mgr.14199) 19 : cephadm 1 Deploying daemon mon.smithi172 on smithi172 2024-03-24T12:12:07.203 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:03.907050+0000 mon.smithi170 (mon.0) 228 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.203 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cluster 2024-03-24T12:12:04.417157+0000 mgr.smithi170.xkyvyq (mgr.14199) 20 : cluster 0 pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:07.203 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cluster 2024-03-24T12:12:04.903521+0000 mon.smithi170 (mon.0) 229 : cluster 3 Health check failed: Failed to place 1 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2024-03-24T12:12:07.203 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:05.930700+0000 mon.smithi170 (mon.0) 230 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.203 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:05.937253+0000 mon.smithi170 (mon.0) 231 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.203 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:05.982055+0000 mon.smithi170 (mon.0) 232 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.203 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:05.988081+0000 mon.smithi170 (mon.0) 233 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.203 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:05.997742+0000 mon.smithi170 (mon.0) 234 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.203 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: audit 2024-03-24T12:12:06.064402+0000 mon.smithi170 (mon.0) 235 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:12:07.204 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: cluster 2024-03-24T12:12:06.417641+0000 mgr.smithi170.xkyvyq (mgr.14199) 21 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:07.204 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:06 smithi172 bash[23876]: debug 2024-03-24T12:12:06.991+0000 7f4a42dff700 1 mon.smithi172@-1(synchronizing).paxosservice(auth 1..9) refresh upgraded, format 0 -> 3 2024-03-24T12:12:07.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:06 smithi170 bash[18738]: audit 2024-03-24T12:12:05.930700+0000 mon.smithi170 (mon.0) 230 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:06 smithi170 bash[18738]: audit 2024-03-24T12:12:05.937253+0000 mon.smithi170 (mon.0) 231 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:06 smithi170 bash[18738]: audit 2024-03-24T12:12:05.982055+0000 mon.smithi170 (mon.0) 232 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:06 smithi170 bash[18738]: audit 2024-03-24T12:12:05.988081+0000 mon.smithi170 (mon.0) 233 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:06 smithi170 bash[18738]: audit 2024-03-24T12:12:05.997742+0000 mon.smithi170 (mon.0) 234 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:07.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:06 smithi170 bash[18738]: audit 2024-03-24T12:12:06.064402+0000 mon.smithi170 (mon.0) 235 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:12:07.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:06 smithi170 bash[18738]: cluster 2024-03-24T12:12:06.417641+0000 mgr.smithi170.xkyvyq (mgr.14199) 21 : cluster 0 pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:12.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:07.001024+0000 mon.smithi170 (mon.0) 236 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:07.005752+0000 mon.smithi170 (mon.0) 237 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi170"}]: dispatch 2024-03-24T12:12:12.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:07.006079+0000 mon.smithi170 (mon.0) 238 : cluster 1 mon.smithi170 calling monitor election 2024-03-24T12:12:12.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:07.024877+0000 mon.smithi170 (mon.0) 239 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:08.001021+0000 mon.smithi170 (mon.0) 240 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:08.418103+0000 mgr.smithi170.xkyvyq (mgr.14199) 22 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:12.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:09.001113+0000 mon.smithi170 (mon.0) 241 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:09.001785+0000 mon.smithi172 (mon.1) 1 : cluster 1 mon.smithi172 calling monitor election 2024-03-24T12:12:12.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:10.000881+0000 mon.smithi170 (mon.0) 242 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:10.418585+0000 mgr.smithi170.xkyvyq (mgr.14199) 23 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:11.001336+0000 mon.smithi170 (mon.0) 243 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:11.639628+0000 mon.smithi170 (mon.0) 244 : audit 0 from='mgr.? 172.21.15.172:0/462575599' entity='mgr.smithi172.uznkeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi172.uznkeq/crt"}]: dispatch 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:12.001718+0000 mon.smithi170 (mon.0) 245 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.049787+0000 mon.smithi170 (mon.0) 246 : cluster 1 mon.smithi170 is new leader, mons smithi170,smithi172 in quorum (ranks 0,1) 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.056524+0000 mon.smithi170 (mon.0) 247 : cluster 0 monmap e2: 2 mons at {smithi170=[v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0],smithi172=[v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.057605+0000 mon.smithi170 (mon.0) 248 : cluster 0 fsmap 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.057694+0000 mon.smithi170 (mon.0) 249 : cluster 0 osdmap e5: 0 total, 0 up, 0 in 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.058032+0000 mon.smithi170 (mon.0) 250 : cluster 0 mgrmap e17: smithi170.xkyvyq(active, since 28s) 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.058388+0000 mon.smithi170 (mon.0) 251 : cluster 3 Health detail: HEALTH_WARN Failed to place 1 daemon(s) 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.058443+0000 mon.smithi170 (mon.0) 252 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s) 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.058478+0000 mon.smithi170 (mon.0) 253 : cluster 3 Failed while placing ceph-exporter.smithi172 on smithi172: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172 2024-03-24T12:12:12.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.058518+0000 mon.smithi170 (mon.0) 254 : cluster 3 /usr/bin/docker: stdout 2024-03-24T12:12:12.420 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.058564+0000 mon.smithi170 (mon.0) 255 : cluster 3 /usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172 2024-03-24T12:12:12.420 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.058606+0000 mon.smithi170 (mon.0) 256 : cluster 3 Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172 2024-03-24T12:12:12.420 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.058652+0000 mon.smithi170 (mon.0) 257 : cluster 3 /usr/bin/docker: stdout 2024-03-24T12:12:12.420 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.058695+0000 mon.smithi170 (mon.0) 258 : cluster 3 /usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172 2024-03-24T12:12:12.420 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.058737+0000 mon.smithi170 (mon.0) 259 : cluster 3 Deploy daemon ceph-exporter.smithi172 ... 2024-03-24T12:12:12.420 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.058774+0000 mon.smithi170 (mon.0) 260 : cluster 3 ERROR: Directory does not exist. Got: /var/run/ceph/ 2024-03-24T12:12:12.420 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.062547+0000 mon.smithi170 (mon.0) 261 : cluster 0 Standby manager daemon smithi172.uznkeq started 2024-03-24T12:12:12.420 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:12.068321+0000 mon.smithi170 (mon.0) 262 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:12.420 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:12.070610+0000 mon.smithi170 (mon.0) 263 : audit 0 from='mgr.? 172.21.15.172:0/462575599' entity='mgr.smithi172.uznkeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-03-24T12:12:12.420 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:12.072289+0000 mon.smithi170 (mon.0) 264 : audit 0 from='mgr.? 172.21.15.172:0/462575599' entity='mgr.smithi172.uznkeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi172.uznkeq/key"}]: dispatch 2024-03-24T12:12:12.420 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:12 smithi172 bash[23876]: audit 2024-03-24T12:12:12.072992+0000 mon.smithi170 (mon.0) 265 : audit 0 from='mgr.? 172.21.15.172:0/462575599' entity='mgr.smithi172.uznkeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-03-24T12:12:12.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:07.001024+0000 mon.smithi170 (mon.0) 236 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:07.005752+0000 mon.smithi170 (mon.0) 237 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi170"}]: dispatch 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:07.006079+0000 mon.smithi170 (mon.0) 238 : cluster 1 mon.smithi170 calling monitor election 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:07.024877+0000 mon.smithi170 (mon.0) 239 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:08.001021+0000 mon.smithi170 (mon.0) 240 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:08.418103+0000 mgr.smithi170.xkyvyq (mgr.14199) 22 : cluster 0 pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:09.001113+0000 mon.smithi170 (mon.0) 241 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:09.001785+0000 mon.smithi172 (mon.1) 1 : cluster 1 mon.smithi172 calling monitor election 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:10.000881+0000 mon.smithi170 (mon.0) 242 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:10.418585+0000 mgr.smithi170.xkyvyq (mgr.14199) 23 : cluster 0 pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:11.001336+0000 mon.smithi170 (mon.0) 243 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:11.639628+0000 mon.smithi170 (mon.0) 244 : audit 0 from='mgr.? 172.21.15.172:0/462575599' entity='mgr.smithi172.uznkeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi172.uznkeq/crt"}]: dispatch 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:12.001718+0000 mon.smithi170 (mon.0) 245 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:12.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.049787+0000 mon.smithi170 (mon.0) 246 : cluster 1 mon.smithi170 is new leader, mons smithi170,smithi172 in quorum (ranks 0,1) 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.056524+0000 mon.smithi170 (mon.0) 247 : cluster 0 monmap e2: 2 mons at {smithi170=[v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0],smithi172=[v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.057605+0000 mon.smithi170 (mon.0) 248 : cluster 0 fsmap 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.057694+0000 mon.smithi170 (mon.0) 249 : cluster 0 osdmap e5: 0 total, 0 up, 0 in 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.058032+0000 mon.smithi170 (mon.0) 250 : cluster 0 mgrmap e17: smithi170.xkyvyq(active, since 28s) 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.058388+0000 mon.smithi170 (mon.0) 251 : cluster 3 Health detail: HEALTH_WARN Failed to place 1 daemon(s) 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.058443+0000 mon.smithi170 (mon.0) 252 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s) 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.058478+0000 mon.smithi170 (mon.0) 253 : cluster 3 Failed while placing ceph-exporter.smithi172 on smithi172: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.058518+0000 mon.smithi170 (mon.0) 254 : cluster 3 /usr/bin/docker: stdout 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.058564+0000 mon.smithi170 (mon.0) 255 : cluster 3 /usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.058606+0000 mon.smithi170 (mon.0) 256 : cluster 3 Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.058652+0000 mon.smithi170 (mon.0) 257 : cluster 3 /usr/bin/docker: stdout 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.058695+0000 mon.smithi170 (mon.0) 258 : cluster 3 /usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.058737+0000 mon.smithi170 (mon.0) 259 : cluster 3 Deploy daemon ceph-exporter.smithi172 ... 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.058774+0000 mon.smithi170 (mon.0) 260 : cluster 3 ERROR: Directory does not exist. Got: /var/run/ceph/ 2024-03-24T12:12:12.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.062547+0000 mon.smithi170 (mon.0) 261 : cluster 0 Standby manager daemon smithi172.uznkeq started 2024-03-24T12:12:12.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:12.068321+0000 mon.smithi170 (mon.0) 262 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:12.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:12.070610+0000 mon.smithi170 (mon.0) 263 : audit 0 from='mgr.? 172.21.15.172:0/462575599' entity='mgr.smithi172.uznkeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-03-24T12:12:12.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:12.072289+0000 mon.smithi170 (mon.0) 264 : audit 0 from='mgr.? 172.21.15.172:0/462575599' entity='mgr.smithi172.uznkeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi172.uznkeq/key"}]: dispatch 2024-03-24T12:12:12.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:12 smithi170 bash[18738]: audit 2024-03-24T12:12:12.072992+0000 mon.smithi170 (mon.0) 265 : audit 0 from='mgr.? 172.21.15.172:0/462575599' entity='mgr.smithi172.uznkeq' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-03-24T12:12:13.125 INFO:teuthology.orchestra.run.smithi172.stdout: 2024-03-24T12:12:13.125 INFO:teuthology.orchestra.run.smithi172.stdout:{"epoch":2,"fsid":"158785cc-e9d7-11ee-95cd-87774f69a715","modified":"2024-03-24T12:12:07.000472Z","created":"2024-03-24T12:08:50.117688Z","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":"smithi170","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:3300","nonce":0},{"type":"v1","addr":"172.21.15.170:6789","nonce":0}]},"addr":"172.21.15.170:6789/0","public_addr":"172.21.15.170:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi172","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:3300","nonce":0},{"type":"v1","addr":"172.21.15.172:6789","nonce":0}]},"addr":"172.21.15.172:6789/0","public_addr":"172.21.15.172:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-03-24T12:12:13.128 INFO:teuthology.orchestra.run.smithi172.stderr:dumped monmap epoch 2 2024-03-24T12:12:13.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.142303+0000 mon.smithi170 (mon.0) 266 : cluster 0 mgrmap e18: smithi170.xkyvyq(active, since 28s), standbys: smithi172.uznkeq 2024-03-24T12:12:13.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.142645+0000 mon.smithi170 (mon.0) 267 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr metadata", "who": "smithi172.uznkeq", "id": "smithi172.uznkeq"}]: dispatch 2024-03-24T12:12:13.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.409469+0000 mon.smithi170 (mon.0) 268 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.418271+0000 mon.smithi170 (mon.0) 269 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.419111+0000 mgr.smithi170.xkyvyq (mgr.14199) 24 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:13.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.420474+0000 mon.smithi170 (mon.0) 270 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:13.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.422550+0000 mon.smithi170 (mon.0) 271 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:12:13.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: cephadm 2024-03-24T12:12:12.425303+0000 mgr.smithi170.xkyvyq (mgr.14199) 25 : cephadm 1 Updating smithi170:/etc/ceph/ceph.conf 2024-03-24T12:12:13.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: cephadm 2024-03-24T12:12:12.425785+0000 mgr.smithi170.xkyvyq (mgr.14199) 26 : cephadm 1 Updating smithi172:/etc/ceph/ceph.conf 2024-03-24T12:12:13.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.865452+0000 mon.smithi170 (mon.0) 272 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.869305+0000 mon.smithi170 (mon.0) 273 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.876806+0000 mon.smithi170 (mon.0) 274 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.881453+0000 mon.smithi170 (mon.0) 275 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.887036+0000 mon.smithi170 (mon.0) 276 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.890144+0000 mon.smithi170 (mon.0) 277 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi172", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-24T12:12:13.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.892542+0000 mon.smithi170 (mon.0) 278 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi172", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-03-24T12:12:13.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:12.896380+0000 mon.smithi170 (mon.0) 279 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:13.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:13.002015+0000 mon.smithi170 (mon.0) 280 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:13.419 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:13 smithi172 bash[23876]: audit 2024-03-24T12:12:13.127248+0000 mon.smithi170 (mon.0) 281 : audit 0 from='client.? 172.21.15.172:0/2303524679' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-24T12:12:13.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.142303+0000 mon.smithi170 (mon.0) 266 : cluster 0 mgrmap e18: smithi170.xkyvyq(active, since 28s), standbys: smithi172.uznkeq 2024-03-24T12:12:13.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.142645+0000 mon.smithi170 (mon.0) 267 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr metadata", "who": "smithi172.uznkeq", "id": "smithi172.uznkeq"}]: dispatch 2024-03-24T12:12:13.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.409469+0000 mon.smithi170 (mon.0) 268 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.418271+0000 mon.smithi170 (mon.0) 269 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.419111+0000 mgr.smithi170.xkyvyq (mgr.14199) 24 : cluster 0 pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:13.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.420474+0000 mon.smithi170 (mon.0) 270 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:13.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.422550+0000 mon.smithi170 (mon.0) 271 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:12:13.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: cephadm 2024-03-24T12:12:12.425303+0000 mgr.smithi170.xkyvyq (mgr.14199) 25 : cephadm 1 Updating smithi170:/etc/ceph/ceph.conf 2024-03-24T12:12:13.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: cephadm 2024-03-24T12:12:12.425785+0000 mgr.smithi170.xkyvyq (mgr.14199) 26 : cephadm 1 Updating smithi172:/etc/ceph/ceph.conf 2024-03-24T12:12:13.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.865452+0000 mon.smithi170 (mon.0) 272 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.869305+0000 mon.smithi170 (mon.0) 273 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.876806+0000 mon.smithi170 (mon.0) 274 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.881453+0000 mon.smithi170 (mon.0) 275 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.887036+0000 mon.smithi170 (mon.0) 276 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:13.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.890144+0000 mon.smithi170 (mon.0) 277 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi172", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-24T12:12:13.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.892542+0000 mon.smithi170 (mon.0) 278 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi172", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-03-24T12:12:13.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:12.896380+0000 mon.smithi170 (mon.0) 279 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:13.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:13.002015+0000 mon.smithi170 (mon.0) 280 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:12:13.474 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:13 smithi170 bash[18738]: audit 2024-03-24T12:12:13.127248+0000 mon.smithi170 (mon.0) 281 : audit 0 from='client.? 172.21.15.172:0/2303524679' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-03-24T12:12:13.847 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-03-24T12:12:13.848 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph config generate-minimal-conf 2024-03-24T12:12:14.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:14 smithi172 bash[23876]: cephadm 2024-03-24T12:12:12.691603+0000 mgr.smithi170.xkyvyq (mgr.14199) 27 : cephadm 1 Updating smithi170:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.conf 2024-03-24T12:12:14.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:14 smithi172 bash[23876]: cephadm 2024-03-24T12:12:12.693315+0000 mgr.smithi170.xkyvyq (mgr.14199) 28 : cephadm 1 Updating smithi172:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.conf 2024-03-24T12:12:14.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:14 smithi172 bash[23876]: cluster 2024-03-24T12:12:12.887832+0000 mgr.smithi170.xkyvyq (mgr.14199) 29 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:14.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:14 smithi172 bash[23876]: cephadm 2024-03-24T12:12:12.898138+0000 mgr.smithi170.xkyvyq (mgr.14199) 30 : cephadm 1 Deploying daemon ceph-exporter.smithi172 on smithi172 2024-03-24T12:12:14.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:14 smithi172 bash[23876]: cluster 2024-03-24T12:12:13.414772+0000 mon.smithi170 (mon.0) 282 : cluster 1 Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 1 daemon(s)) 2024-03-24T12:12:14.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:14 smithi172 bash[23876]: cluster 2024-03-24T12:12:13.414825+0000 mon.smithi170 (mon.0) 283 : cluster 1 Cluster is now healthy 2024-03-24T12:12:14.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:14 smithi172 bash[23876]: audit 2024-03-24T12:12:13.902014+0000 mon.smithi170 (mon.0) 284 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:12:14.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:14 smithi170 bash[18738]: cephadm 2024-03-24T12:12:12.691603+0000 mgr.smithi170.xkyvyq (mgr.14199) 27 : cephadm 1 Updating smithi170:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.conf 2024-03-24T12:12:14.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:14 smithi170 bash[18738]: cephadm 2024-03-24T12:12:12.693315+0000 mgr.smithi170.xkyvyq (mgr.14199) 28 : cephadm 1 Updating smithi172:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/config/ceph.conf 2024-03-24T12:12:14.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:14 smithi170 bash[18738]: cluster 2024-03-24T12:12:12.887832+0000 mgr.smithi170.xkyvyq (mgr.14199) 29 : cluster 0 pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:14.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:14 smithi170 bash[18738]: cephadm 2024-03-24T12:12:12.898138+0000 mgr.smithi170.xkyvyq (mgr.14199) 30 : cephadm 1 Deploying daemon ceph-exporter.smithi172 on smithi172 2024-03-24T12:12:14.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:14 smithi170 bash[18738]: cluster 2024-03-24T12:12:13.414772+0000 mon.smithi170 (mon.0) 282 : cluster 1 Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 1 daemon(s)) 2024-03-24T12:12:14.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:14 smithi170 bash[18738]: cluster 2024-03-24T12:12:13.414825+0000 mon.smithi170 (mon.0) 283 : cluster 1 Cluster is now healthy 2024-03-24T12:12:14.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:14 smithi170 bash[18738]: audit 2024-03-24T12:12:13.902014+0000 mon.smithi170 (mon.0) 284 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:12:14.843 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:14 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:12:15.122 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:14 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:12:16.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:16 smithi172 bash[23876]: cluster 2024-03-24T12:12:14.888219+0000 mgr.smithi170.xkyvyq (mgr.14199) 31 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:16.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:16 smithi172 bash[23876]: audit 2024-03-24T12:12:15.125642+0000 mon.smithi170 (mon.0) 285 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:16.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:16 smithi172 bash[23876]: audit 2024-03-24T12:12:15.133897+0000 mon.smithi170 (mon.0) 286 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:16.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:16 smithi172 bash[23876]: audit 2024-03-24T12:12:15.178105+0000 mon.smithi170 (mon.0) 287 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:16.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:16 smithi172 bash[23876]: audit 2024-03-24T12:12:15.184741+0000 mon.smithi170 (mon.0) 288 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:16.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:16 smithi172 bash[23876]: audit 2024-03-24T12:12:15.258811+0000 mon.smithi170 (mon.0) 289 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:12:16.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:16 smithi170 bash[18738]: cluster 2024-03-24T12:12:14.888219+0000 mgr.smithi170.xkyvyq (mgr.14199) 31 : cluster 0 pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:16.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:16 smithi170 bash[18738]: audit 2024-03-24T12:12:15.125642+0000 mon.smithi170 (mon.0) 285 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:16.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:16 smithi170 bash[18738]: audit 2024-03-24T12:12:15.133897+0000 mon.smithi170 (mon.0) 286 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:16.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:16 smithi170 bash[18738]: audit 2024-03-24T12:12:15.178105+0000 mon.smithi170 (mon.0) 287 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:16.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:16 smithi170 bash[18738]: audit 2024-03-24T12:12:15.184741+0000 mon.smithi170 (mon.0) 288 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:16.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:16 smithi170 bash[18738]: audit 2024-03-24T12:12:15.258811+0000 mon.smithi170 (mon.0) 289 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:12:18.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:18 smithi172 bash[23876]: cluster 2024-03-24T12:12:16.888629+0000 mgr.smithi170.xkyvyq (mgr.14199) 32 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:18.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:18 smithi172 bash[23876]: audit 2024-03-24T12:12:17.076908+0000 mon.smithi170 (mon.0) 290 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:18.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:18 smithi170 bash[18738]: cluster 2024-03-24T12:12:16.888629+0000 mgr.smithi170.xkyvyq (mgr.14199) 32 : cluster 0 pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:18.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:18 smithi170 bash[18738]: audit 2024-03-24T12:12:17.076908+0000 mon.smithi170 (mon.0) 290 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:18.614 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:12:20.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:20 smithi170 bash[18738]: cluster 2024-03-24T12:12:18.889108+0000 mgr.smithi170.xkyvyq (mgr.14199) 33 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:20.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:20 smithi172 bash[23876]: cluster 2024-03-24T12:12:18.889108+0000 mgr.smithi170.xkyvyq (mgr.14199) 33 : cluster 0 pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:21.426 INFO:teuthology.orchestra.run.smithi170.stdout:# minimal ceph.conf for 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:12:21.426 INFO:teuthology.orchestra.run.smithi170.stdout:[global] 2024-03-24T12:12:21.426 INFO:teuthology.orchestra.run.smithi170.stdout: fsid = 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:12:21.426 INFO:teuthology.orchestra.run.smithi170.stdout: mon_host = [v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0] [v2:172.21.15.172:3300/0,v1:172.21.15.172:6789/0] 2024-03-24T12:12:21.700 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:21 smithi170 bash[18738]: audit 2024-03-24T12:12:20.651888+0000 mon.smithi170 (mon.0) 291 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:21.700 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:21 smithi170 bash[18738]: audit 2024-03-24T12:12:20.662138+0000 mon.smithi170 (mon.0) 292 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:21.700 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:21 smithi170 bash[18738]: audit 2024-03-24T12:12:20.664380+0000 mon.smithi170 (mon.0) 293 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:21.700 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:21 smithi170 bash[18738]: audit 2024-03-24T12:12:20.666304+0000 mon.smithi170 (mon.0) 294 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:12:21.700 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:21 smithi170 bash[18738]: audit 2024-03-24T12:12:20.675733+0000 mon.smithi170 (mon.0) 295 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:21.700 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:21 smithi170 bash[18738]: cephadm 2024-03-24T12:12:20.752282+0000 mgr.smithi170.xkyvyq (mgr.14199) 34 : cephadm 1 Reconfiguring mon.smithi170 (unknown last config time)... 2024-03-24T12:12:21.700 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:21 smithi170 bash[18738]: audit 2024-03-24T12:12:20.753008+0000 mon.smithi170 (mon.0) 296 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-24T12:12:21.700 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:21 smithi170 bash[18738]: audit 2024-03-24T12:12:20.754616+0000 mon.smithi170 (mon.0) 297 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-24T12:12:21.700 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:21 smithi170 bash[18738]: audit 2024-03-24T12:12:20.756122+0000 mon.smithi170 (mon.0) 298 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:21.701 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:21 smithi170 bash[18738]: cephadm 2024-03-24T12:12:20.758263+0000 mgr.smithi170.xkyvyq (mgr.14199) 35 : cephadm 1 Reconfiguring daemon mon.smithi170 on smithi170 2024-03-24T12:12:21.701 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:21 smithi170 bash[18738]: cluster 2024-03-24T12:12:20.889544+0000 mgr.smithi170.xkyvyq (mgr.14199) 36 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:21.701 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:21 smithi170 bash[18738]: audit 2024-03-24T12:12:21.428321+0000 mon.smithi170 (mon.0) 299 : audit 0 from='client.? 172.21.15.170:0/2746123147' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:21.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:21 smithi172 bash[23876]: audit 2024-03-24T12:12:20.651888+0000 mon.smithi170 (mon.0) 291 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:21.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:21 smithi172 bash[23876]: audit 2024-03-24T12:12:20.662138+0000 mon.smithi170 (mon.0) 292 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:21.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:21 smithi172 bash[23876]: audit 2024-03-24T12:12:20.664380+0000 mon.smithi170 (mon.0) 293 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:21.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:21 smithi172 bash[23876]: audit 2024-03-24T12:12:20.666304+0000 mon.smithi170 (mon.0) 294 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:12:21.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:21 smithi172 bash[23876]: audit 2024-03-24T12:12:20.675733+0000 mon.smithi170 (mon.0) 295 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:21.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:21 smithi172 bash[23876]: cephadm 2024-03-24T12:12:20.752282+0000 mgr.smithi170.xkyvyq (mgr.14199) 34 : cephadm 1 Reconfiguring mon.smithi170 (unknown last config time)... 2024-03-24T12:12:21.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:21 smithi172 bash[23876]: audit 2024-03-24T12:12:20.753008+0000 mon.smithi170 (mon.0) 296 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-24T12:12:21.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:21 smithi172 bash[23876]: audit 2024-03-24T12:12:20.754616+0000 mon.smithi170 (mon.0) 297 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-24T12:12:21.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:21 smithi172 bash[23876]: audit 2024-03-24T12:12:20.756122+0000 mon.smithi170 (mon.0) 298 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:21.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:21 smithi172 bash[23876]: cephadm 2024-03-24T12:12:20.758263+0000 mgr.smithi170.xkyvyq (mgr.14199) 35 : cephadm 1 Reconfiguring daemon mon.smithi170 on smithi170 2024-03-24T12:12:21.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:21 smithi172 bash[23876]: cluster 2024-03-24T12:12:20.889544+0000 mgr.smithi170.xkyvyq (mgr.14199) 36 : cluster 0 pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:21 smithi172 bash[23876]: audit 2024-03-24T12:12:21.428321+0000 mon.smithi170 (mon.0) 299 : audit 0 from='client.? 172.21.15.170:0/2746123147' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:22.483 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-03-24T12:12:22.483 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:12:22.483 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/ceph/ceph.conf 2024-03-24T12:12:22.495 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:12:22.495 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-03-24T12:12:22.546 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-03-24T12:12:22.547 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/etc/ceph/ceph.conf 2024-03-24T12:12:22.562 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-03-24T12:12:22.562 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-03-24T12:12:22.619 INFO:tasks.cephadm:Deploying OSDs... 2024-03-24T12:12:22.619 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:12:22.619 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/scratch_devs of=/dev/stdout 2024-03-24T12:12:22.626 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-03-24T12:12:22.626 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/nvme1n1 2024-03-24T12:12:22.677 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/nvme1n1 2024-03-24T12:12:22.677 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-24T12:12:22.677 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 965 Links: 1 Device type: 103,2 2024-03-24T12:12:22.677 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-24T12:12:22.677 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-03-24 12:10:26.387343312 +0000 2024-03-24T12:12:22.677 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-03-24 12:07:26.587378607 +0000 2024-03-24T12:12:22.677 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-03-24 12:07:26.587378607 +0000 2024-03-24T12:12:22.677 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-03-24T12:12:22.678 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-03-24T12:12:22.730 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-03-24T12:12:22.730 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-03-24T12:12:22.730 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000187456 s, 2.7 MB/s 2024-03-24T12:12:22.731 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-03-24T12:12:22.778 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/nvme2n1 2024-03-24T12:12:22.830 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/nvme2n1 2024-03-24T12:12:22.830 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-24T12:12:22.831 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 974 Links: 1 Device type: 103,4 2024-03-24T12:12:22.831 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-24T12:12:22.831 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-03-24 12:10:26.399343205 +0000 2024-03-24T12:12:22.831 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-03-24 12:07:26.679331786 +0000 2024-03-24T12:12:22.831 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-03-24 12:07:26.679331786 +0000 2024-03-24T12:12:22.831 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-03-24T12:12:22.831 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-03-24T12:12:22.888 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-03-24T12:12:22.888 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-03-24T12:12:22.888 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000265294 s, 1.9 MB/s 2024-03-24T12:12:22.889 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-03-24T12:12:22.943 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/nvme3n1 2024-03-24T12:12:22.990 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/nvme3n1 2024-03-24T12:12:22.990 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-24T12:12:22.990 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 983 Links: 1 Device type: 103,6 2024-03-24T12:12:22.990 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-24T12:12:22.990 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-03-24 12:10:26.415343062 +0000 2024-03-24T12:12:22.990 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-03-24 12:07:26.779280894 +0000 2024-03-24T12:12:22.990 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-03-24 12:07:26.779280894 +0000 2024-03-24T12:12:22.991 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-03-24T12:12:22.991 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-03-24T12:12:23.044 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-03-24T12:12:23.044 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-03-24T12:12:23.044 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000378262 s, 1.4 MB/s 2024-03-24T12:12:23.045 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-03-24T12:12:23.095 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/nvme4n1 2024-03-24T12:12:23.141 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/nvme4n1 2024-03-24T12:12:23.142 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-24T12:12:23.142 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 992 Links: 1 Device type: 103,8 2024-03-24T12:12:23.142 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-24T12:12:23.142 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-03-24 12:10:26.427342955 +0000 2024-03-24T12:12:23.142 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-03-24 12:07:26.875232038 +0000 2024-03-24T12:12:23.142 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-03-24 12:07:26.875232038 +0000 2024-03-24T12:12:23.142 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-03-24T12:12:23.142 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-03-24T12:12:23.196 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-03-24T12:12:23.197 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-03-24T12:12:23.197 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000384612 s, 1.3 MB/s 2024-03-24T12:12:23.198 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-03-24T12:12:23.252 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-03-24T12:12:23.252 DEBUG:teuthology.orchestra.run.smithi172:> dd if=/scratch_devs of=/dev/stdout 2024-03-24T12:12:23.259 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-03-24T12:12:23.260 DEBUG:teuthology.orchestra.run.smithi172:> stat /dev/nvme1n1 2024-03-24T12:12:23.307 INFO:teuthology.orchestra.run.smithi172.stdout: File: /dev/nvme1n1 2024-03-24T12:12:23.307 INFO:teuthology.orchestra.run.smithi172.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-24T12:12:23.307 INFO:teuthology.orchestra.run.smithi172.stdout:Device: 5h/5d Inode: 969 Links: 1 Device type: 103,2 2024-03-24T12:12:23.307 INFO:teuthology.orchestra.run.smithi172.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-24T12:12:23.307 INFO:teuthology.orchestra.run.smithi172.stdout:Access: 2024-03-24 12:11:51.848923252 +0000 2024-03-24T12:12:23.307 INFO:teuthology.orchestra.run.smithi172.stdout:Modify: 2024-03-24 12:07:27.823454539 +0000 2024-03-24T12:12:23.307 INFO:teuthology.orchestra.run.smithi172.stdout:Change: 2024-03-24 12:07:27.823454539 +0000 2024-03-24T12:12:23.307 INFO:teuthology.orchestra.run.smithi172.stdout: Birth: - 2024-03-24T12:12:23.307 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-03-24T12:12:23.361 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records in 2024-03-24T12:12:23.361 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records out 2024-03-24T12:12:23.361 INFO:teuthology.orchestra.run.smithi172.stderr:512 bytes copied, 0.000514971 s, 994 kB/s 2024-03-24T12:12:23.362 DEBUG:teuthology.orchestra.run.smithi172:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-03-24T12:12:23.411 DEBUG:teuthology.orchestra.run.smithi172:> stat /dev/nvme2n1 2024-03-24T12:12:23.462 INFO:teuthology.orchestra.run.smithi172.stdout: File: /dev/nvme2n1 2024-03-24T12:12:23.462 INFO:teuthology.orchestra.run.smithi172.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-24T12:12:23.463 INFO:teuthology.orchestra.run.smithi172.stdout:Device: 5h/5d Inode: 978 Links: 1 Device type: 103,4 2024-03-24T12:12:23.463 INFO:teuthology.orchestra.run.smithi172.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-24T12:12:23.463 INFO:teuthology.orchestra.run.smithi172.stdout:Access: 2024-03-24 12:11:51.864921829 +0000 2024-03-24T12:12:23.463 INFO:teuthology.orchestra.run.smithi172.stdout:Modify: 2024-03-24 12:07:27.923453645 +0000 2024-03-24T12:12:23.463 INFO:teuthology.orchestra.run.smithi172.stdout:Change: 2024-03-24 12:07:27.923453645 +0000 2024-03-24T12:12:23.463 INFO:teuthology.orchestra.run.smithi172.stdout: Birth: - 2024-03-24T12:12:23.463 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-03-24T12:12:23.517 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records in 2024-03-24T12:12:23.517 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records out 2024-03-24T12:12:23.517 INFO:teuthology.orchestra.run.smithi172.stderr:512 bytes copied, 0.000369891 s, 1.4 MB/s 2024-03-24T12:12:23.518 DEBUG:teuthology.orchestra.run.smithi172:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-03-24T12:12:23.571 DEBUG:teuthology.orchestra.run.smithi172:> stat /dev/nvme3n1 2024-03-24T12:12:23.618 INFO:teuthology.orchestra.run.smithi172.stdout: File: /dev/nvme3n1 2024-03-24T12:12:23.618 INFO:teuthology.orchestra.run.smithi172.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-24T12:12:23.619 INFO:teuthology.orchestra.run.smithi172.stdout:Device: 5h/5d Inode: 987 Links: 1 Device type: 103,6 2024-03-24T12:12:23.619 INFO:teuthology.orchestra.run.smithi172.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-24T12:12:23.619 INFO:teuthology.orchestra.run.smithi172.stdout:Access: 2024-03-24 12:11:51.880920405 +0000 2024-03-24T12:12:23.619 INFO:teuthology.orchestra.run.smithi172.stdout:Modify: 2024-03-24 12:07:28.015452822 +0000 2024-03-24T12:12:23.619 INFO:teuthology.orchestra.run.smithi172.stdout:Change: 2024-03-24 12:07:28.015452822 +0000 2024-03-24T12:12:23.619 INFO:teuthology.orchestra.run.smithi172.stdout: Birth: - 2024-03-24T12:12:23.619 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-03-24T12:12:23.673 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records in 2024-03-24T12:12:23.673 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records out 2024-03-24T12:12:23.673 INFO:teuthology.orchestra.run.smithi172.stderr:512 bytes copied, 0.000439183 s, 1.2 MB/s 2024-03-24T12:12:23.674 DEBUG:teuthology.orchestra.run.smithi172:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-03-24T12:12:23.724 DEBUG:teuthology.orchestra.run.smithi172:> stat /dev/nvme4n1 2024-03-24T12:12:23.771 INFO:teuthology.orchestra.run.smithi172.stdout: File: /dev/nvme4n1 2024-03-24T12:12:23.772 INFO:teuthology.orchestra.run.smithi172.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-03-24T12:12:23.772 INFO:teuthology.orchestra.run.smithi172.stdout:Device: 5h/5d Inode: 995 Links: 1 Device type: 103,8 2024-03-24T12:12:23.772 INFO:teuthology.orchestra.run.smithi172.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-03-24T12:12:23.772 INFO:teuthology.orchestra.run.smithi172.stdout:Access: 2024-03-24 12:11:51.892919339 +0000 2024-03-24T12:12:23.772 INFO:teuthology.orchestra.run.smithi172.stdout:Modify: 2024-03-24 12:07:28.107452001 +0000 2024-03-24T12:12:23.772 INFO:teuthology.orchestra.run.smithi172.stdout:Change: 2024-03-24 12:07:28.107452001 +0000 2024-03-24T12:12:23.773 INFO:teuthology.orchestra.run.smithi172.stdout: Birth: - 2024-03-24T12:12:23.773 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-03-24T12:12:23.829 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records in 2024-03-24T12:12:23.829 INFO:teuthology.orchestra.run.smithi172.stderr:1+0 records out 2024-03-24T12:12:23.829 INFO:teuthology.orchestra.run.smithi172.stderr:512 bytes copied, 0.000461459 s, 1.1 MB/s 2024-03-24T12:12:23.830 DEBUG:teuthology.orchestra.run.smithi172:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-03-24T12:12:23.881 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph orch apply osd --all-available-devices 2024-03-24T12:12:24.764 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:24 smithi170 bash[18738]: cluster 2024-03-24T12:12:22.889895+0000 mgr.smithi170.xkyvyq (mgr.14199) 37 : cluster 0 pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:24.764 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:24 smithi170 bash[18738]: audit 2024-03-24T12:12:23.498547+0000 mon.smithi170 (mon.0) 300 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:24.764 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:24 smithi170 bash[18738]: audit 2024-03-24T12:12:23.508570+0000 mon.smithi170 (mon.0) 301 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:24.764 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:24 smithi170 bash[18738]: cephadm 2024-03-24T12:12:23.528183+0000 mgr.smithi170.xkyvyq (mgr.14199) 38 : cephadm 1 Reconfiguring mgr.smithi170.xkyvyq (unknown last config time)... 2024-03-24T12:12:24.764 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:24 smithi170 bash[18738]: audit 2024-03-24T12:12:23.528755+0000 mon.smithi170 (mon.0) 302 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi170.xkyvyq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-24T12:12:24.764 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:24 smithi170 bash[18738]: audit 2024-03-24T12:12:23.530480+0000 mon.smithi170 (mon.0) 303 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-24T12:12:24.764 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:24 smithi170 bash[18738]: audit 2024-03-24T12:12:23.531966+0000 mon.smithi170 (mon.0) 304 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:24.764 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:24 smithi170 bash[18738]: cephadm 2024-03-24T12:12:23.533972+0000 mgr.smithi170.xkyvyq (mgr.14199) 39 : cephadm 1 Reconfiguring daemon mgr.smithi170.xkyvyq on smithi170 2024-03-24T12:12:24.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:24 smithi172 bash[23876]: cluster 2024-03-24T12:12:22.889895+0000 mgr.smithi170.xkyvyq (mgr.14199) 37 : cluster 0 pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:24.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:24 smithi172 bash[23876]: audit 2024-03-24T12:12:23.498547+0000 mon.smithi170 (mon.0) 300 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:24.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:24 smithi172 bash[23876]: audit 2024-03-24T12:12:23.508570+0000 mon.smithi170 (mon.0) 301 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:24.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:24 smithi172 bash[23876]: cephadm 2024-03-24T12:12:23.528183+0000 mgr.smithi170.xkyvyq (mgr.14199) 38 : cephadm 1 Reconfiguring mgr.smithi170.xkyvyq (unknown last config time)... 2024-03-24T12:12:24.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:24 smithi172 bash[23876]: audit 2024-03-24T12:12:23.528755+0000 mon.smithi170 (mon.0) 302 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi170.xkyvyq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-24T12:12:24.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:24 smithi172 bash[23876]: audit 2024-03-24T12:12:23.530480+0000 mon.smithi170 (mon.0) 303 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-24T12:12:24.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:24 smithi172 bash[23876]: audit 2024-03-24T12:12:23.531966+0000 mon.smithi170 (mon.0) 304 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:24.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:24 smithi172 bash[23876]: cephadm 2024-03-24T12:12:23.533972+0000 mgr.smithi170.xkyvyq (mgr.14199) 39 : cephadm 1 Reconfiguring daemon mgr.smithi170.xkyvyq on smithi170 2024-03-24T12:12:26.810 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:26 smithi170 bash[18738]: cluster 2024-03-24T12:12:24.890222+0000 mgr.smithi170.xkyvyq (mgr.14199) 40 : cluster 0 pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:26.810 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:26 smithi170 bash[18738]: audit 2024-03-24T12:12:25.524227+0000 mon.smithi170 (mon.0) 305 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:26.810 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:26 smithi170 bash[18738]: audit 2024-03-24T12:12:25.533437+0000 mon.smithi170 (mon.0) 306 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:26.810 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:26 smithi170 bash[18738]: cephadm 2024-03-24T12:12:25.552399+0000 mgr.smithi170.xkyvyq (mgr.14199) 41 : cephadm 1 Reconfiguring ceph-exporter.smithi170 (monmap changed)... 2024-03-24T12:12:26.811 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:26 smithi170 bash[18738]: audit 2024-03-24T12:12:25.553169+0000 mon.smithi170 (mon.0) 307 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-24T12:12:26.811 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:26 smithi170 bash[18738]: audit 2024-03-24T12:12:25.555346+0000 mon.smithi170 (mon.0) 308 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:26.811 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:26 smithi170 bash[18738]: cephadm 2024-03-24T12:12:25.557526+0000 mgr.smithi170.xkyvyq (mgr.14199) 42 : cephadm 1 Reconfiguring daemon ceph-exporter.smithi170 on smithi170 2024-03-24T12:12:26.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:26 smithi172 bash[23876]: cluster 2024-03-24T12:12:24.890222+0000 mgr.smithi170.xkyvyq (mgr.14199) 40 : cluster 0 pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:26.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:26 smithi172 bash[23876]: audit 2024-03-24T12:12:25.524227+0000 mon.smithi170 (mon.0) 305 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:26.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:26 smithi172 bash[23876]: audit 2024-03-24T12:12:25.533437+0000 mon.smithi170 (mon.0) 306 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:26.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:26 smithi172 bash[23876]: cephadm 2024-03-24T12:12:25.552399+0000 mgr.smithi170.xkyvyq (mgr.14199) 41 : cephadm 1 Reconfiguring ceph-exporter.smithi170 (monmap changed)... 2024-03-24T12:12:26.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:26 smithi172 bash[23876]: audit 2024-03-24T12:12:25.553169+0000 mon.smithi170 (mon.0) 307 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-03-24T12:12:26.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:26 smithi172 bash[23876]: audit 2024-03-24T12:12:25.555346+0000 mon.smithi170 (mon.0) 308 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:26.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:26 smithi172 bash[23876]: cephadm 2024-03-24T12:12:25.557526+0000 mgr.smithi170.xkyvyq (mgr.14199) 42 : cephadm 1 Reconfiguring daemon ceph-exporter.smithi170 on smithi170 2024-03-24T12:12:28.655 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi172/config 2024-03-24T12:12:28.822 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:28 smithi170 bash[18738]: cluster 2024-03-24T12:12:26.890615+0000 mgr.smithi170.xkyvyq (mgr.14199) 43 : cluster 0 pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:28.822 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:28 smithi170 bash[18738]: audit 2024-03-24T12:12:27.565354+0000 mon.smithi170 (mon.0) 309 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:28.822 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:28 smithi170 bash[18738]: audit 2024-03-24T12:12:27.576055+0000 mon.smithi170 (mon.0) 310 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:28.822 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:28 smithi170 bash[18738]: audit 2024-03-24T12:12:27.627274+0000 mon.smithi170 (mon.0) 311 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-24T12:12:28.822 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:28 smithi170 bash[18738]: audit 2024-03-24T12:12:27.629111+0000 mon.smithi170 (mon.0) 312 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:28.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:28 smithi172 bash[23876]: cluster 2024-03-24T12:12:26.890615+0000 mgr.smithi170.xkyvyq (mgr.14199) 43 : cluster 0 pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:28.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:28 smithi172 bash[23876]: audit 2024-03-24T12:12:27.565354+0000 mon.smithi170 (mon.0) 309 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:28.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:28 smithi172 bash[23876]: audit 2024-03-24T12:12:27.576055+0000 mon.smithi170 (mon.0) 310 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:28.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:28 smithi172 bash[23876]: audit 2024-03-24T12:12:27.627274+0000 mon.smithi170 (mon.0) 311 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-24T12:12:28.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:28 smithi172 bash[23876]: audit 2024-03-24T12:12:27.629111+0000 mon.smithi170 (mon.0) 312 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:29.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:29 smithi172 bash[23876]: cephadm 2024-03-24T12:12:27.626541+0000 mgr.smithi170.xkyvyq (mgr.14199) 44 : cephadm 1 Reconfiguring crash.smithi170 (monmap changed)... 2024-03-24T12:12:29.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:29 smithi172 bash[23876]: cephadm 2024-03-24T12:12:27.631020+0000 mgr.smithi170.xkyvyq (mgr.14199) 45 : cephadm 1 Reconfiguring daemon crash.smithi170 on smithi170 2024-03-24T12:12:29.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:29 smithi172 bash[23876]: cluster 2024-03-24T12:12:28.890887+0000 mgr.smithi170.xkyvyq (mgr.14199) 46 : cluster 0 pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:29.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:29 smithi172 bash[23876]: audit 2024-03-24T12:12:28.901789+0000 mon.smithi170 (mon.0) 313 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:12:29.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:29 smithi170 bash[18738]: cephadm 2024-03-24T12:12:27.626541+0000 mgr.smithi170.xkyvyq (mgr.14199) 44 : cephadm 1 Reconfiguring crash.smithi170 (monmap changed)... 2024-03-24T12:12:29.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:29 smithi170 bash[18738]: cephadm 2024-03-24T12:12:27.631020+0000 mgr.smithi170.xkyvyq (mgr.14199) 45 : cephadm 1 Reconfiguring daemon crash.smithi170 on smithi170 2024-03-24T12:12:29.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:29 smithi170 bash[18738]: cluster 2024-03-24T12:12:28.890887+0000 mgr.smithi170.xkyvyq (mgr.14199) 46 : cluster 0 pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:29.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:29 smithi170 bash[18738]: audit 2024-03-24T12:12:28.901789+0000 mon.smithi170 (mon.0) 313 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:12:30.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:30 smithi170 bash[18738]: audit 2024-03-24T12:12:29.588473+0000 mon.smithi170 (mon.0) 314 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:30.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:30 smithi170 bash[18738]: audit 2024-03-24T12:12:29.597939+0000 mon.smithi170 (mon.0) 315 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:30.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:30 smithi170 bash[18738]: cephadm 2024-03-24T12:12:29.600881+0000 mgr.smithi170.xkyvyq (mgr.14199) 47 : cephadm 1 Reconfiguring alertmanager.smithi170 (dependencies changed)... 2024-03-24T12:12:30.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:30 smithi170 bash[18738]: cephadm 2024-03-24T12:12:29.634882+0000 mgr.smithi170.xkyvyq (mgr.14199) 48 : cephadm 1 Reconfiguring daemon alertmanager.smithi170 on smithi170 2024-03-24T12:12:30.838 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:30 smithi172 bash[23876]: audit 2024-03-24T12:12:29.588473+0000 mon.smithi170 (mon.0) 314 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:30.838 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:30 smithi172 bash[23876]: audit 2024-03-24T12:12:29.597939+0000 mon.smithi170 (mon.0) 315 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:30.838 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:30 smithi172 bash[23876]: cephadm 2024-03-24T12:12:29.600881+0000 mgr.smithi170.xkyvyq (mgr.14199) 47 : cephadm 1 Reconfiguring alertmanager.smithi170 (dependencies changed)... 2024-03-24T12:12:30.838 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:30 smithi172 bash[23876]: cephadm 2024-03-24T12:12:29.634882+0000 mgr.smithi170.xkyvyq (mgr.14199) 48 : cephadm 1 Reconfiguring daemon alertmanager.smithi170 on smithi170 2024-03-24T12:12:31.068 INFO:teuthology.orchestra.run.smithi172.stdout:Scheduled osd.all-available-devices update... 2024-03-24T12:12:31.625 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-03-24T12:12:31.625 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd stat -f json 2024-03-24T12:12:32.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:32 smithi172 bash[23876]: cluster 2024-03-24T12:12:30.891297+0000 mgr.smithi170.xkyvyq (mgr.14199) 49 : cluster 0 pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:32.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:32 smithi172 bash[23876]: audit 2024-03-24T12:12:31.063230+0000 mgr.smithi170.xkyvyq (mgr.14199) 50 : audit 0 from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:12:32.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:32 smithi172 bash[23876]: cephadm 2024-03-24T12:12:31.065555+0000 mgr.smithi170.xkyvyq (mgr.14199) 51 : cephadm 1 Marking host: smithi170 for OSDSpec preview refresh. 2024-03-24T12:12:32.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:32 smithi172 bash[23876]: cephadm 2024-03-24T12:12:31.065659+0000 mgr.smithi170.xkyvyq (mgr.14199) 52 : cephadm 1 Marking host: smithi172 for OSDSpec preview refresh. 2024-03-24T12:12:32.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:32 smithi172 bash[23876]: cephadm 2024-03-24T12:12:31.066055+0000 mgr.smithi170.xkyvyq (mgr.14199) 53 : cephadm 1 Saving service osd.all-available-devices spec with placement * 2024-03-24T12:12:32.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:32 smithi172 bash[23876]: audit 2024-03-24T12:12:31.070007+0000 mon.smithi170 (mon.0) 316 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:32.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:32 smithi170 bash[18738]: cluster 2024-03-24T12:12:30.891297+0000 mgr.smithi170.xkyvyq (mgr.14199) 49 : cluster 0 pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:32.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:32 smithi170 bash[18738]: audit 2024-03-24T12:12:31.063230+0000 mgr.smithi170.xkyvyq (mgr.14199) 50 : audit 0 from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:12:32.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:32 smithi170 bash[18738]: cephadm 2024-03-24T12:12:31.065555+0000 mgr.smithi170.xkyvyq (mgr.14199) 51 : cephadm 1 Marking host: smithi170 for OSDSpec preview refresh. 2024-03-24T12:12:32.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:32 smithi170 bash[18738]: cephadm 2024-03-24T12:12:31.065659+0000 mgr.smithi170.xkyvyq (mgr.14199) 52 : cephadm 1 Marking host: smithi172 for OSDSpec preview refresh. 2024-03-24T12:12:32.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:32 smithi170 bash[18738]: cephadm 2024-03-24T12:12:31.066055+0000 mgr.smithi170.xkyvyq (mgr.14199) 53 : cephadm 1 Saving service osd.all-available-devices spec with placement * 2024-03-24T12:12:32.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:32 smithi170 bash[18738]: audit 2024-03-24T12:12:31.070007+0000 mon.smithi170 (mon.0) 316 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:34.148 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:34 smithi170 bash[18738]: cluster 2024-03-24T12:12:32.891650+0000 mgr.smithi170.xkyvyq (mgr.14199) 54 : cluster 0 pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:34.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:34 smithi172 bash[23876]: cluster 2024-03-24T12:12:32.891650+0000 mgr.smithi170.xkyvyq (mgr.14199) 54 : cluster 0 pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:35.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:35 smithi172 bash[23876]: audit 2024-03-24T12:12:34.357822+0000 mon.smithi170 (mon.0) 317 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:35.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:35 smithi172 bash[23876]: audit 2024-03-24T12:12:34.363266+0000 mon.smithi170 (mon.0) 318 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:35.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:35 smithi172 bash[23876]: cephadm 2024-03-24T12:12:34.409275+0000 mgr.smithi170.xkyvyq (mgr.14199) 55 : cephadm 1 Reconfiguring grafana.smithi170 (dependencies changed)... 2024-03-24T12:12:35.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:35 smithi172 bash[23876]: cephadm 2024-03-24T12:12:34.424078+0000 mgr.smithi170.xkyvyq (mgr.14199) 56 : cephadm 1 Reconfiguring daemon grafana.smithi170 on smithi170 2024-03-24T12:12:35.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:35 smithi170 bash[18738]: audit 2024-03-24T12:12:34.357822+0000 mon.smithi170 (mon.0) 317 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:35.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:35 smithi170 bash[18738]: audit 2024-03-24T12:12:34.363266+0000 mon.smithi170 (mon.0) 318 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:35.688 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:35 smithi170 bash[18738]: cephadm 2024-03-24T12:12:34.409275+0000 mgr.smithi170.xkyvyq (mgr.14199) 55 : cephadm 1 Reconfiguring grafana.smithi170 (dependencies changed)... 2024-03-24T12:12:35.688 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:35 smithi170 bash[18738]: cephadm 2024-03-24T12:12:34.424078+0000 mgr.smithi170.xkyvyq (mgr.14199) 56 : cephadm 1 Reconfiguring daemon grafana.smithi170 on smithi170 2024-03-24T12:12:36.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:36 smithi172 bash[23876]: cluster 2024-03-24T12:12:34.892132+0000 mgr.smithi170.xkyvyq (mgr.14199) 57 : cluster 0 pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:36.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:36 smithi170 bash[18738]: cluster 2024-03-24T12:12:34.892132+0000 mgr.smithi170.xkyvyq (mgr.14199) 57 : cluster 0 pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:37.829 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:12:38.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:38 smithi172 bash[23876]: cluster 2024-03-24T12:12:36.892525+0000 mgr.smithi170.xkyvyq (mgr.14199) 58 : cluster 0 pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:38.746 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:38 smithi170 bash[18738]: cluster 2024-03-24T12:12:36.892525+0000 mgr.smithi170.xkyvyq (mgr.14199) 58 : cluster 0 pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:40.865 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:40 smithi172 bash[23876]: cluster 2024-03-24T12:12:38.892837+0000 mgr.smithi170.xkyvyq (mgr.14199) 59 : cluster 0 pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:40.866 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:40 smithi172 bash[23876]: audit 2024-03-24T12:12:39.558963+0000 mon.smithi170 (mon.0) 319 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:40.866 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:40 smithi172 bash[23876]: audit 2024-03-24T12:12:39.564303+0000 mon.smithi170 (mon.0) 320 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:40.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:40 smithi170 bash[18738]: cluster 2024-03-24T12:12:38.892837+0000 mgr.smithi170.xkyvyq (mgr.14199) 59 : cluster 0 pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:40.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:40 smithi170 bash[18738]: audit 2024-03-24T12:12:39.558963+0000 mon.smithi170 (mon.0) 319 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:40.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:40 smithi170 bash[18738]: audit 2024-03-24T12:12:39.564303+0000 mon.smithi170 (mon.0) 320 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:41.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:41 smithi170 bash[18738]: cephadm 2024-03-24T12:12:39.598072+0000 mgr.smithi170.xkyvyq (mgr.14199) 60 : cephadm 1 Reconfiguring prometheus.smithi170 (dependencies changed)... 2024-03-24T12:12:41.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:41 smithi170 bash[18738]: cephadm 2024-03-24T12:12:39.831756+0000 mgr.smithi170.xkyvyq (mgr.14199) 61 : cephadm 1 Reconfiguring daemon prometheus.smithi170 on smithi170 2024-03-24T12:12:41.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:41 smithi172 bash[23876]: cephadm 2024-03-24T12:12:39.598072+0000 mgr.smithi170.xkyvyq (mgr.14199) 60 : cephadm 1 Reconfiguring prometheus.smithi170 (dependencies changed)... 2024-03-24T12:12:41.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:41 smithi172 bash[23876]: cephadm 2024-03-24T12:12:39.831756+0000 mgr.smithi170.xkyvyq (mgr.14199) 61 : cephadm 1 Reconfiguring daemon prometheus.smithi170 on smithi170 2024-03-24T12:12:42.508 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:12:42.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:42 smithi170 bash[18738]: cluster 2024-03-24T12:12:40.893217+0000 mgr.smithi170.xkyvyq (mgr.14199) 62 : cluster 0 pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:42.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:42 smithi170 bash[18738]: audit 2024-03-24T12:12:42.508204+0000 mon.smithi170 (mon.0) 321 : audit 0 from='client.? 172.21.15.170:0/2440115548' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:12:42.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:42 smithi172 bash[23876]: cluster 2024-03-24T12:12:40.893217+0000 mgr.smithi170.xkyvyq (mgr.14199) 62 : cluster 0 pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:42.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:42 smithi172 bash[23876]: audit 2024-03-24T12:12:42.508204+0000 mon.smithi170 (mon.0) 321 : audit 0 from='client.? 172.21.15.170:0/2440115548' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:12:43.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:43 smithi172 bash[23876]: cluster 2024-03-24T12:12:42.893637+0000 mgr.smithi170.xkyvyq (mgr.14199) 63 : cluster 0 pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:43.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:43 smithi170 bash[18738]: cluster 2024-03-24T12:12:42.893637+0000 mgr.smithi170.xkyvyq (mgr.14199) 63 : cluster 0 pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:44.273 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-03-24T12:12:44.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:44 smithi172 bash[23876]: audit 2024-03-24T12:12:43.903141+0000 mon.smithi170 (mon.0) 322 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:12:44.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:44 smithi170 bash[18738]: audit 2024-03-24T12:12:43.903141+0000 mon.smithi170 (mon.0) 322 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:12:45.277 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd stat -f json 2024-03-24T12:12:45.884 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:45 smithi172 bash[23876]: cluster 2024-03-24T12:12:44.894114+0000 mgr.smithi170.xkyvyq (mgr.14199) 64 : cluster 0 pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:45.930 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:45 smithi170 bash[18738]: cluster 2024-03-24T12:12:44.894114+0000 mgr.smithi170.xkyvyq (mgr.14199) 64 : cluster 0 pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:47.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:47 smithi170 bash[18738]: audit 2024-03-24T12:12:46.514877+0000 mon.smithi170 (mon.0) 323 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:47.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:47 smithi170 bash[18738]: audit 2024-03-24T12:12:46.519687+0000 mon.smithi170 (mon.0) 324 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:47.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:47 smithi170 bash[18738]: audit 2024-03-24T12:12:46.569500+0000 mon.smithi170 (mon.0) 325 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi172", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-24T12:12:47.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:47 smithi170 bash[18738]: audit 2024-03-24T12:12:46.570775+0000 mon.smithi170 (mon.0) 326 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:47.763 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:47 smithi172 bash[23876]: audit 2024-03-24T12:12:46.514877+0000 mon.smithi170 (mon.0) 323 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:47.763 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:47 smithi172 bash[23876]: audit 2024-03-24T12:12:46.519687+0000 mon.smithi170 (mon.0) 324 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:47.763 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:47 smithi172 bash[23876]: audit 2024-03-24T12:12:46.569500+0000 mon.smithi170 (mon.0) 325 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi172", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-03-24T12:12:47.763 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:47 smithi172 bash[23876]: audit 2024-03-24T12:12:46.570775+0000 mon.smithi170 (mon.0) 326 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:48.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:48 smithi172 bash[23876]: cephadm 2024-03-24T12:12:46.569059+0000 mgr.smithi170.xkyvyq (mgr.14199) 65 : cephadm 1 Reconfiguring crash.smithi172 (monmap changed)... 2024-03-24T12:12:48.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:48 smithi172 bash[23876]: cephadm 2024-03-24T12:12:46.571649+0000 mgr.smithi170.xkyvyq (mgr.14199) 66 : cephadm 1 Reconfiguring daemon crash.smithi172 on smithi172 2024-03-24T12:12:48.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:48 smithi172 bash[23876]: cluster 2024-03-24T12:12:46.894480+0000 mgr.smithi170.xkyvyq (mgr.14199) 67 : cluster 0 pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:48.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:48 smithi172 bash[23876]: audit 2024-03-24T12:12:48.245696+0000 mon.smithi170 (mon.0) 327 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:48.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:48 smithi172 bash[23876]: audit 2024-03-24T12:12:48.255789+0000 mon.smithi170 (mon.0) 328 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:48.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:48 smithi172 bash[23876]: audit 2024-03-24T12:12:48.291234+0000 mon.smithi170 (mon.0) 329 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi172.uznkeq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-24T12:12:48.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:48 smithi172 bash[23876]: audit 2024-03-24T12:12:48.293156+0000 mon.smithi170 (mon.0) 330 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-24T12:12:48.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:48 smithi172 bash[23876]: audit 2024-03-24T12:12:48.294670+0000 mon.smithi170 (mon.0) 331 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:48.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:48 smithi170 bash[18738]: cephadm 2024-03-24T12:12:46.569059+0000 mgr.smithi170.xkyvyq (mgr.14199) 65 : cephadm 1 Reconfiguring crash.smithi172 (monmap changed)... 2024-03-24T12:12:48.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:48 smithi170 bash[18738]: cephadm 2024-03-24T12:12:46.571649+0000 mgr.smithi170.xkyvyq (mgr.14199) 66 : cephadm 1 Reconfiguring daemon crash.smithi172 on smithi172 2024-03-24T12:12:48.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:48 smithi170 bash[18738]: cluster 2024-03-24T12:12:46.894480+0000 mgr.smithi170.xkyvyq (mgr.14199) 67 : cluster 0 pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:48.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:48 smithi170 bash[18738]: audit 2024-03-24T12:12:48.245696+0000 mon.smithi170 (mon.0) 327 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:48.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:48 smithi170 bash[18738]: audit 2024-03-24T12:12:48.255789+0000 mon.smithi170 (mon.0) 328 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:48.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:48 smithi170 bash[18738]: audit 2024-03-24T12:12:48.291234+0000 mon.smithi170 (mon.0) 329 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi172.uznkeq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-03-24T12:12:48.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:48 smithi170 bash[18738]: audit 2024-03-24T12:12:48.293156+0000 mon.smithi170 (mon.0) 330 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mgr services"}]: dispatch 2024-03-24T12:12:48.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:48 smithi170 bash[18738]: audit 2024-03-24T12:12:48.294670+0000 mon.smithi170 (mon.0) 331 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:49.587 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:49 smithi172 bash[23876]: cephadm 2024-03-24T12:12:48.290496+0000 mgr.smithi170.xkyvyq (mgr.14199) 68 : cephadm 1 Reconfiguring mgr.smithi172.uznkeq (monmap changed)... 2024-03-24T12:12:49.587 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:49 smithi172 bash[23876]: cephadm 2024-03-24T12:12:48.296672+0000 mgr.smithi170.xkyvyq (mgr.14199) 69 : cephadm 1 Reconfiguring daemon mgr.smithi172.uznkeq on smithi172 2024-03-24T12:12:49.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:49 smithi170 bash[18738]: cephadm 2024-03-24T12:12:48.290496+0000 mgr.smithi170.xkyvyq (mgr.14199) 68 : cephadm 1 Reconfiguring mgr.smithi172.uznkeq (monmap changed)... 2024-03-24T12:12:49.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:49 smithi170 bash[18738]: cephadm 2024-03-24T12:12:48.296672+0000 mgr.smithi170.xkyvyq (mgr.14199) 69 : cephadm 1 Reconfiguring daemon mgr.smithi172.uznkeq on smithi172 2024-03-24T12:12:50.027 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:12:50.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:50 smithi172 bash[23876]: cluster 2024-03-24T12:12:48.894930+0000 mgr.smithi170.xkyvyq (mgr.14199) 70 : cluster 0 pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:50.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:50 smithi172 bash[23876]: audit 2024-03-24T12:12:49.933853+0000 mon.smithi170 (mon.0) 332 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:50.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:50 smithi172 bash[23876]: audit 2024-03-24T12:12:49.943084+0000 mon.smithi170 (mon.0) 333 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:50.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:50 smithi172 bash[23876]: audit 2024-03-24T12:12:49.966103+0000 mon.smithi170 (mon.0) 334 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-24T12:12:50.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:50 smithi172 bash[23876]: audit 2024-03-24T12:12:49.967861+0000 mon.smithi170 (mon.0) 335 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-24T12:12:50.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:50 smithi172 bash[23876]: audit 2024-03-24T12:12:49.969566+0000 mon.smithi170 (mon.0) 336 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:50.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:50 smithi170 bash[18738]: cluster 2024-03-24T12:12:48.894930+0000 mgr.smithi170.xkyvyq (mgr.14199) 70 : cluster 0 pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:50.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:50 smithi170 bash[18738]: audit 2024-03-24T12:12:49.933853+0000 mon.smithi170 (mon.0) 332 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:50.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:50 smithi170 bash[18738]: audit 2024-03-24T12:12:49.943084+0000 mon.smithi170 (mon.0) 333 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:50.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:50 smithi170 bash[18738]: audit 2024-03-24T12:12:49.966103+0000 mon.smithi170 (mon.0) 334 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-03-24T12:12:50.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:50 smithi170 bash[18738]: audit 2024-03-24T12:12:49.967861+0000 mon.smithi170 (mon.0) 335 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-03-24T12:12:50.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:50 smithi170 bash[18738]: audit 2024-03-24T12:12:49.969566+0000 mon.smithi170 (mon.0) 336 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:51.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:51 smithi172 bash[23876]: cephadm 2024-03-24T12:12:49.965489+0000 mgr.smithi170.xkyvyq (mgr.14199) 71 : cephadm 1 Reconfiguring mon.smithi172 (monmap changed)... 2024-03-24T12:12:51.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:51 smithi172 bash[23876]: cephadm 2024-03-24T12:12:49.971527+0000 mgr.smithi170.xkyvyq (mgr.14199) 72 : cephadm 1 Reconfiguring daemon mon.smithi172 on smithi172 2024-03-24T12:12:51.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:51 smithi170 bash[18738]: cephadm 2024-03-24T12:12:49.965489+0000 mgr.smithi170.xkyvyq (mgr.14199) 71 : cephadm 1 Reconfiguring mon.smithi172 (monmap changed)... 2024-03-24T12:12:51.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:51 smithi170 bash[18738]: cephadm 2024-03-24T12:12:49.971527+0000 mgr.smithi170.xkyvyq (mgr.14199) 72 : cephadm 1 Reconfiguring daemon mon.smithi172 on smithi172 2024-03-24T12:12:52.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: cluster 2024-03-24T12:12:50.895388+0000 mgr.smithi170.xkyvyq (mgr.14199) 73 : cluster 0 pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:52.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: audit 2024-03-24T12:12:51.563866+0000 mon.smithi170 (mon.0) 337 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:52.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: audit 2024-03-24T12:12:51.573249+0000 mon.smithi170 (mon.0) 338 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:52.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: audit 2024-03-24T12:12:51.592499+0000 mon.smithi170 (mon.0) 339 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-03-24T12:12:52.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: audit 2024-03-24T12:12:51.595908+0000 mon.smithi170 (mon.0) 340 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi170.front.sepia.ceph.com:9093"}]: dispatch 2024-03-24T12:12:52.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: audit 2024-03-24T12:12:51.603419+0000 mon.smithi170 (mon.0) 341 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:52.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: audit 2024-03-24T12:12:51.951379+0000 mon.smithi170 (mon.0) 342 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-03-24T12:12:52.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: audit 2024-03-24T12:12:51.956634+0000 mon.smithi170 (mon.0) 343 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi170.front.sepia.ceph.com:3000"}]: dispatch 2024-03-24T12:12:52.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: audit 2024-03-24T12:12:51.961496+0000 mon.smithi170 (mon.0) 344 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:52.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: audit 2024-03-24T12:12:51.969248+0000 mon.smithi170 (mon.0) 345 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-24T12:12:52.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: audit 2024-03-24T12:12:51.976550+0000 mon.smithi170 (mon.0) 346 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi170.front.sepia.ceph.com:9095"}]: dispatch 2024-03-24T12:12:52.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: audit 2024-03-24T12:12:51.981012+0000 mon.smithi170 (mon.0) 347 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:52.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:52 smithi172 bash[23876]: audit 2024-03-24T12:12:51.994508+0000 mon.smithi170 (mon.0) 348 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:12:52.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: cluster 2024-03-24T12:12:50.895388+0000 mgr.smithi170.xkyvyq (mgr.14199) 73 : cluster 0 pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:52.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: audit 2024-03-24T12:12:51.563866+0000 mon.smithi170 (mon.0) 337 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:52.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: audit 2024-03-24T12:12:51.573249+0000 mon.smithi170 (mon.0) 338 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:52.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: audit 2024-03-24T12:12:51.592499+0000 mon.smithi170 (mon.0) 339 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-03-24T12:12:52.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: audit 2024-03-24T12:12:51.595908+0000 mon.smithi170 (mon.0) 340 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi170.front.sepia.ceph.com:9093"}]: dispatch 2024-03-24T12:12:52.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: audit 2024-03-24T12:12:51.603419+0000 mon.smithi170 (mon.0) 341 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:52.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: audit 2024-03-24T12:12:51.951379+0000 mon.smithi170 (mon.0) 342 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-03-24T12:12:52.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: audit 2024-03-24T12:12:51.956634+0000 mon.smithi170 (mon.0) 343 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi170.front.sepia.ceph.com:3000"}]: dispatch 2024-03-24T12:12:52.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: audit 2024-03-24T12:12:51.961496+0000 mon.smithi170 (mon.0) 344 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:52.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: audit 2024-03-24T12:12:51.969248+0000 mon.smithi170 (mon.0) 345 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-24T12:12:52.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: audit 2024-03-24T12:12:51.976550+0000 mon.smithi170 (mon.0) 346 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi170.front.sepia.ceph.com:9095"}]: dispatch 2024-03-24T12:12:52.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: audit 2024-03-24T12:12:51.981012+0000 mon.smithi170 (mon.0) 347 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:52.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:52 smithi170 bash[18738]: audit 2024-03-24T12:12:51.994508+0000 mon.smithi170 (mon.0) 348 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:12:53.148 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:12:53.916 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:53 smithi170 bash[18738]: audit 2024-03-24T12:12:51.593577+0000 mgr.smithi170.xkyvyq (mgr.14199) 74 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-03-24T12:12:53.916 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:53 smithi170 bash[18738]: audit 2024-03-24T12:12:51.596812+0000 mgr.smithi170.xkyvyq (mgr.14199) 75 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi170.front.sepia.ceph.com:9093"}]: dispatch 2024-03-24T12:12:53.916 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:53 smithi170 bash[18738]: audit 2024-03-24T12:12:51.951859+0000 mgr.smithi170.xkyvyq (mgr.14199) 76 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-03-24T12:12:53.916 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:53 smithi170 bash[18738]: audit 2024-03-24T12:12:51.957053+0000 mgr.smithi170.xkyvyq (mgr.14199) 77 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi170.front.sepia.ceph.com:3000"}]: dispatch 2024-03-24T12:12:53.916 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:53 smithi170 bash[18738]: audit 2024-03-24T12:12:51.970179+0000 mgr.smithi170.xkyvyq (mgr.14199) 78 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-24T12:12:53.916 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:53 smithi170 bash[18738]: audit 2024-03-24T12:12:51.977024+0000 mgr.smithi170.xkyvyq (mgr.14199) 79 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi170.front.sepia.ceph.com:9095"}]: dispatch 2024-03-24T12:12:53.917 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:53 smithi170 bash[18738]: audit 2024-03-24T12:12:53.150507+0000 mon.smithi170 (mon.0) 349 : audit 0 from='client.? 172.21.15.170:0/1669840670' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:12:53.917 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-03-24T12:12:53.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:53 smithi172 bash[23876]: audit 2024-03-24T12:12:51.593577+0000 mgr.smithi170.xkyvyq (mgr.14199) 74 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-03-24T12:12:53.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:53 smithi172 bash[23876]: audit 2024-03-24T12:12:51.596812+0000 mgr.smithi170.xkyvyq (mgr.14199) 75 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi170.front.sepia.ceph.com:9093"}]: dispatch 2024-03-24T12:12:53.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:53 smithi172 bash[23876]: audit 2024-03-24T12:12:51.951859+0000 mgr.smithi170.xkyvyq (mgr.14199) 76 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-03-24T12:12:53.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:53 smithi172 bash[23876]: audit 2024-03-24T12:12:51.957053+0000 mgr.smithi170.xkyvyq (mgr.14199) 77 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi170.front.sepia.ceph.com:3000"}]: dispatch 2024-03-24T12:12:53.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:53 smithi172 bash[23876]: audit 2024-03-24T12:12:51.970179+0000 mgr.smithi170.xkyvyq (mgr.14199) 78 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-24T12:12:53.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:53 smithi172 bash[23876]: audit 2024-03-24T12:12:51.977024+0000 mgr.smithi170.xkyvyq (mgr.14199) 79 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi170.front.sepia.ceph.com:9095"}]: dispatch 2024-03-24T12:12:53.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:53 smithi172 bash[23876]: audit 2024-03-24T12:12:53.150507+0000 mon.smithi170 (mon.0) 349 : audit 0 from='client.? 172.21.15.170:0/1669840670' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:12:54.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:54 smithi172 bash[23876]: cluster 2024-03-24T12:12:52.895838+0000 mgr.smithi170.xkyvyq (mgr.14199) 80 : cluster 0 pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:54.918 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd stat -f json 2024-03-24T12:12:54.929 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:54 smithi170 bash[18738]: cluster 2024-03-24T12:12:52.895838+0000 mgr.smithi170.xkyvyq (mgr.14199) 80 : cluster 0 pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:55.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:55 smithi172 bash[23876]: cluster 2024-03-24T12:12:54.896252+0000 mgr.smithi170.xkyvyq (mgr.14199) 81 : cluster 0 pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:55.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:55 smithi170 bash[18738]: cluster 2024-03-24T12:12:54.896252+0000 mgr.smithi170.xkyvyq (mgr.14199) 81 : cluster 0 pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:58.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:58 smithi172 bash[23876]: cluster 2024-03-24T12:12:56.896644+0000 mgr.smithi170.xkyvyq (mgr.14199) 82 : cluster 0 pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:58.669 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:58 smithi172 bash[23876]: audit 2024-03-24T12:12:57.383557+0000 mon.smithi170 (mon.0) 350 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:58.669 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:58 smithi172 bash[23876]: audit 2024-03-24T12:12:57.393169+0000 mon.smithi170 (mon.0) 351 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:58.669 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:58 smithi172 bash[23876]: audit 2024-03-24T12:12:57.970801+0000 mon.smithi170 (mon.0) 352 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:58.669 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:58 smithi172 bash[23876]: audit 2024-03-24T12:12:57.975726+0000 mon.smithi170 (mon.0) 353 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:58.669 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:58 smithi172 bash[23876]: audit 2024-03-24T12:12:58.342527+0000 mon.smithi170 (mon.0) 354 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:58.669 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:58 smithi172 bash[23876]: audit 2024-03-24T12:12:58.350642+0000 mon.smithi170 (mon.0) 355 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:58.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:58 smithi170 bash[18738]: cluster 2024-03-24T12:12:56.896644+0000 mgr.smithi170.xkyvyq (mgr.14199) 82 : cluster 0 pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:12:58.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:58 smithi170 bash[18738]: audit 2024-03-24T12:12:57.383557+0000 mon.smithi170 (mon.0) 350 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:58.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:58 smithi170 bash[18738]: audit 2024-03-24T12:12:57.393169+0000 mon.smithi170 (mon.0) 351 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:58.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:58 smithi170 bash[18738]: audit 2024-03-24T12:12:57.970801+0000 mon.smithi170 (mon.0) 352 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:58.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:58 smithi170 bash[18738]: audit 2024-03-24T12:12:57.975726+0000 mon.smithi170 (mon.0) 353 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:58.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:58 smithi170 bash[18738]: audit 2024-03-24T12:12:58.342527+0000 mon.smithi170 (mon.0) 354 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:58.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:58 smithi170 bash[18738]: audit 2024-03-24T12:12:58.350642+0000 mon.smithi170 (mon.0) 355 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:59.466 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:12:59.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:59 smithi172 bash[23876]: audit 2024-03-24T12:12:58.908384+0000 mon.smithi170 (mon.0) 356 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:12:59.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:59 smithi172 bash[23876]: audit 2024-03-24T12:12:58.940359+0000 mon.smithi170 (mon.0) 357 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:59.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:59 smithi172 bash[23876]: audit 2024-03-24T12:12:58.949150+0000 mon.smithi170 (mon.0) 358 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:59.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:59 smithi172 bash[23876]: audit 2024-03-24T12:12:58.951461+0000 mon.smithi170 (mon.0) 359 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:59.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:59 smithi172 bash[23876]: audit 2024-03-24T12:12:58.952766+0000 mon.smithi170 (mon.0) 360 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:12:59.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:59 smithi172 bash[23876]: audit 2024-03-24T12:12:58.960157+0000 mon.smithi170 (mon.0) 361 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:59.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:59 smithi172 bash[23876]: audit 2024-03-24T12:12:58.967471+0000 mon.smithi170 (mon.0) 362 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:12:59.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:59 smithi172 bash[23876]: audit 2024-03-24T12:12:58.972535+0000 mon.smithi170 (mon.0) 363 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-24T12:12:59.669 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:59 smithi172 bash[23876]: audit 2024-03-24T12:12:58.973464+0000 mon.smithi170 (mon.0) 364 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:59.669 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:59 smithi172 bash[23876]: audit 2024-03-24T12:12:58.977341+0000 mon.smithi170 (mon.0) 365 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-24T12:12:59.669 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:12:59 smithi172 bash[23876]: audit 2024-03-24T12:12:58.978189+0000 mon.smithi170 (mon.0) 366 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:59.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:59 smithi170 bash[18738]: audit 2024-03-24T12:12:58.908384+0000 mon.smithi170 (mon.0) 356 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:12:59.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:59 smithi170 bash[18738]: audit 2024-03-24T12:12:58.940359+0000 mon.smithi170 (mon.0) 357 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:59.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:59 smithi170 bash[18738]: audit 2024-03-24T12:12:58.949150+0000 mon.smithi170 (mon.0) 358 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:59.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:59 smithi170 bash[18738]: audit 2024-03-24T12:12:58.951461+0000 mon.smithi170 (mon.0) 359 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:59.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:59 smithi170 bash[18738]: audit 2024-03-24T12:12:58.952766+0000 mon.smithi170 (mon.0) 360 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:12:59.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:59 smithi170 bash[18738]: audit 2024-03-24T12:12:58.960157+0000 mon.smithi170 (mon.0) 361 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:12:59.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:59 smithi170 bash[18738]: audit 2024-03-24T12:12:58.967471+0000 mon.smithi170 (mon.0) 362 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:12:59.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:59 smithi170 bash[18738]: audit 2024-03-24T12:12:58.972535+0000 mon.smithi170 (mon.0) 363 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-24T12:12:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:59 smithi170 bash[18738]: audit 2024-03-24T12:12:58.973464+0000 mon.smithi170 (mon.0) 364 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:12:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:59 smithi170 bash[18738]: audit 2024-03-24T12:12:58.977341+0000 mon.smithi170 (mon.0) 365 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-24T12:12:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:12:59 smithi170 bash[18738]: audit 2024-03-24T12:12:58.978189+0000 mon.smithi170 (mon.0) 366 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:00.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:00 smithi172 bash[23876]: cluster 2024-03-24T12:12:58.897026+0000 mgr.smithi170.xkyvyq (mgr.14199) 83 : cluster 0 pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:00.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:00 smithi170 bash[18738]: cluster 2024-03-24T12:12:58.897026+0000 mgr.smithi170.xkyvyq (mgr.14199) 83 : cluster 0 pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:02.298 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:13:02.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:02 smithi172 bash[23876]: cluster 2024-03-24T12:13:00.897440+0000 mgr.smithi170.xkyvyq (mgr.14199) 84 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:02.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:02 smithi172 bash[23876]: audit 2024-03-24T12:13:02.300676+0000 mon.smithi170 (mon.0) 367 : audit 0 from='client.? 172.21.15.170:0/341517663' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:13:02.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:02 smithi170 bash[18738]: cluster 2024-03-24T12:13:00.897440+0000 mgr.smithi170.xkyvyq (mgr.14199) 84 : cluster 0 pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:02.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:02 smithi170 bash[18738]: audit 2024-03-24T12:13:02.300676+0000 mon.smithi170 (mon.0) 367 : audit 0 from='client.? 172.21.15.170:0/341517663' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:13:03.003 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-03-24T12:13:04.005 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd stat -f json 2024-03-24T12:13:04.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:04 smithi170 bash[18738]: cluster 2024-03-24T12:13:02.897859+0000 mgr.smithi170.xkyvyq (mgr.14199) 85 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:04.663 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:04 smithi172 bash[23876]: cluster 2024-03-24T12:13:02.897859+0000 mgr.smithi170.xkyvyq (mgr.14199) 85 : cluster 0 pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:06.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:06 smithi172 bash[23876]: cluster 2024-03-24T12:13:04.898226+0000 mgr.smithi170.xkyvyq (mgr.14199) 86 : cluster 0 pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:06.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:06 smithi170 bash[18738]: cluster 2024-03-24T12:13:04.898226+0000 mgr.smithi170.xkyvyq (mgr.14199) 86 : cluster 0 pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:07.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:07 smithi172 bash[23876]: audit 2024-03-24T12:13:07.359483+0000 mon.smithi172 (mon.1) 2 : audit 1 from='client.? 172.21.15.172:0/2651756945' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c0195287-4817-4a5a-9674-2e26d428488c"}]: dispatch 2024-03-24T12:13:07.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:07 smithi172 bash[23876]: audit 2024-03-24T12:13:07.361564+0000 mon.smithi170 (mon.0) 368 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c0195287-4817-4a5a-9674-2e26d428488c"}]: dispatch 2024-03-24T12:13:07.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:07 smithi172 bash[23876]: audit 2024-03-24T12:13:07.364285+0000 mon.smithi170 (mon.0) 369 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c0195287-4817-4a5a-9674-2e26d428488c"}]': finished 2024-03-24T12:13:07.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:07 smithi172 bash[23876]: cluster 2024-03-24T12:13:07.367556+0000 mon.smithi170 (mon.0) 370 : cluster 0 osdmap e6: 1 total, 0 up, 1 in 2024-03-24T12:13:07.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:07 smithi172 bash[23876]: audit 2024-03-24T12:13:07.368174+0000 mon.smithi170 (mon.0) 371 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:07.691 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:07 smithi170 bash[18738]: audit 2024-03-24T12:13:07.359483+0000 mon.smithi172 (mon.1) 2 : audit 1 from='client.? 172.21.15.172:0/2651756945' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c0195287-4817-4a5a-9674-2e26d428488c"}]: dispatch 2024-03-24T12:13:07.691 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:07 smithi170 bash[18738]: audit 2024-03-24T12:13:07.361564+0000 mon.smithi170 (mon.0) 368 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c0195287-4817-4a5a-9674-2e26d428488c"}]: dispatch 2024-03-24T12:13:07.691 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:07 smithi170 bash[18738]: audit 2024-03-24T12:13:07.364285+0000 mon.smithi170 (mon.0) 369 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c0195287-4817-4a5a-9674-2e26d428488c"}]': finished 2024-03-24T12:13:07.691 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:07 smithi170 bash[18738]: cluster 2024-03-24T12:13:07.367556+0000 mon.smithi170 (mon.0) 370 : cluster 0 osdmap e6: 1 total, 0 up, 1 in 2024-03-24T12:13:07.691 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:07 smithi170 bash[18738]: audit 2024-03-24T12:13:07.368174+0000 mon.smithi170 (mon.0) 371 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:08.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:08 smithi172 bash[23876]: cluster 2024-03-24T12:13:06.898607+0000 mgr.smithi170.xkyvyq (mgr.14199) 87 : cluster 0 pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:08.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:08 smithi172 bash[23876]: audit 2024-03-24T12:13:07.445564+0000 mon.smithi170 (mon.0) 372 : audit 1 from='client.? 172.21.15.170:0/128336358' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e0a87f99-39e1-41f7-87ce-62a67d001c4d"}]: dispatch 2024-03-24T12:13:08.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:08 smithi172 bash[23876]: audit 2024-03-24T12:13:07.447954+0000 mon.smithi170 (mon.0) 373 : audit 1 from='client.? 172.21.15.170:0/128336358' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e0a87f99-39e1-41f7-87ce-62a67d001c4d"}]': finished 2024-03-24T12:13:08.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:08 smithi172 bash[23876]: cluster 2024-03-24T12:13:07.451084+0000 mon.smithi170 (mon.0) 374 : cluster 0 osdmap e7: 2 total, 0 up, 2 in 2024-03-24T12:13:08.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:08 smithi172 bash[23876]: audit 2024-03-24T12:13:07.451332+0000 mon.smithi170 (mon.0) 375 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:08.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:08 smithi172 bash[23876]: audit 2024-03-24T12:13:07.451582+0000 mon.smithi170 (mon.0) 376 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:08.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:08 smithi170 bash[18738]: cluster 2024-03-24T12:13:06.898607+0000 mgr.smithi170.xkyvyq (mgr.14199) 87 : cluster 0 pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:08.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:08 smithi170 bash[18738]: audit 2024-03-24T12:13:07.445564+0000 mon.smithi170 (mon.0) 372 : audit 1 from='client.? 172.21.15.170:0/128336358' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e0a87f99-39e1-41f7-87ce-62a67d001c4d"}]: dispatch 2024-03-24T12:13:08.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:08 smithi170 bash[18738]: audit 2024-03-24T12:13:07.447954+0000 mon.smithi170 (mon.0) 373 : audit 1 from='client.? 172.21.15.170:0/128336358' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e0a87f99-39e1-41f7-87ce-62a67d001c4d"}]': finished 2024-03-24T12:13:08.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:08 smithi170 bash[18738]: cluster 2024-03-24T12:13:07.451084+0000 mon.smithi170 (mon.0) 374 : cluster 0 osdmap e7: 2 total, 0 up, 2 in 2024-03-24T12:13:08.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:08 smithi170 bash[18738]: audit 2024-03-24T12:13:07.451332+0000 mon.smithi170 (mon.0) 375 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:08.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:08 smithi170 bash[18738]: audit 2024-03-24T12:13:07.451582+0000 mon.smithi170 (mon.0) 376 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:09.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:09 smithi172 bash[23876]: audit 2024-03-24T12:13:08.938819+0000 mon.smithi172 (mon.1) 3 : audit 0 from='client.? 172.21.15.172:0/1552726787' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:09.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:09 smithi172 bash[23876]: audit 2024-03-24T12:13:09.004915+0000 mon.smithi170 (mon.0) 377 : audit 0 from='client.? 172.21.15.170:0/1657788838' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:09.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:09 smithi170 bash[18738]: audit 2024-03-24T12:13:08.938819+0000 mon.smithi172 (mon.1) 3 : audit 0 from='client.? 172.21.15.172:0/1552726787' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:09.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:09 smithi170 bash[18738]: audit 2024-03-24T12:13:09.004915+0000 mon.smithi170 (mon.0) 377 : audit 0 from='client.? 172.21.15.170:0/1657788838' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:09.761 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:13:10.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:10 smithi172 bash[23876]: cluster 2024-03-24T12:13:08.899007+0000 mgr.smithi170.xkyvyq (mgr.14199) 88 : cluster 0 pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:10.671 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:10 smithi170 bash[18738]: cluster 2024-03-24T12:13:08.899007+0000 mgr.smithi170.xkyvyq (mgr.14199) 88 : cluster 0 pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:12.664 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:13:12.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: cluster 2024-03-24T12:13:10.899319+0000 mgr.smithi170.xkyvyq (mgr.14199) 89 : cluster 0 pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: audit 2024-03-24T12:13:11.722519+0000 mon.smithi172 (mon.1) 4 : audit 1 from='client.? 172.21.15.172:0/419152353' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59ea542a-5a64-46b6-9754-53a0663f8756"}]: dispatch 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: audit 2024-03-24T12:13:11.724430+0000 mon.smithi170 (mon.0) 378 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59ea542a-5a64-46b6-9754-53a0663f8756"}]: dispatch 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: audit 2024-03-24T12:13:11.727454+0000 mon.smithi170 (mon.0) 379 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "59ea542a-5a64-46b6-9754-53a0663f8756"}]': finished 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: cluster 2024-03-24T12:13:11.730794+0000 mon.smithi170 (mon.0) 380 : cluster 0 osdmap e8: 3 total, 0 up, 3 in 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: audit 2024-03-24T12:13:11.731156+0000 mon.smithi170 (mon.0) 381 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: audit 2024-03-24T12:13:11.731573+0000 mon.smithi170 (mon.0) 382 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: audit 2024-03-24T12:13:11.732142+0000 mon.smithi170 (mon.0) 383 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: audit 2024-03-24T12:13:11.797633+0000 mon.smithi170 (mon.0) 384 : audit 1 from='client.? 172.21.15.170:0/3700408792' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "eaf1c12a-dd5d-4b5d-9d80-339c98f2527c"}]: dispatch 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: audit 2024-03-24T12:13:11.800409+0000 mon.smithi170 (mon.0) 385 : audit 1 from='client.? 172.21.15.170:0/3700408792' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "eaf1c12a-dd5d-4b5d-9d80-339c98f2527c"}]': finished 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: cluster 2024-03-24T12:13:11.802916+0000 mon.smithi170 (mon.0) 386 : cluster 0 osdmap e9: 4 total, 0 up, 4 in 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: audit 2024-03-24T12:13:11.803207+0000 mon.smithi170 (mon.0) 387 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: audit 2024-03-24T12:13:11.803433+0000 mon.smithi170 (mon.0) 388 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:12.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: audit 2024-03-24T12:13:11.803644+0000 mon.smithi170 (mon.0) 389 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:12.669 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:12 smithi172 bash[23876]: audit 2024-03-24T12:13:11.803832+0000 mon.smithi170 (mon.0) 390 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:12.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: cluster 2024-03-24T12:13:10.899319+0000 mgr.smithi170.xkyvyq (mgr.14199) 89 : cluster 0 pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:12.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: audit 2024-03-24T12:13:11.722519+0000 mon.smithi172 (mon.1) 4 : audit 1 from='client.? 172.21.15.172:0/419152353' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59ea542a-5a64-46b6-9754-53a0663f8756"}]: dispatch 2024-03-24T12:13:12.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: audit 2024-03-24T12:13:11.724430+0000 mon.smithi170 (mon.0) 378 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "59ea542a-5a64-46b6-9754-53a0663f8756"}]: dispatch 2024-03-24T12:13:12.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: audit 2024-03-24T12:13:11.727454+0000 mon.smithi170 (mon.0) 379 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "59ea542a-5a64-46b6-9754-53a0663f8756"}]': finished 2024-03-24T12:13:12.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: cluster 2024-03-24T12:13:11.730794+0000 mon.smithi170 (mon.0) 380 : cluster 0 osdmap e8: 3 total, 0 up, 3 in 2024-03-24T12:13:12.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: audit 2024-03-24T12:13:11.731156+0000 mon.smithi170 (mon.0) 381 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:12.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: audit 2024-03-24T12:13:11.731573+0000 mon.smithi170 (mon.0) 382 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:12.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: audit 2024-03-24T12:13:11.732142+0000 mon.smithi170 (mon.0) 383 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:12.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: audit 2024-03-24T12:13:11.797633+0000 mon.smithi170 (mon.0) 384 : audit 1 from='client.? 172.21.15.170:0/3700408792' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "eaf1c12a-dd5d-4b5d-9d80-339c98f2527c"}]: dispatch 2024-03-24T12:13:12.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: audit 2024-03-24T12:13:11.800409+0000 mon.smithi170 (mon.0) 385 : audit 1 from='client.? 172.21.15.170:0/3700408792' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "eaf1c12a-dd5d-4b5d-9d80-339c98f2527c"}]': finished 2024-03-24T12:13:12.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: cluster 2024-03-24T12:13:11.802916+0000 mon.smithi170 (mon.0) 386 : cluster 0 osdmap e9: 4 total, 0 up, 4 in 2024-03-24T12:13:12.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: audit 2024-03-24T12:13:11.803207+0000 mon.smithi170 (mon.0) 387 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:12.679 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: audit 2024-03-24T12:13:11.803433+0000 mon.smithi170 (mon.0) 388 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:12.679 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: audit 2024-03-24T12:13:11.803644+0000 mon.smithi170 (mon.0) 389 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:12.679 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:12 smithi170 bash[18738]: audit 2024-03-24T12:13:11.803832+0000 mon.smithi170 (mon.0) 390 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:13.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:13 smithi170 bash[18738]: audit 2024-03-24T12:13:12.666271+0000 mon.smithi170 (mon.0) 391 : audit 0 from='client.? 172.21.15.170:0/1292200583' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:13:13.678 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:13 smithi170 bash[18738]: audit 2024-03-24T12:13:13.291545+0000 mon.smithi172 (mon.1) 5 : audit 0 from='client.? 172.21.15.172:0/4124672981' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:13.679 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1711282391,"num_remapped_pgs":0} 2024-03-24T12:13:13.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:13 smithi172 bash[23876]: audit 2024-03-24T12:13:12.666271+0000 mon.smithi170 (mon.0) 391 : audit 0 from='client.? 172.21.15.170:0/1292200583' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:13:13.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:13 smithi172 bash[23876]: audit 2024-03-24T12:13:13.291545+0000 mon.smithi172 (mon.1) 5 : audit 0 from='client.? 172.21.15.172:0/4124672981' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:14.681 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd stat -f json 2024-03-24T12:13:14.690 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:14 smithi170 bash[18738]: cluster 2024-03-24T12:13:12.899774+0000 mgr.smithi170.xkyvyq (mgr.14199) 90 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:14.690 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:14 smithi170 bash[18738]: audit 2024-03-24T12:13:13.761215+0000 mon.smithi170 (mon.0) 392 : audit 0 from='client.? 172.21.15.170:0/2454548632' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:14.690 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:14 smithi170 bash[18738]: audit 2024-03-24T12:13:13.908244+0000 mon.smithi170 (mon.0) 393 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:13:14.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:14 smithi172 bash[23876]: cluster 2024-03-24T12:13:12.899774+0000 mgr.smithi170.xkyvyq (mgr.14199) 90 : cluster 0 pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:14.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:14 smithi172 bash[23876]: audit 2024-03-24T12:13:13.761215+0000 mon.smithi170 (mon.0) 392 : audit 0 from='client.? 172.21.15.170:0/2454548632' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:14.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:14 smithi172 bash[23876]: audit 2024-03-24T12:13:13.908244+0000 mon.smithi170 (mon.0) 393 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:13:16.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:16 smithi172 bash[23876]: cluster 2024-03-24T12:13:14.900208+0000 mgr.smithi170.xkyvyq (mgr.14199) 91 : cluster 0 pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:16.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:16 smithi172 bash[23876]: audit 2024-03-24T12:13:16.080151+0000 mon.smithi172 (mon.1) 6 : audit 1 from='client.? 172.21.15.172:0/1447796283' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7a32bdf5-4799-4b04-8537-7ea5516c964d"}]: dispatch 2024-03-24T12:13:16.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:16 smithi172 bash[23876]: audit 2024-03-24T12:13:16.081986+0000 mon.smithi170 (mon.0) 394 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7a32bdf5-4799-4b04-8537-7ea5516c964d"}]: dispatch 2024-03-24T12:13:16.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:16 smithi172 bash[23876]: audit 2024-03-24T12:13:16.083983+0000 mon.smithi170 (mon.0) 395 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7a32bdf5-4799-4b04-8537-7ea5516c964d"}]': finished 2024-03-24T12:13:16.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:16 smithi172 bash[23876]: cluster 2024-03-24T12:13:16.086689+0000 mon.smithi170 (mon.0) 396 : cluster 0 osdmap e10: 5 total, 0 up, 5 in 2024-03-24T12:13:16.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:16 smithi172 bash[23876]: audit 2024-03-24T12:13:16.086882+0000 mon.smithi170 (mon.0) 397 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:16.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:16 smithi172 bash[23876]: audit 2024-03-24T12:13:16.087163+0000 mon.smithi170 (mon.0) 398 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:16.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:16 smithi172 bash[23876]: audit 2024-03-24T12:13:16.087410+0000 mon.smithi170 (mon.0) 399 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:16.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:16 smithi172 bash[23876]: audit 2024-03-24T12:13:16.087664+0000 mon.smithi170 (mon.0) 400 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:16.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:16 smithi172 bash[23876]: audit 2024-03-24T12:13:16.087946+0000 mon.smithi170 (mon.0) 401 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:16.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:16 smithi170 bash[18738]: cluster 2024-03-24T12:13:14.900208+0000 mgr.smithi170.xkyvyq (mgr.14199) 91 : cluster 0 pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:16.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:16 smithi170 bash[18738]: audit 2024-03-24T12:13:16.080151+0000 mon.smithi172 (mon.1) 6 : audit 1 from='client.? 172.21.15.172:0/1447796283' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7a32bdf5-4799-4b04-8537-7ea5516c964d"}]: dispatch 2024-03-24T12:13:16.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:16 smithi170 bash[18738]: audit 2024-03-24T12:13:16.081986+0000 mon.smithi170 (mon.0) 394 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7a32bdf5-4799-4b04-8537-7ea5516c964d"}]: dispatch 2024-03-24T12:13:16.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:16 smithi170 bash[18738]: audit 2024-03-24T12:13:16.083983+0000 mon.smithi170 (mon.0) 395 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7a32bdf5-4799-4b04-8537-7ea5516c964d"}]': finished 2024-03-24T12:13:16.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:16 smithi170 bash[18738]: cluster 2024-03-24T12:13:16.086689+0000 mon.smithi170 (mon.0) 396 : cluster 0 osdmap e10: 5 total, 0 up, 5 in 2024-03-24T12:13:16.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:16 smithi170 bash[18738]: audit 2024-03-24T12:13:16.086882+0000 mon.smithi170 (mon.0) 397 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:16.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:16 smithi170 bash[18738]: audit 2024-03-24T12:13:16.087163+0000 mon.smithi170 (mon.0) 398 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:16.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:16 smithi170 bash[18738]: audit 2024-03-24T12:13:16.087410+0000 mon.smithi170 (mon.0) 399 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:16.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:16 smithi170 bash[18738]: audit 2024-03-24T12:13:16.087664+0000 mon.smithi170 (mon.0) 400 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:16.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:16 smithi170 bash[18738]: audit 2024-03-24T12:13:16.087946+0000 mon.smithi170 (mon.0) 401 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:17.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:17 smithi170 bash[18738]: audit 2024-03-24T12:13:16.591407+0000 mon.smithi170 (mon.0) 402 : audit 1 from='client.? 172.21.15.170:0/3003562698' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "39f90824-5989-4d5f-bd5f-4c19969d9511"}]: dispatch 2024-03-24T12:13:17.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:17 smithi170 bash[18738]: audit 2024-03-24T12:13:16.594577+0000 mon.smithi170 (mon.0) 403 : audit 1 from='client.? 172.21.15.170:0/3003562698' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "39f90824-5989-4d5f-bd5f-4c19969d9511"}]': finished 2024-03-24T12:13:17.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:17 smithi170 bash[18738]: cluster 2024-03-24T12:13:16.597617+0000 mon.smithi170 (mon.0) 404 : cluster 0 osdmap e11: 6 total, 0 up, 6 in 2024-03-24T12:13:17.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:17 smithi170 bash[18738]: audit 2024-03-24T12:13:16.597932+0000 mon.smithi170 (mon.0) 405 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:17.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:17 smithi170 bash[18738]: audit 2024-03-24T12:13:16.598133+0000 mon.smithi170 (mon.0) 406 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:17.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:17 smithi170 bash[18738]: audit 2024-03-24T12:13:16.598337+0000 mon.smithi170 (mon.0) 407 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:17.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:17 smithi170 bash[18738]: audit 2024-03-24T12:13:16.598527+0000 mon.smithi170 (mon.0) 408 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:17.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:17 smithi170 bash[18738]: audit 2024-03-24T12:13:16.598754+0000 mon.smithi170 (mon.0) 409 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:17.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:17 smithi170 bash[18738]: audit 2024-03-24T12:13:16.598953+0000 mon.smithi170 (mon.0) 410 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:17.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:17 smithi172 bash[23876]: audit 2024-03-24T12:13:16.591407+0000 mon.smithi170 (mon.0) 402 : audit 1 from='client.? 172.21.15.170:0/3003562698' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "39f90824-5989-4d5f-bd5f-4c19969d9511"}]: dispatch 2024-03-24T12:13:17.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:17 smithi172 bash[23876]: audit 2024-03-24T12:13:16.594577+0000 mon.smithi170 (mon.0) 403 : audit 1 from='client.? 172.21.15.170:0/3003562698' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "39f90824-5989-4d5f-bd5f-4c19969d9511"}]': finished 2024-03-24T12:13:17.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:17 smithi172 bash[23876]: cluster 2024-03-24T12:13:16.597617+0000 mon.smithi170 (mon.0) 404 : cluster 0 osdmap e11: 6 total, 0 up, 6 in 2024-03-24T12:13:17.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:17 smithi172 bash[23876]: audit 2024-03-24T12:13:16.597932+0000 mon.smithi170 (mon.0) 405 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:17.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:17 smithi172 bash[23876]: audit 2024-03-24T12:13:16.598133+0000 mon.smithi170 (mon.0) 406 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:17.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:17 smithi172 bash[23876]: audit 2024-03-24T12:13:16.598337+0000 mon.smithi170 (mon.0) 407 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:17.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:17 smithi172 bash[23876]: audit 2024-03-24T12:13:16.598527+0000 mon.smithi170 (mon.0) 408 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:17.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:17 smithi172 bash[23876]: audit 2024-03-24T12:13:16.598754+0000 mon.smithi170 (mon.0) 409 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:17.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:17 smithi172 bash[23876]: audit 2024-03-24T12:13:16.598953+0000 mon.smithi170 (mon.0) 410 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:18.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:18 smithi170 bash[18738]: cluster 2024-03-24T12:13:16.900522+0000 mgr.smithi170.xkyvyq (mgr.14199) 92 : cluster 0 pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:18.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:18 smithi170 bash[18738]: audit 2024-03-24T12:13:17.777860+0000 mon.smithi172 (mon.1) 7 : audit 0 from='client.? 172.21.15.172:0/328738879' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:18.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:18 smithi170 bash[18738]: audit 2024-03-24T12:13:18.189922+0000 mon.smithi170 (mon.0) 411 : audit 0 from='client.? 172.21.15.170:0/1727800286' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:18.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:18 smithi172 bash[23876]: cluster 2024-03-24T12:13:16.900522+0000 mgr.smithi170.xkyvyq (mgr.14199) 92 : cluster 0 pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:18.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:18 smithi172 bash[23876]: audit 2024-03-24T12:13:17.777860+0000 mon.smithi172 (mon.1) 7 : audit 0 from='client.? 172.21.15.172:0/328738879' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:18.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:18 smithi172 bash[23876]: audit 2024-03-24T12:13:18.189922+0000 mon.smithi170 (mon.0) 411 : audit 0 from='client.? 172.21.15.170:0/1727800286' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:19.432 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:13:20.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:20 smithi170 bash[18738]: cluster 2024-03-24T12:13:18.900943+0000 mgr.smithi170.xkyvyq (mgr.14199) 93 : cluster 0 pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:20.824 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:20 smithi172 bash[23876]: cluster 2024-03-24T12:13:18.900943+0000 mgr.smithi170.xkyvyq (mgr.14199) 93 : cluster 0 pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:21.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.607102+0000 mon.smithi172 (mon.1) 8 : audit 1 from='client.? 172.21.15.172:0/2758806795' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "480691f8-e007-49a8-a931-d26864de9818"}]: dispatch 2024-03-24T12:13:21.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.608592+0000 mon.smithi170 (mon.0) 412 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "480691f8-e007-49a8-a931-d26864de9818"}]: dispatch 2024-03-24T12:13:21.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.610580+0000 mon.smithi170 (mon.0) 413 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "480691f8-e007-49a8-a931-d26864de9818"}]': finished 2024-03-24T12:13:21.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: cluster 2024-03-24T12:13:20.613199+0000 mon.smithi170 (mon.0) 414 : cluster 0 osdmap e12: 7 total, 0 up, 7 in 2024-03-24T12:13:21.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.613399+0000 mon.smithi170 (mon.0) 415 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:21.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.613597+0000 mon.smithi170 (mon.0) 416 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:21.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.613804+0000 mon.smithi170 (mon.0) 417 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:21.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.613995+0000 mon.smithi170 (mon.0) 418 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:21.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.614189+0000 mon.smithi170 (mon.0) 419 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:21.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.614374+0000 mon.smithi170 (mon.0) 420 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:21.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.614560+0000 mon.smithi170 (mon.0) 421 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:21.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.974273+0000 mon.smithi170 (mon.0) 422 : audit 1 from='client.? 172.21.15.170:0/3441057347' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "54b59406-ca96-4dc1-be29-3220bcfa46cc"}]: dispatch 2024-03-24T12:13:21.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.977630+0000 mon.smithi170 (mon.0) 423 : audit 1 from='client.? 172.21.15.170:0/3441057347' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "54b59406-ca96-4dc1-be29-3220bcfa46cc"}]': finished 2024-03-24T12:13:21.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: cluster 2024-03-24T12:13:20.982044+0000 mon.smithi170 (mon.0) 424 : cluster 0 osdmap e13: 8 total, 0 up, 8 in 2024-03-24T12:13:21.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.982310+0000 mon.smithi170 (mon.0) 425 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:21.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.982465+0000 mon.smithi170 (mon.0) 426 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:21.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.982613+0000 mon.smithi170 (mon.0) 427 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:21.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.982763+0000 mon.smithi170 (mon.0) 428 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:21.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.982917+0000 mon.smithi170 (mon.0) 429 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:21.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.983058+0000 mon.smithi170 (mon.0) 430 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:21.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.983198+0000 mon.smithi170 (mon.0) 431 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:21.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:21 smithi170 bash[18738]: audit 2024-03-24T12:13:20.983331+0000 mon.smithi170 (mon.0) 432 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.607102+0000 mon.smithi172 (mon.1) 8 : audit 1 from='client.? 172.21.15.172:0/2758806795' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "480691f8-e007-49a8-a931-d26864de9818"}]: dispatch 2024-03-24T12:13:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.608592+0000 mon.smithi170 (mon.0) 412 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "480691f8-e007-49a8-a931-d26864de9818"}]: dispatch 2024-03-24T12:13:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.610580+0000 mon.smithi170 (mon.0) 413 : audit 1 from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "480691f8-e007-49a8-a931-d26864de9818"}]': finished 2024-03-24T12:13:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: cluster 2024-03-24T12:13:20.613199+0000 mon.smithi170 (mon.0) 414 : cluster 0 osdmap e12: 7 total, 0 up, 7 in 2024-03-24T12:13:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.613399+0000 mon.smithi170 (mon.0) 415 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.613597+0000 mon.smithi170 (mon.0) 416 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.613804+0000 mon.smithi170 (mon.0) 417 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.613995+0000 mon.smithi170 (mon.0) 418 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.614189+0000 mon.smithi170 (mon.0) 419 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.614374+0000 mon.smithi170 (mon.0) 420 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.614560+0000 mon.smithi170 (mon.0) 421 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:21.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.974273+0000 mon.smithi170 (mon.0) 422 : audit 1 from='client.? 172.21.15.170:0/3441057347' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "54b59406-ca96-4dc1-be29-3220bcfa46cc"}]: dispatch 2024-03-24T12:13:21.920 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.977630+0000 mon.smithi170 (mon.0) 423 : audit 1 from='client.? 172.21.15.170:0/3441057347' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "54b59406-ca96-4dc1-be29-3220bcfa46cc"}]': finished 2024-03-24T12:13:21.920 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: cluster 2024-03-24T12:13:20.982044+0000 mon.smithi170 (mon.0) 424 : cluster 0 osdmap e13: 8 total, 0 up, 8 in 2024-03-24T12:13:21.920 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.982310+0000 mon.smithi170 (mon.0) 425 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:21.920 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.982465+0000 mon.smithi170 (mon.0) 426 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:21.920 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.982613+0000 mon.smithi170 (mon.0) 427 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:21.920 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.982763+0000 mon.smithi170 (mon.0) 428 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:21.920 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.982917+0000 mon.smithi170 (mon.0) 429 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:21.920 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.983058+0000 mon.smithi170 (mon.0) 430 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:21.920 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.983198+0000 mon.smithi170 (mon.0) 431 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:21.920 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:21 smithi172 bash[23876]: audit 2024-03-24T12:13:20.983331+0000 mon.smithi170 (mon.0) 432 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:22.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:22 smithi170 bash[18738]: cluster 2024-03-24T12:13:20.901348+0000 mgr.smithi170.xkyvyq (mgr.14199) 94 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:22.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:22 smithi170 bash[18738]: audit 2024-03-24T12:13:22.365008+0000 mon.smithi172 (mon.1) 9 : audit 0 from='client.? 172.21.15.172:0/2209890892' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:22.888 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:13:22.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:22 smithi172 bash[23876]: cluster 2024-03-24T12:13:20.901348+0000 mgr.smithi170.xkyvyq (mgr.14199) 94 : cluster 0 pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:22.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:22 smithi172 bash[23876]: audit 2024-03-24T12:13:22.365008+0000 mon.smithi172 (mon.1) 9 : audit 0 from='client.? 172.21.15.172:0/2209890892' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:23.593 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1711282400,"num_remapped_pgs":0} 2024-03-24T12:13:23.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:23 smithi170 bash[18738]: audit 2024-03-24T12:13:22.890289+0000 mon.smithi170 (mon.0) 433 : audit 0 from='client.? 172.21.15.170:0/3192855436' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:13:23.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:23 smithi170 bash[18738]: audit 2024-03-24T12:13:23.105648+0000 mon.smithi170 (mon.0) 434 : audit 0 from='client.? 172.21.15.170:0/1915504709' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:23.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:23 smithi172 bash[23876]: audit 2024-03-24T12:13:22.890289+0000 mon.smithi170 (mon.0) 433 : audit 0 from='client.? 172.21.15.170:0/3192855436' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:13:23.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:23 smithi172 bash[23876]: audit 2024-03-24T12:13:23.105648+0000 mon.smithi170 (mon.0) 434 : audit 0 from='client.? 172.21.15.170:0/1915504709' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-03-24T12:13:24.595 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd stat -f json 2024-03-24T12:13:24.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:24 smithi170 bash[18738]: cluster 2024-03-24T12:13:22.901654+0000 mgr.smithi170.xkyvyq (mgr.14199) 95 : cluster 0 pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:24.834 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:24 smithi172 bash[23876]: cluster 2024-03-24T12:13:22.901654+0000 mgr.smithi170.xkyvyq (mgr.14199) 95 : cluster 0 pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:26.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:26 smithi170 bash[18738]: cluster 2024-03-24T12:13:24.901997+0000 mgr.smithi170.xkyvyq (mgr.14199) 96 : cluster 0 pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:26.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:26 smithi172 bash[23876]: cluster 2024-03-24T12:13:24.901997+0000 mgr.smithi170.xkyvyq (mgr.14199) 96 : cluster 0 pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:28.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:28 smithi170 bash[18738]: cluster 2024-03-24T12:13:26.902369+0000 mgr.smithi170.xkyvyq (mgr.14199) 97 : cluster 0 pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:28.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:28 smithi172 bash[23876]: cluster 2024-03-24T12:13:26.902369+0000 mgr.smithi170.xkyvyq (mgr.14199) 97 : cluster 0 pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:29.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:29 smithi170 bash[18738]: audit 2024-03-24T12:13:28.909221+0000 mon.smithi170 (mon.0) 435 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:13:29.828 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:13:29.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:29 smithi172 bash[23876]: audit 2024-03-24T12:13:28.909221+0000 mon.smithi170 (mon.0) 435 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:13:30.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:30 smithi170 bash[18738]: cluster 2024-03-24T12:13:28.902749+0000 mgr.smithi170.xkyvyq (mgr.14199) 98 : cluster 0 pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:30.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:30 smithi172 bash[23876]: cluster 2024-03-24T12:13:28.902749+0000 mgr.smithi170.xkyvyq (mgr.14199) 98 : cluster 0 pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:32.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:32 smithi172 bash[23876]: cluster 2024-03-24T12:13:30.903222+0000 mgr.smithi170.xkyvyq (mgr.14199) 99 : cluster 0 pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:32.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:32 smithi170 bash[18738]: cluster 2024-03-24T12:13:30.903222+0000 mgr.smithi170.xkyvyq (mgr.14199) 99 : cluster 0 pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:33.632 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:13:33.647 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:33 smithi170 bash[18738]: audit 2024-03-24T12:13:33.308070+0000 mon.smithi170 (mon.0) 436 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-03-24T12:13:33.647 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:33 smithi170 bash[18738]: audit 2024-03-24T12:13:33.309037+0000 mon.smithi170 (mon.0) 437 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:33.726 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:33 smithi172 bash[23876]: audit 2024-03-24T12:13:33.308070+0000 mon.smithi170 (mon.0) 436 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-03-24T12:13:33.726 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:33 smithi172 bash[23876]: audit 2024-03-24T12:13:33.309037+0000 mon.smithi170 (mon.0) 437 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:34.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:34 smithi172 bash[23876]: cluster 2024-03-24T12:13:32.903613+0000 mgr.smithi170.xkyvyq (mgr.14199) 100 : cluster 0 pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:34.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:34 smithi172 bash[23876]: cephadm 2024-03-24T12:13:33.309855+0000 mgr.smithi170.xkyvyq (mgr.14199) 101 : cephadm 1 Deploying daemon osd.0 on smithi172 2024-03-24T12:13:34.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:34 smithi172 bash[23876]: audit 2024-03-24T12:13:33.634761+0000 mon.smithi170 (mon.0) 438 : audit 0 from='client.? 172.21.15.170:0/3236988654' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:13:34.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:34 smithi170 bash[18738]: cluster 2024-03-24T12:13:32.903613+0000 mgr.smithi170.xkyvyq (mgr.14199) 100 : cluster 0 pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:34.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:34 smithi170 bash[18738]: cephadm 2024-03-24T12:13:33.309855+0000 mgr.smithi170.xkyvyq (mgr.14199) 101 : cephadm 1 Deploying daemon osd.0 on smithi172 2024-03-24T12:13:34.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:34 smithi170 bash[18738]: audit 2024-03-24T12:13:33.634761+0000 mon.smithi170 (mon.0) 438 : audit 0 from='client.? 172.21.15.170:0/3236988654' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:13:34.758 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1711282400,"num_remapped_pgs":0} 2024-03-24T12:13:35.759 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd stat -f json 2024-03-24T12:13:36.765 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:36 smithi172 bash[23876]: cluster 2024-03-24T12:13:34.903986+0000 mgr.smithi170.xkyvyq (mgr.14199) 102 : cluster 0 pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:36.765 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:36 smithi172 bash[23876]: audit 2024-03-24T12:13:36.189362+0000 mon.smithi170 (mon.0) 439 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-03-24T12:13:36.765 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:36 smithi172 bash[23876]: audit 2024-03-24T12:13:36.190561+0000 mon.smithi170 (mon.0) 440 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:36.919 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:36 smithi170 bash[18738]: cluster 2024-03-24T12:13:34.903986+0000 mgr.smithi170.xkyvyq (mgr.14199) 102 : cluster 0 pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:36.920 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:36 smithi170 bash[18738]: audit 2024-03-24T12:13:36.189362+0000 mon.smithi170 (mon.0) 439 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-03-24T12:13:36.920 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:36 smithi170 bash[18738]: audit 2024-03-24T12:13:36.190561+0000 mon.smithi170 (mon.0) 440 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:37.035 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:36 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:37.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:37 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:37.847 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:37 smithi170 bash[18738]: cephadm 2024-03-24T12:13:36.191667+0000 mgr.smithi170.xkyvyq (mgr.14199) 103 : cephadm 1 Deploying daemon osd.1 on smithi170 2024-03-24T12:13:37.847 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:37 smithi170 bash[18738]: audit 2024-03-24T12:13:37.209163+0000 mon.smithi170 (mon.0) 441 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:37.847 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:37 smithi170 bash[18738]: audit 2024-03-24T12:13:37.218654+0000 mon.smithi170 (mon.0) 442 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:37.847 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:37 smithi170 bash[18738]: audit 2024-03-24T12:13:37.220799+0000 mon.smithi170 (mon.0) 443 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-03-24T12:13:37.847 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:37 smithi170 bash[18738]: audit 2024-03-24T12:13:37.222516+0000 mon.smithi170 (mon.0) 444 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:37.955 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:37 smithi172 bash[23876]: cephadm 2024-03-24T12:13:36.191667+0000 mgr.smithi170.xkyvyq (mgr.14199) 103 : cephadm 1 Deploying daemon osd.1 on smithi170 2024-03-24T12:13:37.955 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:37 smithi172 bash[23876]: audit 2024-03-24T12:13:37.209163+0000 mon.smithi170 (mon.0) 441 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:37.955 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:37 smithi172 bash[23876]: audit 2024-03-24T12:13:37.218654+0000 mon.smithi170 (mon.0) 442 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:37.956 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:37 smithi172 bash[23876]: audit 2024-03-24T12:13:37.220799+0000 mon.smithi170 (mon.0) 443 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-03-24T12:13:37.956 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:37 smithi172 bash[23876]: audit 2024-03-24T12:13:37.222516+0000 mon.smithi170 (mon.0) 444 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:38.587 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:38 smithi172 bash[23876]: cluster 2024-03-24T12:13:36.904328+0000 mgr.smithi170.xkyvyq (mgr.14199) 104 : cluster 0 pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:38.588 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:38 smithi172 bash[23876]: cephadm 2024-03-24T12:13:37.224153+0000 mgr.smithi170.xkyvyq (mgr.14199) 105 : cephadm 1 Deploying daemon osd.2 on smithi172 2024-03-24T12:13:38.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:38 smithi170 bash[18738]: cluster 2024-03-24T12:13:36.904328+0000 mgr.smithi170.xkyvyq (mgr.14199) 104 : cluster 0 pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:38.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:38 smithi170 bash[18738]: cephadm 2024-03-24T12:13:37.224153+0000 mgr.smithi170.xkyvyq (mgr.14199) 105 : cephadm 1 Deploying daemon osd.2 on smithi172 2024-03-24T12:13:40.623 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:40 smithi172 bash[23876]: cluster 2024-03-24T12:13:38.904740+0000 mgr.smithi170.xkyvyq (mgr.14199) 106 : cluster 0 pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:40.781 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:13:40.852 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:40 smithi170 bash[18738]: cluster 2024-03-24T12:13:38.904740+0000 mgr.smithi170.xkyvyq (mgr.14199) 106 : cluster 0 pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:40.852 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:40 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:41.120 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:40 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:41.746 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:41 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:42.018 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:41 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:42.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:42 smithi170 bash[18738]: cluster 2024-03-24T12:13:40.905036+0000 mgr.smithi170.xkyvyq (mgr.14199) 107 : cluster 0 pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:42.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:42 smithi170 bash[18738]: audit 2024-03-24T12:13:41.165092+0000 mon.smithi170 (mon.0) 445 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:42.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:42 smithi170 bash[18738]: audit 2024-03-24T12:13:41.173577+0000 mon.smithi170 (mon.0) 446 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:42.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:42 smithi170 bash[18738]: audit 2024-03-24T12:13:41.174654+0000 mon.smithi170 (mon.0) 447 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-03-24T12:13:42.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:42 smithi170 bash[18738]: audit 2024-03-24T12:13:41.175338+0000 mon.smithi170 (mon.0) 448 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:42.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:42 smithi170 bash[18738]: cephadm 2024-03-24T12:13:41.175995+0000 mgr.smithi170.xkyvyq (mgr.14199) 108 : cephadm 1 Deploying daemon osd.3 on smithi170 2024-03-24T12:13:42.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:42 smithi170 bash[18738]: audit 2024-03-24T12:13:42.068964+0000 mon.smithi170 (mon.0) 449 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:42.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:42 smithi170 bash[18738]: audit 2024-03-24T12:13:42.078348+0000 mon.smithi170 (mon.0) 450 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:42.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:42 smithi170 bash[18738]: audit 2024-03-24T12:13:42.080301+0000 mon.smithi170 (mon.0) 451 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-03-24T12:13:42.222 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:42 smithi170 bash[18738]: audit 2024-03-24T12:13:42.081882+0000 mon.smithi170 (mon.0) 452 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:42.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:42 smithi172 bash[23876]: cluster 2024-03-24T12:13:40.905036+0000 mgr.smithi170.xkyvyq (mgr.14199) 107 : cluster 0 pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:42.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:42 smithi172 bash[23876]: audit 2024-03-24T12:13:41.165092+0000 mon.smithi170 (mon.0) 445 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:42.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:42 smithi172 bash[23876]: audit 2024-03-24T12:13:41.173577+0000 mon.smithi170 (mon.0) 446 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:42.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:42 smithi172 bash[23876]: audit 2024-03-24T12:13:41.174654+0000 mon.smithi170 (mon.0) 447 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-03-24T12:13:42.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:42 smithi172 bash[23876]: audit 2024-03-24T12:13:41.175338+0000 mon.smithi170 (mon.0) 448 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:42.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:42 smithi172 bash[23876]: cephadm 2024-03-24T12:13:41.175995+0000 mgr.smithi170.xkyvyq (mgr.14199) 108 : cephadm 1 Deploying daemon osd.3 on smithi170 2024-03-24T12:13:42.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:42 smithi172 bash[23876]: audit 2024-03-24T12:13:42.068964+0000 mon.smithi170 (mon.0) 449 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:42.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:42 smithi172 bash[23876]: audit 2024-03-24T12:13:42.078348+0000 mon.smithi170 (mon.0) 450 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:42.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:42 smithi172 bash[23876]: audit 2024-03-24T12:13:42.080301+0000 mon.smithi170 (mon.0) 451 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-03-24T12:13:42.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:42 smithi172 bash[23876]: audit 2024-03-24T12:13:42.081882+0000 mon.smithi170 (mon.0) 452 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:43.300 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:43 smithi170 bash[18738]: cephadm 2024-03-24T12:13:42.083597+0000 mgr.smithi170.xkyvyq (mgr.14199) 109 : cephadm 1 Deploying daemon osd.4 on smithi172 2024-03-24T12:13:43.371 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:43 smithi172 bash[23876]: cephadm 2024-03-24T12:13:42.083597+0000 mgr.smithi170.xkyvyq (mgr.14199) 109 : cephadm 1 Deploying daemon osd.4 on smithi172 2024-03-24T12:13:44.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:44 smithi170 bash[18738]: cluster 2024-03-24T12:13:42.905469+0000 mgr.smithi170.xkyvyq (mgr.14199) 110 : cluster 0 pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:44.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:44 smithi170 bash[18738]: audit 2024-03-24T12:13:43.908848+0000 mon.smithi170 (mon.0) 453 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:13:44.460 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:44 smithi172 bash[23876]: cluster 2024-03-24T12:13:42.905469+0000 mgr.smithi170.xkyvyq (mgr.14199) 110 : cluster 0 pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:44.460 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:44 smithi172 bash[23876]: audit 2024-03-24T12:13:43.908848+0000 mon.smithi170 (mon.0) 453 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:13:45.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:45 smithi172 bash[23876]: audit 2024-03-24T12:13:44.240237+0000 mon.smithi172 (mon.1) 10 : audit 1 from='osd.0 [v2:172.21.15.172:6800/4129707366,v1:172.21.15.172:6801/4129707366]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-03-24T12:13:45.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:45 smithi172 bash[23876]: audit 2024-03-24T12:13:44.241666+0000 mon.smithi170 (mon.0) 454 : audit 1 from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-03-24T12:13:45.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:45 smithi170 bash[18738]: audit 2024-03-24T12:13:44.240237+0000 mon.smithi172 (mon.1) 10 : audit 1 from='osd.0 [v2:172.21.15.172:6800/4129707366,v1:172.21.15.172:6801/4129707366]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-03-24T12:13:45.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:45 smithi170 bash[18738]: audit 2024-03-24T12:13:44.241666+0000 mon.smithi170 (mon.0) 454 : audit 1 from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-03-24T12:13:46.378 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: cluster 2024-03-24T12:13:44.905828+0000 mgr.smithi170.xkyvyq (mgr.14199) 111 : cluster 0 pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:46.378 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: audit 2024-03-24T12:13:45.181536+0000 mon.smithi170 (mon.0) 455 : audit 1 from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-03-24T12:13:46.378 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: audit 2024-03-24T12:13:45.185725+0000 mon.smithi172 (mon.1) 11 : audit 1 from='osd.0 [v2:172.21.15.172:6800/4129707366,v1:172.21.15.172:6801/4129707366]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:46.378 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: cluster 2024-03-24T12:13:45.186014+0000 mon.smithi170 (mon.0) 456 : cluster 0 osdmap e14: 8 total, 0 up, 8 in 2024-03-24T12:13:46.379 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: audit 2024-03-24T12:13:45.186773+0000 mon.smithi170 (mon.0) 457 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:46.379 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: audit 2024-03-24T12:13:45.187580+0000 mon.smithi170 (mon.0) 458 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:46.379 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: audit 2024-03-24T12:13:45.188336+0000 mon.smithi170 (mon.0) 459 : audit 1 from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:46.379 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: audit 2024-03-24T12:13:45.189060+0000 mon.smithi170 (mon.0) 460 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:46.379 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: audit 2024-03-24T12:13:45.189623+0000 mon.smithi170 (mon.0) 461 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:46.379 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: audit 2024-03-24T12:13:45.190164+0000 mon.smithi170 (mon.0) 462 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:46.379 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: audit 2024-03-24T12:13:45.190714+0000 mon.smithi170 (mon.0) 463 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:46.380 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: audit 2024-03-24T12:13:45.191247+0000 mon.smithi170 (mon.0) 464 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:46.380 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 bash[23876]: audit 2024-03-24T12:13:45.191827+0000 mon.smithi170 (mon.0) 465 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:46.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: cluster 2024-03-24T12:13:44.905828+0000 mgr.smithi170.xkyvyq (mgr.14199) 111 : cluster 0 pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:46.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: audit 2024-03-24T12:13:45.181536+0000 mon.smithi170 (mon.0) 455 : audit 1 from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-03-24T12:13:46.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: audit 2024-03-24T12:13:45.185725+0000 mon.smithi172 (mon.1) 11 : audit 1 from='osd.0 [v2:172.21.15.172:6800/4129707366,v1:172.21.15.172:6801/4129707366]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:46.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: cluster 2024-03-24T12:13:45.186014+0000 mon.smithi170 (mon.0) 456 : cluster 0 osdmap e14: 8 total, 0 up, 8 in 2024-03-24T12:13:46.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: audit 2024-03-24T12:13:45.186773+0000 mon.smithi170 (mon.0) 457 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:46.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: audit 2024-03-24T12:13:45.187580+0000 mon.smithi170 (mon.0) 458 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:46.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: audit 2024-03-24T12:13:45.188336+0000 mon.smithi170 (mon.0) 459 : audit 1 from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:46.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: audit 2024-03-24T12:13:45.189060+0000 mon.smithi170 (mon.0) 460 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:46.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: audit 2024-03-24T12:13:45.189623+0000 mon.smithi170 (mon.0) 461 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:46.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: audit 2024-03-24T12:13:45.190164+0000 mon.smithi170 (mon.0) 462 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:46.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: audit 2024-03-24T12:13:45.190714+0000 mon.smithi170 (mon.0) 463 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:46.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: audit 2024-03-24T12:13:45.191247+0000 mon.smithi170 (mon.0) 464 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:46.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:46 smithi170 bash[18738]: audit 2024-03-24T12:13:45.191827+0000 mon.smithi170 (mon.0) 465 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:46.633 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:46.885 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:13:46.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:46 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:47.587 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.183863+0000 mon.smithi170 (mon.0) 466 : audit 1 from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-03-24T12:13:47.587 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: cluster 2024-03-24T12:13:46.188807+0000 mon.smithi170 (mon.0) 467 : cluster 0 osdmap e15: 8 total, 0 up, 8 in 2024-03-24T12:13:47.587 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.189703+0000 mon.smithi170 (mon.0) 468 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:47.587 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.190287+0000 mon.smithi170 (mon.0) 469 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:47.587 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.190834+0000 mon.smithi170 (mon.0) 470 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:47.587 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.191433+0000 mon.smithi170 (mon.0) 471 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:47.587 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.191996+0000 mon.smithi170 (mon.0) 472 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:47.587 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.192644+0000 mon.smithi170 (mon.0) 473 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:47.587 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.200990+0000 mon.smithi170 (mon.0) 474 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:47.587 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.201406+0000 mon.smithi170 (mon.0) 475 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:47.588 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.201790+0000 mon.smithi170 (mon.0) 476 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:47.588 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.689097+0000 mon.smithi170 (mon.0) 477 : audit 1 from='osd.0 ' entity='osd.0' 2024-03-24T12:13:47.588 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.808469+0000 mon.smithi170 (mon.0) 478 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:47.588 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.816584+0000 mon.smithi170 (mon.0) 479 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:47.588 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.818334+0000 mon.smithi170 (mon.0) 480 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-03-24T12:13:47.588 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.819737+0000 mon.smithi170 (mon.0) 481 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:47.588 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:47 smithi170 bash[18738]: audit 2024-03-24T12:13:46.887110+0000 mon.smithi170 (mon.0) 482 : audit 0 from='client.? 172.21.15.170:0/2636209181' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:13:47.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.183863+0000 mon.smithi170 (mon.0) 466 : audit 1 from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-03-24T12:13:47.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: cluster 2024-03-24T12:13:46.188807+0000 mon.smithi170 (mon.0) 467 : cluster 0 osdmap e15: 8 total, 0 up, 8 in 2024-03-24T12:13:47.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.189703+0000 mon.smithi170 (mon.0) 468 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.190287+0000 mon.smithi170 (mon.0) 469 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.190834+0000 mon.smithi170 (mon.0) 470 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.191433+0000 mon.smithi170 (mon.0) 471 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.191996+0000 mon.smithi170 (mon.0) 472 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.192644+0000 mon.smithi170 (mon.0) 473 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.200990+0000 mon.smithi170 (mon.0) 474 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.201406+0000 mon.smithi170 (mon.0) 475 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.201790+0000 mon.smithi170 (mon.0) 476 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.689097+0000 mon.smithi170 (mon.0) 477 : audit 1 from='osd.0 ' entity='osd.0' 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.808469+0000 mon.smithi170 (mon.0) 478 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.816584+0000 mon.smithi170 (mon.0) 479 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.818334+0000 mon.smithi170 (mon.0) 480 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.819737+0000 mon.smithi170 (mon.0) 481 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:47.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:47 smithi172 bash[23876]: audit 2024-03-24T12:13:46.887110+0000 mon.smithi170 (mon.0) 482 : audit 0 from='client.? 172.21.15.170:0/2636209181' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:13:47.859 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":15,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1711282400,"num_remapped_pgs":0} 2024-03-24T12:13:48.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: cluster 2024-03-24T12:13:45.206658+0000 osd.0 (osd.0) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:13:48.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: cluster 2024-03-24T12:13:45.206757+0000 osd.0 (osd.0) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:13:48.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: cephadm 2024-03-24T12:13:46.821087+0000 mgr.smithi170.xkyvyq (mgr.14199) 112 : cephadm 1 Deploying daemon osd.6 on smithi172 2024-03-24T12:13:48.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: cluster 2024-03-24T12:13:46.907825+0000 mgr.smithi170.xkyvyq (mgr.14199) 113 : cluster 0 pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:48.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: audit 2024-03-24T12:13:47.198860+0000 mon.smithi170 (mon.0) 483 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:48.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: cluster 2024-03-24T12:13:47.692791+0000 mon.smithi170 (mon.0) 484 : cluster 1 osd.0 [v2:172.21.15.172:6800/4129707366,v1:172.21.15.172:6801/4129707366] boot 2024-03-24T12:13:48.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: cluster 2024-03-24T12:13:47.692901+0000 mon.smithi170 (mon.0) 485 : cluster 0 osdmap e16: 8 total, 1 up, 8 in 2024-03-24T12:13:48.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: audit 2024-03-24T12:13:47.693051+0000 mon.smithi170 (mon.0) 486 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:48.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: audit 2024-03-24T12:13:47.693313+0000 mon.smithi170 (mon.0) 487 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:48.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: audit 2024-03-24T12:13:47.693440+0000 mon.smithi170 (mon.0) 488 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:48.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: audit 2024-03-24T12:13:47.693590+0000 mon.smithi170 (mon.0) 489 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:48.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: audit 2024-03-24T12:13:47.693707+0000 mon.smithi170 (mon.0) 490 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:48.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: audit 2024-03-24T12:13:47.693825+0000 mon.smithi170 (mon.0) 491 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:48.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: audit 2024-03-24T12:13:47.693952+0000 mon.smithi170 (mon.0) 492 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:48.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 bash[18738]: audit 2024-03-24T12:13:47.694076+0000 mon.smithi170 (mon.0) 493 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:48.492 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: cluster 2024-03-24T12:13:45.206658+0000 osd.0 (osd.0) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:13:48.493 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: cluster 2024-03-24T12:13:45.206757+0000 osd.0 (osd.0) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:13:48.493 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: cephadm 2024-03-24T12:13:46.821087+0000 mgr.smithi170.xkyvyq (mgr.14199) 112 : cephadm 1 Deploying daemon osd.6 on smithi172 2024-03-24T12:13:48.493 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: cluster 2024-03-24T12:13:46.907825+0000 mgr.smithi170.xkyvyq (mgr.14199) 113 : cluster 0 pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-03-24T12:13:48.493 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: audit 2024-03-24T12:13:47.198860+0000 mon.smithi170 (mon.0) 483 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:48.493 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: cluster 2024-03-24T12:13:47.692791+0000 mon.smithi170 (mon.0) 484 : cluster 1 osd.0 [v2:172.21.15.172:6800/4129707366,v1:172.21.15.172:6801/4129707366] boot 2024-03-24T12:13:48.493 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: cluster 2024-03-24T12:13:47.692901+0000 mon.smithi170 (mon.0) 485 : cluster 0 osdmap e16: 8 total, 1 up, 8 in 2024-03-24T12:13:48.493 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: audit 2024-03-24T12:13:47.693051+0000 mon.smithi170 (mon.0) 486 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-03-24T12:13:48.493 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: audit 2024-03-24T12:13:47.693313+0000 mon.smithi170 (mon.0) 487 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:48.493 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: audit 2024-03-24T12:13:47.693440+0000 mon.smithi170 (mon.0) 488 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:48.493 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: audit 2024-03-24T12:13:47.693590+0000 mon.smithi170 (mon.0) 489 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:48.493 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: audit 2024-03-24T12:13:47.693707+0000 mon.smithi170 (mon.0) 490 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:48.494 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: audit 2024-03-24T12:13:47.693825+0000 mon.smithi170 (mon.0) 491 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:48.494 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: audit 2024-03-24T12:13:47.693952+0000 mon.smithi170 (mon.0) 492 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:48.494 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:48 smithi172 bash[23876]: audit 2024-03-24T12:13:47.694076+0000 mon.smithi170 (mon.0) 493 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:48.817 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:48.860 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd stat -f json 2024-03-24T12:13:49.100 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:48 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:50.390 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: cluster 2024-03-24T12:13:48.908189+0000 mgr.smithi170.xkyvyq (mgr.14199) 114 : cluster 0 pgmap v67: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-03-24T12:13:50.390 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.142243+0000 mon.smithi170 (mon.0) 494 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:50.390 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.147943+0000 mon.smithi170 (mon.0) 495 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:50.390 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.148934+0000 mon.smithi170 (mon.0) 496 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-03-24T12:13:50.390 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.149593+0000 mon.smithi170 (mon.0) 497 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:50.390 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: cephadm 2024-03-24T12:13:49.150175+0000 mgr.smithi170.xkyvyq (mgr.14199) 115 : cephadm 1 Deploying daemon osd.5 on smithi170 2024-03-24T12:13:50.390 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: cluster 2024-03-24T12:13:49.203312+0000 mon.smithi170 (mon.0) 498 : cluster 0 osdmap e17: 8 total, 1 up, 8 in 2024-03-24T12:13:50.390 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.203459+0000 mon.smithi170 (mon.0) 499 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:50.391 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.203805+0000 mon.smithi170 (mon.0) 500 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:50.391 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.204058+0000 mon.smithi170 (mon.0) 501 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:50.391 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.204295+0000 mon.smithi170 (mon.0) 502 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:50.391 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.204556+0000 mon.smithi170 (mon.0) 503 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:50.391 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.204803+0000 mon.smithi170 (mon.0) 504 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:50.391 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.205049+0000 mon.smithi170 (mon.0) 505 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:50.391 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.209402+0000 mon.smithi172 (mon.1) 12 : audit 1 from='osd.2 [v2:172.21.15.172:6808/3285008595,v1:172.21.15.172:6809/3285008595]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-24T12:13:50.391 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:50 smithi172 bash[23876]: audit 2024-03-24T12:13:49.210350+0000 mon.smithi170 (mon.0) 506 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-24T12:13:50.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: cluster 2024-03-24T12:13:48.908189+0000 mgr.smithi170.xkyvyq (mgr.14199) 114 : cluster 0 pgmap v67: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-03-24T12:13:50.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.142243+0000 mon.smithi170 (mon.0) 494 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:50.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.147943+0000 mon.smithi170 (mon.0) 495 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:50.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.148934+0000 mon.smithi170 (mon.0) 496 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-03-24T12:13:50.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.149593+0000 mon.smithi170 (mon.0) 497 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:50.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: cephadm 2024-03-24T12:13:49.150175+0000 mgr.smithi170.xkyvyq (mgr.14199) 115 : cephadm 1 Deploying daemon osd.5 on smithi170 2024-03-24T12:13:50.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: cluster 2024-03-24T12:13:49.203312+0000 mon.smithi170 (mon.0) 498 : cluster 0 osdmap e17: 8 total, 1 up, 8 in 2024-03-24T12:13:50.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.203459+0000 mon.smithi170 (mon.0) 499 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:50.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.203805+0000 mon.smithi170 (mon.0) 500 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:50.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.204058+0000 mon.smithi170 (mon.0) 501 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:50.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.204295+0000 mon.smithi170 (mon.0) 502 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:50.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.204556+0000 mon.smithi170 (mon.0) 503 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:50.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.204803+0000 mon.smithi170 (mon.0) 504 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:50.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.205049+0000 mon.smithi170 (mon.0) 505 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:50.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.209402+0000 mon.smithi172 (mon.1) 12 : audit 1 from='osd.2 [v2:172.21.15.172:6808/3285008595,v1:172.21.15.172:6809/3285008595]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-24T12:13:50.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:50 smithi170 bash[18738]: audit 2024-03-24T12:13:49.210350+0000 mon.smithi170 (mon.0) 506 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-03-24T12:13:51.468 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 bash[23876]: audit 2024-03-24T12:13:50.202866+0000 mon.smithi170 (mon.0) 507 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-03-24T12:13:51.468 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 bash[23876]: cluster 2024-03-24T12:13:50.205623+0000 mon.smithi170 (mon.0) 508 : cluster 0 osdmap e18: 8 total, 1 up, 8 in 2024-03-24T12:13:51.468 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 bash[23876]: audit 2024-03-24T12:13:50.205865+0000 mon.smithi170 (mon.0) 509 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:51.468 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 bash[23876]: audit 2024-03-24T12:13:50.206033+0000 mon.smithi170 (mon.0) 510 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:51.468 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 bash[23876]: audit 2024-03-24T12:13:50.206207+0000 mon.smithi170 (mon.0) 511 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:51.468 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 bash[23876]: audit 2024-03-24T12:13:50.206412+0000 mon.smithi170 (mon.0) 512 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:51.468 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 bash[23876]: audit 2024-03-24T12:13:50.206584+0000 mon.smithi170 (mon.0) 513 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:51.469 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 bash[23876]: audit 2024-03-24T12:13:50.206778+0000 mon.smithi170 (mon.0) 514 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:51.469 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 bash[23876]: audit 2024-03-24T12:13:50.206955+0000 mon.smithi170 (mon.0) 515 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:51.469 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 bash[23876]: audit 2024-03-24T12:13:50.207133+0000 mon.smithi172 (mon.1) 13 : audit 1 from='osd.2 [v2:172.21.15.172:6808/3285008595,v1:172.21.15.172:6809/3285008595]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:51.469 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 bash[23876]: audit 2024-03-24T12:13:50.208014+0000 mon.smithi170 (mon.0) 516 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:51.469 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 bash[23876]: audit 2024-03-24T12:13:50.505178+0000 mon.smithi170 (mon.0) 517 : audit 1 from='osd.1 [v2:172.21.15.170:6802/3705002990,v1:172.21.15.170:6803/3705002990]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-03-24T12:13:51.469 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:51.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:51 smithi170 bash[18738]: audit 2024-03-24T12:13:50.202866+0000 mon.smithi170 (mon.0) 507 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-03-24T12:13:51.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:51 smithi170 bash[18738]: cluster 2024-03-24T12:13:50.205623+0000 mon.smithi170 (mon.0) 508 : cluster 0 osdmap e18: 8 total, 1 up, 8 in 2024-03-24T12:13:51.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:51 smithi170 bash[18738]: audit 2024-03-24T12:13:50.205865+0000 mon.smithi170 (mon.0) 509 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:51.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:51 smithi170 bash[18738]: audit 2024-03-24T12:13:50.206033+0000 mon.smithi170 (mon.0) 510 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:51.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:51 smithi170 bash[18738]: audit 2024-03-24T12:13:50.206207+0000 mon.smithi170 (mon.0) 511 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:51.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:51 smithi170 bash[18738]: audit 2024-03-24T12:13:50.206412+0000 mon.smithi170 (mon.0) 512 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:51.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:51 smithi170 bash[18738]: audit 2024-03-24T12:13:50.206584+0000 mon.smithi170 (mon.0) 513 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:51.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:51 smithi170 bash[18738]: audit 2024-03-24T12:13:50.206778+0000 mon.smithi170 (mon.0) 514 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:51.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:51 smithi170 bash[18738]: audit 2024-03-24T12:13:50.206955+0000 mon.smithi170 (mon.0) 515 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:51.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:51 smithi170 bash[18738]: audit 2024-03-24T12:13:50.207133+0000 mon.smithi172 (mon.1) 13 : audit 1 from='osd.2 [v2:172.21.15.172:6808/3285008595,v1:172.21.15.172:6809/3285008595]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:51.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:51 smithi170 bash[18738]: audit 2024-03-24T12:13:50.208014+0000 mon.smithi170 (mon.0) 516 : audit 1 from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:51.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:51 smithi170 bash[18738]: audit 2024-03-24T12:13:50.505178+0000 mon.smithi170 (mon.0) 517 : audit 1 from='osd.1 [v2:172.21.15.170:6802/3705002990,v1:172.21.15.170:6803/3705002990]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-03-24T12:13:51.721 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:51 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:52.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: cluster 2024-03-24T12:13:50.190664+0000 osd.2 (osd.2) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:13:52.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: cluster 2024-03-24T12:13:50.190738+0000 osd.2 (osd.2) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:13:52.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: cluster 2024-03-24T12:13:50.908462+0000 mgr.smithi170.xkyvyq (mgr.14199) 116 : cluster 0 pgmap v70: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-03-24T12:13:52.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.210527+0000 mon.smithi170 (mon.0) 518 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.210674+0000 mon.smithi170 (mon.0) 519 : audit 1 from='osd.1 [v2:172.21.15.170:6802/3705002990,v1:172.21.15.170:6803/3705002990]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: cluster 2024-03-24T12:13:51.215039+0000 mon.smithi170 (mon.0) 520 : cluster 0 osdmap e19: 8 total, 1 up, 8 in 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.215541+0000 mon.smithi170 (mon.0) 521 : audit 1 from='osd.1 [v2:172.21.15.170:6802/3705002990,v1:172.21.15.170:6803/3705002990]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]: dispatch 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.215834+0000 mon.smithi170 (mon.0) 522 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.216068+0000 mon.smithi170 (mon.0) 523 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.216324+0000 mon.smithi170 (mon.0) 524 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.216556+0000 mon.smithi170 (mon.0) 525 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.216786+0000 mon.smithi170 (mon.0) 526 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.216995+0000 mon.smithi170 (mon.0) 527 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.217247+0000 mon.smithi170 (mon.0) 528 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.225929+0000 mon.smithi170 (mon.0) 529 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.688417+0000 mon.smithi170 (mon.0) 530 : audit 1 from='osd.2 ' entity='osd.2' 2024-03-24T12:13:52.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.773287+0000 mon.smithi170 (mon.0) 531 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:52.473 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:52 smithi170 bash[18738]: audit 2024-03-24T12:13:51.783057+0000 mon.smithi170 (mon.0) 532 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:52.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: cluster 2024-03-24T12:13:50.190664+0000 osd.2 (osd.2) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:13:52.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: cluster 2024-03-24T12:13:50.190738+0000 osd.2 (osd.2) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:13:52.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: cluster 2024-03-24T12:13:50.908462+0000 mgr.smithi170.xkyvyq (mgr.14199) 116 : cluster 0 pgmap v70: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-03-24T12:13:52.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.210527+0000 mon.smithi170 (mon.0) 518 : audit 1 from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-03-24T12:13:52.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.210674+0000 mon.smithi170 (mon.0) 519 : audit 1 from='osd.1 [v2:172.21.15.170:6802/3705002990,v1:172.21.15.170:6803/3705002990]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-03-24T12:13:52.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: cluster 2024-03-24T12:13:51.215039+0000 mon.smithi170 (mon.0) 520 : cluster 0 osdmap e19: 8 total, 1 up, 8 in 2024-03-24T12:13:52.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.215541+0000 mon.smithi170 (mon.0) 521 : audit 1 from='osd.1 [v2:172.21.15.170:6802/3705002990,v1:172.21.15.170:6803/3705002990]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]: dispatch 2024-03-24T12:13:52.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.215834+0000 mon.smithi170 (mon.0) 522 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:52.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.216068+0000 mon.smithi170 (mon.0) 523 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:52.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.216324+0000 mon.smithi170 (mon.0) 524 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:52.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.216556+0000 mon.smithi170 (mon.0) 525 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:52.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.216786+0000 mon.smithi170 (mon.0) 526 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:52.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.216995+0000 mon.smithi170 (mon.0) 527 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:52.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.217247+0000 mon.smithi170 (mon.0) 528 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:52.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.225929+0000 mon.smithi170 (mon.0) 529 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:52.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.688417+0000 mon.smithi170 (mon.0) 530 : audit 1 from='osd.2 ' entity='osd.2' 2024-03-24T12:13:52.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.773287+0000 mon.smithi170 (mon.0) 531 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:52.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:52 smithi172 bash[23876]: audit 2024-03-24T12:13:51.783057+0000 mon.smithi170 (mon.0) 532 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:53.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:53 smithi172 bash[23876]: audit 2024-03-24T12:13:52.211940+0000 mon.smithi170 (mon.0) 533 : audit 1 from='osd.1 [v2:172.21.15.170:6802/3705002990,v1:172.21.15.170:6803/3705002990]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-03-24T12:13:53.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:53 smithi172 bash[23876]: cluster 2024-03-24T12:13:52.216441+0000 mon.smithi170 (mon.0) 534 : cluster 1 osd.2 [v2:172.21.15.172:6808/3285008595,v1:172.21.15.172:6809/3285008595] boot 2024-03-24T12:13:53.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:53 smithi172 bash[23876]: cluster 2024-03-24T12:13:52.216515+0000 mon.smithi170 (mon.0) 535 : cluster 0 osdmap e20: 8 total, 2 up, 8 in 2024-03-24T12:13:53.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:53 smithi172 bash[23876]: audit 2024-03-24T12:13:52.217883+0000 mon.smithi170 (mon.0) 536 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:53.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:53 smithi172 bash[23876]: audit 2024-03-24T12:13:52.224361+0000 mon.smithi170 (mon.0) 537 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:53.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:53 smithi172 bash[23876]: audit 2024-03-24T12:13:52.224737+0000 mon.smithi170 (mon.0) 538 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:53.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:53 smithi172 bash[23876]: audit 2024-03-24T12:13:52.225090+0000 mon.smithi170 (mon.0) 539 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:53.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:53 smithi172 bash[23876]: audit 2024-03-24T12:13:52.225416+0000 mon.smithi170 (mon.0) 540 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:53.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:53 smithi172 bash[23876]: audit 2024-03-24T12:13:52.225818+0000 mon.smithi170 (mon.0) 541 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:53.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:53 smithi172 bash[23876]: audit 2024-03-24T12:13:52.226202+0000 mon.smithi170 (mon.0) 542 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:53.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:53 smithi172 bash[23876]: audit 2024-03-24T12:13:52.226623+0000 mon.smithi170 (mon.0) 543 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:53.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:53 smithi170 bash[18738]: audit 2024-03-24T12:13:52.211940+0000 mon.smithi170 (mon.0) 533 : audit 1 from='osd.1 [v2:172.21.15.170:6802/3705002990,v1:172.21.15.170:6803/3705002990]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-03-24T12:13:53.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:53 smithi170 bash[18738]: cluster 2024-03-24T12:13:52.216441+0000 mon.smithi170 (mon.0) 534 : cluster 1 osd.2 [v2:172.21.15.172:6808/3285008595,v1:172.21.15.172:6809/3285008595] boot 2024-03-24T12:13:53.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:53 smithi170 bash[18738]: cluster 2024-03-24T12:13:52.216515+0000 mon.smithi170 (mon.0) 535 : cluster 0 osdmap e20: 8 total, 2 up, 8 in 2024-03-24T12:13:53.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:53 smithi170 bash[18738]: audit 2024-03-24T12:13:52.217883+0000 mon.smithi170 (mon.0) 536 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:53.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:53 smithi170 bash[18738]: audit 2024-03-24T12:13:52.224361+0000 mon.smithi170 (mon.0) 537 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-03-24T12:13:53.495 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:53 smithi170 bash[18738]: audit 2024-03-24T12:13:52.224737+0000 mon.smithi170 (mon.0) 538 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:53.496 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:53 smithi170 bash[18738]: audit 2024-03-24T12:13:52.225090+0000 mon.smithi170 (mon.0) 539 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:53.496 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:53 smithi170 bash[18738]: audit 2024-03-24T12:13:52.225416+0000 mon.smithi170 (mon.0) 540 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:53.496 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:53 smithi170 bash[18738]: audit 2024-03-24T12:13:52.225818+0000 mon.smithi170 (mon.0) 541 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:53.496 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:53 smithi170 bash[18738]: audit 2024-03-24T12:13:52.226202+0000 mon.smithi170 (mon.0) 542 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:53.496 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:53 smithi170 bash[18738]: audit 2024-03-24T12:13:52.226623+0000 mon.smithi170 (mon.0) 543 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: cluster 2024-03-24T12:13:51.537091+0000 osd.1 (osd.1) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:13:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: cluster 2024-03-24T12:13:51.537204+0000 osd.1 (osd.1) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:13:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: cluster 2024-03-24T12:13:52.908830+0000 mgr.smithi170.xkyvyq (mgr.14199) 117 : cluster 0 pgmap v73: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-03-24T12:13:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: audit 2024-03-24T12:13:53.225490+0000 mon.smithi170 (mon.0) 544 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:54.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: cluster 2024-03-24T12:13:53.234717+0000 mon.smithi170 (mon.0) 545 : cluster 1 osd.1 [v2:172.21.15.170:6802/3705002990,v1:172.21.15.170:6803/3705002990] boot 2024-03-24T12:13:54.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: cluster 2024-03-24T12:13:53.234798+0000 mon.smithi170 (mon.0) 546 : cluster 0 osdmap e21: 8 total, 3 up, 8 in 2024-03-24T12:13:54.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: audit 2024-03-24T12:13:53.235519+0000 mon.smithi170 (mon.0) 547 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:54.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: audit 2024-03-24T12:13:53.236142+0000 mon.smithi170 (mon.0) 548 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:54.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: audit 2024-03-24T12:13:53.236790+0000 mon.smithi170 (mon.0) 549 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:54.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: audit 2024-03-24T12:13:53.237340+0000 mon.smithi170 (mon.0) 550 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:54.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: audit 2024-03-24T12:13:53.237760+0000 mon.smithi170 (mon.0) 551 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:54.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: audit 2024-03-24T12:13:53.238164+0000 mon.smithi170 (mon.0) 552 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:54.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 bash[18738]: audit 2024-03-24T12:13:53.991149+0000 mon.smithi170 (mon.0) 553 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-03-24T12:13:54.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: cluster 2024-03-24T12:13:51.537091+0000 osd.1 (osd.1) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:13:54.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: cluster 2024-03-24T12:13:51.537204+0000 osd.1 (osd.1) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:13:54.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: cluster 2024-03-24T12:13:52.908830+0000 mgr.smithi170.xkyvyq (mgr.14199) 117 : cluster 0 pgmap v73: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-03-24T12:13:54.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: audit 2024-03-24T12:13:53.225490+0000 mon.smithi170 (mon.0) 544 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:54.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: cluster 2024-03-24T12:13:53.234717+0000 mon.smithi170 (mon.0) 545 : cluster 1 osd.1 [v2:172.21.15.170:6802/3705002990,v1:172.21.15.170:6803/3705002990] boot 2024-03-24T12:13:54.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: cluster 2024-03-24T12:13:53.234798+0000 mon.smithi170 (mon.0) 546 : cluster 0 osdmap e21: 8 total, 3 up, 8 in 2024-03-24T12:13:54.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: audit 2024-03-24T12:13:53.235519+0000 mon.smithi170 (mon.0) 547 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-03-24T12:13:54.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: audit 2024-03-24T12:13:53.236142+0000 mon.smithi170 (mon.0) 548 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:54.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: audit 2024-03-24T12:13:53.236790+0000 mon.smithi170 (mon.0) 549 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:54.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: audit 2024-03-24T12:13:53.237340+0000 mon.smithi170 (mon.0) 550 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:54.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: audit 2024-03-24T12:13:53.237760+0000 mon.smithi170 (mon.0) 551 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:54.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: audit 2024-03-24T12:13:53.238164+0000 mon.smithi170 (mon.0) 552 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:54.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:54 smithi172 bash[23876]: audit 2024-03-24T12:13:53.991149+0000 mon.smithi170 (mon.0) 553 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-03-24T12:13:54.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:54 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:55.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:13:55.686 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:54.018076+0000 mon.smithi172 (mon.1) 14 : audit 1 from='osd.4 [v2:172.21.15.172:6816/793001656,v1:172.21.15.172:6817/793001656]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-24T12:13:55.686 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:54.428291+0000 mon.smithi170 (mon.0) 554 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-24T12:13:55.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:54.432894+0000 mon.smithi170 (mon.0) 555 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-03-24T12:13:55.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: cluster 2024-03-24T12:13:54.434900+0000 mon.smithi170 (mon.0) 556 : cluster 0 osdmap e22: 8 total, 3 up, 8 in 2024-03-24T12:13:55.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:54.435127+0000 mon.smithi170 (mon.0) 557 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:55.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:54.435318+0000 mon.smithi170 (mon.0) 558 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:55.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:54.435549+0000 mon.smithi170 (mon.0) 559 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:55.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:54.435795+0000 mon.smithi170 (mon.0) 560 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:55.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:54.435950+0000 mon.smithi170 (mon.0) 561 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:55.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:54.436227+0000 mon.smithi170 (mon.0) 562 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-03-24T12:13:55.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:55.295986+0000 mon.smithi170 (mon.0) 563 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:55.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:55.301633+0000 mon.smithi170 (mon.0) 564 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:55.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:55.302592+0000 mon.smithi170 (mon.0) 565 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-03-24T12:13:55.687 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:55 smithi170 bash[18738]: audit 2024-03-24T12:13:55.303200+0000 mon.smithi170 (mon.0) 566 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:55.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:54.018076+0000 mon.smithi172 (mon.1) 14 : audit 1 from='osd.4 [v2:172.21.15.172:6816/793001656,v1:172.21.15.172:6817/793001656]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-24T12:13:55.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:54.428291+0000 mon.smithi170 (mon.0) 554 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-03-24T12:13:55.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:54.432894+0000 mon.smithi170 (mon.0) 555 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-03-24T12:13:55.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: cluster 2024-03-24T12:13:54.434900+0000 mon.smithi170 (mon.0) 556 : cluster 0 osdmap e22: 8 total, 3 up, 8 in 2024-03-24T12:13:55.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:54.435127+0000 mon.smithi170 (mon.0) 557 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:55.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:54.435318+0000 mon.smithi170 (mon.0) 558 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:55.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:54.435549+0000 mon.smithi170 (mon.0) 559 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:55.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:54.435795+0000 mon.smithi170 (mon.0) 560 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:55.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:54.435950+0000 mon.smithi170 (mon.0) 561 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:55.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:54.436227+0000 mon.smithi170 (mon.0) 562 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-03-24T12:13:55.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:55.295986+0000 mon.smithi170 (mon.0) 563 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:55.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:55.301633+0000 mon.smithi170 (mon.0) 564 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:55.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:55.302592+0000 mon.smithi170 (mon.0) 565 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-03-24T12:13:55.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:55 smithi172 bash[23876]: audit 2024-03-24T12:13:55.303200+0000 mon.smithi170 (mon.0) 566 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:13:56.036 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:13:56.489 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: cluster 2024-03-24T12:13:54.909408+0000 mgr.smithi170.xkyvyq (mgr.14199) 118 : cluster 0 pgmap v76: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-03-24T12:13:56.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: cephadm 2024-03-24T12:13:55.303751+0000 mgr.smithi170.xkyvyq (mgr.14199) 119 : cephadm 1 Deploying daemon osd.7 on smithi170 2024-03-24T12:13:56.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: cluster 2024-03-24T12:13:55.438124+0000 mon.smithi170 (mon.0) 567 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-24T12:13:56.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: audit 2024-03-24T12:13:55.439148+0000 mon.smithi170 (mon.0) 568 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-03-24T12:13:56.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: audit 2024-03-24T12:13:55.439295+0000 mon.smithi170 (mon.0) 569 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-03-24T12:13:56.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: cluster 2024-03-24T12:13:55.444435+0000 mon.smithi170 (mon.0) 570 : cluster 0 osdmap e23: 8 total, 3 up, 8 in 2024-03-24T12:13:56.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: audit 2024-03-24T12:13:55.445320+0000 mon.smithi170 (mon.0) 571 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:56.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: audit 2024-03-24T12:13:55.446011+0000 mon.smithi170 (mon.0) 572 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:56.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: audit 2024-03-24T12:13:55.446330+0000 mon.smithi172 (mon.1) 15 : audit 1 from='osd.4 [v2:172.21.15.172:6816/793001656,v1:172.21.15.172:6817/793001656]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:56.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: audit 2024-03-24T12:13:55.446820+0000 mon.smithi170 (mon.0) 573 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:56.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: audit 2024-03-24T12:13:55.451750+0000 mon.smithi170 (mon.0) 574 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:56.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: audit 2024-03-24T12:13:55.452547+0000 mon.smithi170 (mon.0) 575 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:56.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:56 smithi172 bash[23876]: audit 2024-03-24T12:13:55.453039+0000 mon.smithi170 (mon.0) 576 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:56.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: cluster 2024-03-24T12:13:54.909408+0000 mgr.smithi170.xkyvyq (mgr.14199) 118 : cluster 0 pgmap v76: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-03-24T12:13:56.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: cephadm 2024-03-24T12:13:55.303751+0000 mgr.smithi170.xkyvyq (mgr.14199) 119 : cephadm 1 Deploying daemon osd.7 on smithi170 2024-03-24T12:13:56.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: cluster 2024-03-24T12:13:55.438124+0000 mon.smithi170 (mon.0) 567 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-24T12:13:56.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: audit 2024-03-24T12:13:55.439148+0000 mon.smithi170 (mon.0) 568 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-03-24T12:13:56.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: audit 2024-03-24T12:13:55.439295+0000 mon.smithi170 (mon.0) 569 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-03-24T12:13:56.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: cluster 2024-03-24T12:13:55.444435+0000 mon.smithi170 (mon.0) 570 : cluster 0 osdmap e23: 8 total, 3 up, 8 in 2024-03-24T12:13:56.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: audit 2024-03-24T12:13:55.445320+0000 mon.smithi170 (mon.0) 571 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:56.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: audit 2024-03-24T12:13:55.446011+0000 mon.smithi170 (mon.0) 572 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:56.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: audit 2024-03-24T12:13:55.446330+0000 mon.smithi172 (mon.1) 15 : audit 1 from='osd.4 [v2:172.21.15.172:6816/793001656,v1:172.21.15.172:6817/793001656]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:56.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: audit 2024-03-24T12:13:55.446820+0000 mon.smithi170 (mon.0) 573 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:56.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: audit 2024-03-24T12:13:55.451750+0000 mon.smithi170 (mon.0) 574 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:56.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: audit 2024-03-24T12:13:55.452547+0000 mon.smithi170 (mon.0) 575 : audit 1 from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:56.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:56 smithi170 bash[18738]: audit 2024-03-24T12:13:55.453039+0000 mon.smithi170 (mon.0) 576 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:57.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:57 smithi170 bash[18738]: cluster 2024-03-24T12:13:54.999284+0000 osd.4 (osd.4) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:13:57.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:57 smithi170 bash[18738]: cluster 2024-03-24T12:13:54.999384+0000 osd.4 (osd.4) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:13:57.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:57 smithi170 bash[18738]: audit 2024-03-24T12:13:56.449462+0000 mon.smithi170 (mon.0) 577 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-03-24T12:13:57.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:57 smithi170 bash[18738]: cluster 2024-03-24T12:13:56.454647+0000 mon.smithi170 (mon.0) 578 : cluster 0 osdmap e24: 8 total, 3 up, 8 in 2024-03-24T12:13:57.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:57 smithi170 bash[18738]: audit 2024-03-24T12:13:56.455143+0000 mon.smithi170 (mon.0) 579 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:57.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:57 smithi170 bash[18738]: audit 2024-03-24T12:13:56.455590+0000 mon.smithi170 (mon.0) 580 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:57.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:57 smithi170 bash[18738]: audit 2024-03-24T12:13:56.456247+0000 mon.smithi170 (mon.0) 581 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:57.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:57 smithi170 bash[18738]: audit 2024-03-24T12:13:56.456692+0000 mon.smithi170 (mon.0) 582 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:57.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:57 smithi170 bash[18738]: audit 2024-03-24T12:13:56.457068+0000 mon.smithi170 (mon.0) 583 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:57.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:57 smithi170 bash[18738]: audit 2024-03-24T12:13:56.457550+0000 mon.smithi170 (mon.0) 584 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:57.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:57 smithi172 bash[23876]: cluster 2024-03-24T12:13:54.999284+0000 osd.4 (osd.4) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:13:57.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:57 smithi172 bash[23876]: cluster 2024-03-24T12:13:54.999384+0000 osd.4 (osd.4) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:13:57.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:57 smithi172 bash[23876]: audit 2024-03-24T12:13:56.449462+0000 mon.smithi170 (mon.0) 577 : audit 1 from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-03-24T12:13:57.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:57 smithi172 bash[23876]: cluster 2024-03-24T12:13:56.454647+0000 mon.smithi170 (mon.0) 578 : cluster 0 osdmap e24: 8 total, 3 up, 8 in 2024-03-24T12:13:57.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:57 smithi172 bash[23876]: audit 2024-03-24T12:13:56.455143+0000 mon.smithi170 (mon.0) 579 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:57.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:57 smithi172 bash[23876]: audit 2024-03-24T12:13:56.455590+0000 mon.smithi170 (mon.0) 580 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:57.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:57 smithi172 bash[23876]: audit 2024-03-24T12:13:56.456247+0000 mon.smithi170 (mon.0) 581 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:57.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:57 smithi172 bash[23876]: audit 2024-03-24T12:13:56.456692+0000 mon.smithi170 (mon.0) 582 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:57.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:57 smithi172 bash[23876]: audit 2024-03-24T12:13:56.457068+0000 mon.smithi170 (mon.0) 583 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:57.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:57 smithi172 bash[23876]: audit 2024-03-24T12:13:56.457550+0000 mon.smithi170 (mon.0) 584 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:58.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: cluster 2024-03-24T12:13:56.909909+0000 mgr.smithi170.xkyvyq (mgr.14199) 120 : cluster 0 pgmap v79: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-03-24T12:13:58.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: cluster 2024-03-24T12:13:57.449440+0000 mon.smithi170 (mon.0) 585 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-24T12:13:58.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: cluster 2024-03-24T12:13:57.449499+0000 mon.smithi170 (mon.0) 586 : cluster 1 Cluster is now healthy 2024-03-24T12:13:58.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: audit 2024-03-24T12:13:57.457367+0000 mon.smithi170 (mon.0) 587 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:58.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: cluster 2024-03-24T12:13:57.465324+0000 mon.smithi170 (mon.0) 588 : cluster 1 osd.4 [v2:172.21.15.172:6816/793001656,v1:172.21.15.172:6817/793001656] boot 2024-03-24T12:13:58.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: cluster 2024-03-24T12:13:57.465368+0000 mon.smithi170 (mon.0) 589 : cluster 0 osdmap e25: 8 total, 4 up, 8 in 2024-03-24T12:13:58.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: cluster 2024-03-24T12:13:57.466267+0000 mon.smithi170 (mon.0) 590 : cluster 0 mgrmap e19: smithi170.xkyvyq(active, since 2m), standbys: smithi172.uznkeq 2024-03-24T12:13:58.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: audit 2024-03-24T12:13:57.466697+0000 mon.smithi170 (mon.0) 591 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:58.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: audit 2024-03-24T12:13:57.466965+0000 mon.smithi170 (mon.0) 592 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:58.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: audit 2024-03-24T12:13:57.467223+0000 mon.smithi170 (mon.0) 593 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:58.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: audit 2024-03-24T12:13:57.467467+0000 mon.smithi170 (mon.0) 594 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:58.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: audit 2024-03-24T12:13:57.467642+0000 mon.smithi170 (mon.0) 595 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:58.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: audit 2024-03-24T12:13:57.505891+0000 mon.smithi170 (mon.0) 596 : audit 1 from='osd.3 [v2:172.21.15.170:6810/274217269,v1:172.21.15.170:6811/274217269]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-03-24T12:13:58.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: audit 2024-03-24T12:13:57.509479+0000 mon.smithi170 (mon.0) 597 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:58.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: audit 2024-03-24T12:13:57.926249+0000 mon.smithi172 (mon.1) 16 : audit 1 from='osd.6 [v2:172.21.15.172:6824/548640071,v1:172.21.15.172:6825/548640071]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-03-24T12:13:58.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: audit 2024-03-24T12:13:57.927176+0000 mon.smithi170 (mon.0) 598 : audit 1 from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-03-24T12:13:58.668 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:58 smithi172 bash[23876]: audit 2024-03-24T12:13:58.456042+0000 mon.smithi170 (mon.0) 599 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:58.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: cluster 2024-03-24T12:13:56.909909+0000 mgr.smithi170.xkyvyq (mgr.14199) 120 : cluster 0 pgmap v79: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-03-24T12:13:58.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: cluster 2024-03-24T12:13:57.449440+0000 mon.smithi170 (mon.0) 585 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-24T12:13:58.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: cluster 2024-03-24T12:13:57.449499+0000 mon.smithi170 (mon.0) 586 : cluster 1 Cluster is now healthy 2024-03-24T12:13:58.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: audit 2024-03-24T12:13:57.457367+0000 mon.smithi170 (mon.0) 587 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:58.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: cluster 2024-03-24T12:13:57.465324+0000 mon.smithi170 (mon.0) 588 : cluster 1 osd.4 [v2:172.21.15.172:6816/793001656,v1:172.21.15.172:6817/793001656] boot 2024-03-24T12:13:58.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: cluster 2024-03-24T12:13:57.465368+0000 mon.smithi170 (mon.0) 589 : cluster 0 osdmap e25: 8 total, 4 up, 8 in 2024-03-24T12:13:58.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: cluster 2024-03-24T12:13:57.466267+0000 mon.smithi170 (mon.0) 590 : cluster 0 mgrmap e19: smithi170.xkyvyq(active, since 2m), standbys: smithi172.uznkeq 2024-03-24T12:13:58.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: audit 2024-03-24T12:13:57.466697+0000 mon.smithi170 (mon.0) 591 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:58.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: audit 2024-03-24T12:13:57.466965+0000 mon.smithi170 (mon.0) 592 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-03-24T12:13:58.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: audit 2024-03-24T12:13:57.467223+0000 mon.smithi170 (mon.0) 593 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:58.724 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: audit 2024-03-24T12:13:57.467467+0000 mon.smithi170 (mon.0) 594 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:58.724 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: audit 2024-03-24T12:13:57.467642+0000 mon.smithi170 (mon.0) 595 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:58.724 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: audit 2024-03-24T12:13:57.505891+0000 mon.smithi170 (mon.0) 596 : audit 1 from='osd.3 [v2:172.21.15.170:6810/274217269,v1:172.21.15.170:6811/274217269]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-03-24T12:13:58.724 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: audit 2024-03-24T12:13:57.509479+0000 mon.smithi170 (mon.0) 597 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:58.724 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: audit 2024-03-24T12:13:57.926249+0000 mon.smithi172 (mon.1) 16 : audit 1 from='osd.6 [v2:172.21.15.172:6824/548640071,v1:172.21.15.172:6825/548640071]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-03-24T12:13:58.724 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: audit 2024-03-24T12:13:57.927176+0000 mon.smithi170 (mon.0) 598 : audit 1 from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-03-24T12:13:58.724 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:58 smithi170 bash[18738]: audit 2024-03-24T12:13:58.456042+0000 mon.smithi170 (mon.0) 599 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:59.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:58.459916+0000 mon.smithi170 (mon.0) 600 : audit 1 from='osd.3 [v2:172.21.15.170:6810/274217269,v1:172.21.15.170:6811/274217269]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-03-24T12:13:59.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:58.459961+0000 mon.smithi170 (mon.0) 601 : audit 1 from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-03-24T12:13:59.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: cluster 2024-03-24T12:13:58.461938+0000 mon.smithi170 (mon.0) 602 : cluster 0 osdmap e26: 8 total, 4 up, 8 in 2024-03-24T12:13:59.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:58.462366+0000 mon.smithi170 (mon.0) 603 : audit 1 from='osd.3 [v2:172.21.15.170:6810/274217269,v1:172.21.15.170:6811/274217269]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]: dispatch 2024-03-24T12:13:59.490 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:58.462613+0000 mon.smithi170 (mon.0) 604 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:58.462842+0000 mon.smithi170 (mon.0) 605 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:58.463075+0000 mon.smithi170 (mon.0) 606 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:58.463299+0000 mon.smithi170 (mon.0) 607 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:58.469403+0000 mon.smithi172 (mon.1) 17 : audit 1 from='osd.6 [v2:172.21.15.172:6824/548640071,v1:172.21.15.172:6825/548640071]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:58.482940+0000 mon.smithi170 (mon.0) 608 : audit 1 from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:58.910359+0000 mon.smithi170 (mon.0) 609 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:59.407204+0000 mon.smithi170 (mon.0) 610 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:59.461798+0000 mon.smithi170 (mon.0) 611 : audit 1 from='osd.3 [v2:172.21.15.170:6810/274217269,v1:172.21.15.170:6811/274217269]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:59.461908+0000 mon.smithi170 (mon.0) 612 : audit 1 from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: cluster 2024-03-24T12:13:59.465389+0000 mon.smithi170 (mon.0) 613 : cluster 0 osdmap e27: 8 total, 4 up, 8 in 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:59.466187+0000 mon.smithi170 (mon.0) 614 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:59.466601+0000 mon.smithi170 (mon.0) 615 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:59.466821+0000 mon.smithi170 (mon.0) 616 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:59.491 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:13:59 smithi172 bash[23876]: audit 2024-03-24T12:13:59.467060+0000 mon.smithi170 (mon.0) 617 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:59.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:58.459916+0000 mon.smithi170 (mon.0) 600 : audit 1 from='osd.3 [v2:172.21.15.170:6810/274217269,v1:172.21.15.170:6811/274217269]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-03-24T12:13:59.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:58.459961+0000 mon.smithi170 (mon.0) 601 : audit 1 from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-03-24T12:13:59.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: cluster 2024-03-24T12:13:58.461938+0000 mon.smithi170 (mon.0) 602 : cluster 0 osdmap e26: 8 total, 4 up, 8 in 2024-03-24T12:13:59.721 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:58.462366+0000 mon.smithi170 (mon.0) 603 : audit 1 from='osd.3 [v2:172.21.15.170:6810/274217269,v1:172.21.15.170:6811/274217269]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]: dispatch 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:58.462613+0000 mon.smithi170 (mon.0) 604 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:58.462842+0000 mon.smithi170 (mon.0) 605 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:58.463075+0000 mon.smithi170 (mon.0) 606 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:58.463299+0000 mon.smithi170 (mon.0) 607 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:58.469403+0000 mon.smithi172 (mon.1) 17 : audit 1 from='osd.6 [v2:172.21.15.172:6824/548640071,v1:172.21.15.172:6825/548640071]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:58.482940+0000 mon.smithi170 (mon.0) 608 : audit 1 from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]: dispatch 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:58.910359+0000 mon.smithi170 (mon.0) 609 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:59.407204+0000 mon.smithi170 (mon.0) 610 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:59.461798+0000 mon.smithi170 (mon.0) 611 : audit 1 from='osd.3 [v2:172.21.15.170:6810/274217269,v1:172.21.15.170:6811/274217269]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:59.461908+0000 mon.smithi170 (mon.0) 612 : audit 1 from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi172", "root=default"]}]': finished 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: cluster 2024-03-24T12:13:59.465389+0000 mon.smithi170 (mon.0) 613 : cluster 0 osdmap e27: 8 total, 4 up, 8 in 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:59.466187+0000 mon.smithi170 (mon.0) 614 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:13:59.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:59.466601+0000 mon.smithi170 (mon.0) 615 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:13:59.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:59.466821+0000 mon.smithi170 (mon.0) 616 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:13:59.723 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:13:59 smithi170 bash[18738]: audit 2024-03-24T12:13:59.467060+0000 mon.smithi170 (mon.0) 617 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:00.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:00 smithi172 bash[23876]: cluster 2024-03-24T12:13:58.910498+0000 mgr.smithi170.xkyvyq (mgr.14199) 121 : cluster 0 pgmap v82: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-03-24T12:14:00.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:00 smithi172 bash[23876]: audit 2024-03-24T12:13:59.470532+0000 mon.smithi170 (mon.0) 618 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:14:00.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:00 smithi172 bash[23876]: audit 2024-03-24T12:13:59.476132+0000 mon.smithi170 (mon.0) 619 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:14:00.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:00 smithi172 bash[23876]: cluster 2024-03-24T12:14:00.268166+0000 mon.smithi170 (mon.0) 620 : cluster 1 osd.3 [v2:172.21.15.170:6810/274217269,v1:172.21.15.170:6811/274217269] boot 2024-03-24T12:14:00.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:00 smithi172 bash[23876]: cluster 2024-03-24T12:14:00.268260+0000 mon.smithi170 (mon.0) 621 : cluster 1 osd.6 [v2:172.21.15.172:6824/548640071,v1:172.21.15.172:6825/548640071] boot 2024-03-24T12:14:00.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:00 smithi172 bash[23876]: cluster 2024-03-24T12:14:00.268315+0000 mon.smithi170 (mon.0) 622 : cluster 0 osdmap e28: 8 total, 6 up, 8 in 2024-03-24T12:14:00.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:00 smithi172 bash[23876]: audit 2024-03-24T12:14:00.268553+0000 mon.smithi170 (mon.0) 623 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:14:00.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:00 smithi172 bash[23876]: audit 2024-03-24T12:14:00.269371+0000 mon.smithi170 (mon.0) 624 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:00.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:00 smithi172 bash[23876]: audit 2024-03-24T12:14:00.269657+0000 mon.smithi170 (mon.0) 625 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:14:00.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:00 smithi172 bash[23876]: audit 2024-03-24T12:14:00.269958+0000 mon.smithi170 (mon.0) 626 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:00.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:00 smithi170 bash[18738]: cluster 2024-03-24T12:13:58.910498+0000 mgr.smithi170.xkyvyq (mgr.14199) 121 : cluster 0 pgmap v82: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-03-24T12:14:00.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:00 smithi170 bash[18738]: audit 2024-03-24T12:13:59.470532+0000 mon.smithi170 (mon.0) 618 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:14:00.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:00 smithi170 bash[18738]: audit 2024-03-24T12:13:59.476132+0000 mon.smithi170 (mon.0) 619 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:14:00.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:00 smithi170 bash[18738]: cluster 2024-03-24T12:14:00.268166+0000 mon.smithi170 (mon.0) 620 : cluster 1 osd.3 [v2:172.21.15.170:6810/274217269,v1:172.21.15.170:6811/274217269] boot 2024-03-24T12:14:00.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:00 smithi170 bash[18738]: cluster 2024-03-24T12:14:00.268260+0000 mon.smithi170 (mon.0) 621 : cluster 1 osd.6 [v2:172.21.15.172:6824/548640071,v1:172.21.15.172:6825/548640071] boot 2024-03-24T12:14:00.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:00 smithi170 bash[18738]: cluster 2024-03-24T12:14:00.268315+0000 mon.smithi170 (mon.0) 622 : cluster 0 osdmap e28: 8 total, 6 up, 8 in 2024-03-24T12:14:00.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:00 smithi170 bash[18738]: audit 2024-03-24T12:14:00.268553+0000 mon.smithi170 (mon.0) 623 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-03-24T12:14:00.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:00 smithi170 bash[18738]: audit 2024-03-24T12:14:00.269371+0000 mon.smithi170 (mon.0) 624 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:00.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:00 smithi170 bash[18738]: audit 2024-03-24T12:14:00.269657+0000 mon.smithi170 (mon.0) 625 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-03-24T12:14:00.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:00 smithi170 bash[18738]: audit 2024-03-24T12:14:00.269958+0000 mon.smithi170 (mon.0) 626 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:01.400 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:14:01.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:01 smithi170 bash[18738]: cluster 2024-03-24T12:13:58.480226+0000 osd.3 (osd.3) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:14:01.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:01 smithi170 bash[18738]: cluster 2024-03-24T12:13:58.480352+0000 osd.3 (osd.3) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:14:01.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:01 smithi170 bash[18738]: cluster 2024-03-24T12:13:58.889656+0000 osd.6 (osd.6) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:14:01.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:01 smithi170 bash[18738]: cluster 2024-03-24T12:13:58.889749+0000 osd.6 (osd.6) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:14:01.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:01 smithi170 bash[18738]: cluster 2024-03-24T12:14:01.267693+0000 mon.smithi170 (mon.0) 627 : cluster 0 osdmap e29: 8 total, 6 up, 8 in 2024-03-24T12:14:01.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:01 smithi170 bash[18738]: audit 2024-03-24T12:14:01.267902+0000 mon.smithi170 (mon.0) 628 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:01.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:01 smithi170 bash[18738]: audit 2024-03-24T12:14:01.268212+0000 mon.smithi170 (mon.0) 629 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:01.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:01 smithi170 bash[18738]: audit 2024-03-24T12:14:01.402826+0000 mon.smithi170 (mon.0) 630 : audit 0 from='client.? 172.21.15.170:0/1087803402' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:14:01.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:01 smithi172 bash[23876]: cluster 2024-03-24T12:13:58.480226+0000 osd.3 (osd.3) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:14:01.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:01 smithi172 bash[23876]: cluster 2024-03-24T12:13:58.480352+0000 osd.3 (osd.3) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:14:01.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:01 smithi172 bash[23876]: cluster 2024-03-24T12:13:58.889656+0000 osd.6 (osd.6) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:14:01.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:01 smithi172 bash[23876]: cluster 2024-03-24T12:13:58.889749+0000 osd.6 (osd.6) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:14:01.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:01 smithi172 bash[23876]: cluster 2024-03-24T12:14:01.267693+0000 mon.smithi170 (mon.0) 627 : cluster 0 osdmap e29: 8 total, 6 up, 8 in 2024-03-24T12:14:01.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:01 smithi172 bash[23876]: audit 2024-03-24T12:14:01.267902+0000 mon.smithi170 (mon.0) 628 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:01.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:01 smithi172 bash[23876]: audit 2024-03-24T12:14:01.268212+0000 mon.smithi170 (mon.0) 629 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:01.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:01 smithi172 bash[23876]: audit 2024-03-24T12:14:01.402826+0000 mon.smithi170 (mon.0) 630 : audit 0 from='client.? 172.21.15.170:0/1087803402' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:14:02.651 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":29,"num_osds":8,"num_up_osds":6,"osd_up_since":1711282440,"num_in_osds":8,"osd_in_since":1711282400,"num_remapped_pgs":1} 2024-03-24T12:14:02.863 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:02 smithi170 bash[18738]: cluster 2024-03-24T12:14:00.911219+0000 mgr.smithi170.xkyvyq (mgr.14199) 122 : cluster 0 pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-03-24T12:14:02.863 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:02 smithi170 bash[18738]: audit 2024-03-24T12:14:01.955867+0000 mon.smithi170 (mon.0) 631 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:02.863 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:02 smithi170 bash[18738]: audit 2024-03-24T12:14:01.965918+0000 mon.smithi170 (mon.0) 632 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:02.863 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:02 smithi170 bash[18738]: cluster 2024-03-24T12:14:02.272942+0000 mon.smithi170 (mon.0) 633 : cluster 0 osdmap e30: 8 total, 6 up, 8 in 2024-03-24T12:14:02.863 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:02 smithi170 bash[18738]: audit 2024-03-24T12:14:02.273271+0000 mon.smithi170 (mon.0) 634 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:02.863 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:02 smithi170 bash[18738]: audit 2024-03-24T12:14:02.274058+0000 mon.smithi170 (mon.0) 635 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:02.863 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:02 smithi170 bash[18738]: audit 2024-03-24T12:14:02.346695+0000 mon.smithi170 (mon.0) 636 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:02.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:02 smithi172 bash[23876]: cluster 2024-03-24T12:14:00.911219+0000 mgr.smithi170.xkyvyq (mgr.14199) 122 : cluster 0 pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-03-24T12:14:02.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:02 smithi172 bash[23876]: audit 2024-03-24T12:14:01.955867+0000 mon.smithi170 (mon.0) 631 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:02.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:02 smithi172 bash[23876]: audit 2024-03-24T12:14:01.965918+0000 mon.smithi170 (mon.0) 632 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:02.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:02 smithi172 bash[23876]: cluster 2024-03-24T12:14:02.272942+0000 mon.smithi170 (mon.0) 633 : cluster 0 osdmap e30: 8 total, 6 up, 8 in 2024-03-24T12:14:02.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:02 smithi172 bash[23876]: audit 2024-03-24T12:14:02.273271+0000 mon.smithi170 (mon.0) 634 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:02.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:02 smithi172 bash[23876]: audit 2024-03-24T12:14:02.274058+0000 mon.smithi170 (mon.0) 635 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:02.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:02 smithi172 bash[23876]: audit 2024-03-24T12:14:02.346695+0000 mon.smithi170 (mon.0) 636 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:03.163 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:03 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:14:03.459 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:03 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:14:03.653 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd stat -f json 2024-03-24T12:14:04.557 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:04 smithi170 bash[18738]: cluster 2024-03-24T12:14:02.911952+0000 mgr.smithi170.xkyvyq (mgr.14199) 123 : cluster 0 pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-03-24T12:14:04.557 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:04 smithi170 bash[18738]: cluster 2024-03-24T12:14:03.275063+0000 mon.smithi170 (mon.0) 637 : cluster 0 osdmap e31: 8 total, 6 up, 8 in 2024-03-24T12:14:04.557 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:04 smithi170 bash[18738]: audit 2024-03-24T12:14:03.275319+0000 mon.smithi170 (mon.0) 638 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:04.557 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:04 smithi170 bash[18738]: audit 2024-03-24T12:14:03.275761+0000 mon.smithi170 (mon.0) 639 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:04.558 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:04 smithi170 bash[18738]: audit 2024-03-24T12:14:03.502644+0000 mon.smithi170 (mon.0) 640 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:04.558 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:04 smithi170 bash[18738]: audit 2024-03-24T12:14:03.508950+0000 mon.smithi170 (mon.0) 641 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:04.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:04 smithi172 bash[23876]: cluster 2024-03-24T12:14:02.911952+0000 mgr.smithi170.xkyvyq (mgr.14199) 123 : cluster 0 pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-03-24T12:14:04.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:04 smithi172 bash[23876]: cluster 2024-03-24T12:14:03.275063+0000 mon.smithi170 (mon.0) 637 : cluster 0 osdmap e31: 8 total, 6 up, 8 in 2024-03-24T12:14:04.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:04 smithi172 bash[23876]: audit 2024-03-24T12:14:03.275319+0000 mon.smithi170 (mon.0) 638 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:04.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:04 smithi172 bash[23876]: audit 2024-03-24T12:14:03.275761+0000 mon.smithi170 (mon.0) 639 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:04.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:04 smithi172 bash[23876]: audit 2024-03-24T12:14:03.502644+0000 mon.smithi170 (mon.0) 640 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:04.667 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:04 smithi172 bash[23876]: audit 2024-03-24T12:14:03.508950+0000 mon.smithi170 (mon.0) 641 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:06.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:06 smithi172 bash[23876]: cluster 2024-03-24T12:14:04.282235+0000 mon.smithi170 (mon.0) 642 : cluster 0 osdmap e32: 8 total, 6 up, 8 in 2024-03-24T12:14:06.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:06 smithi172 bash[23876]: audit 2024-03-24T12:14:04.282468+0000 mon.smithi170 (mon.0) 643 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:06.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:06 smithi172 bash[23876]: audit 2024-03-24T12:14:04.282849+0000 mon.smithi170 (mon.0) 644 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:06.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:06 smithi172 bash[23876]: audit 2024-03-24T12:14:04.316991+0000 mon.smithi170 (mon.0) 645 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:06.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:06 smithi172 bash[23876]: audit 2024-03-24T12:14:04.318922+0000 mon.smithi170 (mon.0) 646 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-24T12:14:06.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:06 smithi172 bash[23876]: audit 2024-03-24T12:14:05.213213+0000 mon.smithi170 (mon.0) 647 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-24T12:14:06.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:06 smithi172 bash[23876]: audit 2024-03-24T12:14:05.213722+0000 mon.smithi170 (mon.0) 648 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi170"}]: dispatch 2024-03-24T12:14:06.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:06 smithi172 bash[23876]: audit 2024-03-24T12:14:05.213897+0000 mon.smithi170 (mon.0) 649 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:14:06.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:06 smithi172 bash[23876]: audit 2024-03-24T12:14:05.215626+0000 mon.smithi170 (mon.0) 650 : audit 1 from='osd.5 [v2:172.21.15.170:6818/1654515230,v1:172.21.15.170:6819/1654515230]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-03-24T12:14:06.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:06 smithi172 bash[23876]: audit 2024-03-24T12:14:05.238752+0000 mon.smithi170 (mon.0) 651 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:06.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:06 smithi172 bash[23876]: audit 2024-03-24T12:14:05.240921+0000 mon.smithi170 (mon.0) 652 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi170"}]: dispatch 2024-03-24T12:14:06.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:06 smithi172 bash[23876]: audit 2024-03-24T12:14:05.241073+0000 mon.smithi170 (mon.0) 653 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:14:06.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:06 smithi170 bash[18738]: cluster 2024-03-24T12:14:04.282235+0000 mon.smithi170 (mon.0) 642 : cluster 0 osdmap e32: 8 total, 6 up, 8 in 2024-03-24T12:14:06.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:06 smithi170 bash[18738]: audit 2024-03-24T12:14:04.282468+0000 mon.smithi170 (mon.0) 643 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:06.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:06 smithi170 bash[18738]: audit 2024-03-24T12:14:04.282849+0000 mon.smithi170 (mon.0) 644 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:06.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:06 smithi170 bash[18738]: audit 2024-03-24T12:14:04.316991+0000 mon.smithi170 (mon.0) 645 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:06.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:06 smithi170 bash[18738]: audit 2024-03-24T12:14:04.318922+0000 mon.smithi170 (mon.0) 646 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-24T12:14:06.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:06 smithi170 bash[18738]: audit 2024-03-24T12:14:05.213213+0000 mon.smithi170 (mon.0) 647 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-24T12:14:06.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:06 smithi170 bash[18738]: audit 2024-03-24T12:14:05.213722+0000 mon.smithi170 (mon.0) 648 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi170"}]: dispatch 2024-03-24T12:14:06.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:06 smithi170 bash[18738]: audit 2024-03-24T12:14:05.213897+0000 mon.smithi170 (mon.0) 649 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:14:06.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:06 smithi170 bash[18738]: audit 2024-03-24T12:14:05.215626+0000 mon.smithi170 (mon.0) 650 : audit 1 from='osd.5 [v2:172.21.15.170:6818/1654515230,v1:172.21.15.170:6819/1654515230]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-03-24T12:14:06.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:06 smithi170 bash[18738]: audit 2024-03-24T12:14:05.238752+0000 mon.smithi170 (mon.0) 651 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:06.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:06 smithi170 bash[18738]: audit 2024-03-24T12:14:05.240921+0000 mon.smithi170 (mon.0) 652 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi170"}]: dispatch 2024-03-24T12:14:06.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:06 smithi170 bash[18738]: audit 2024-03-24T12:14:05.241073+0000 mon.smithi170 (mon.0) 653 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "mon metadata", "id": "smithi172"}]: dispatch 2024-03-24T12:14:07.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:07 smithi172 bash[23876]: cluster 2024-03-24T12:14:04.912377+0000 mgr.smithi170.xkyvyq (mgr.14199) 124 : cluster 0 pgmap v91: 1 pgs: 1 peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 7.0 KiB/s rd, 391 KiB/s wr, 24 op/s; 144 KiB/s, 0 objects/s recovering 2024-03-24T12:14:07.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:07 smithi172 bash[23876]: audit 2024-03-24T12:14:05.240285+0000 mon.smithi172 (mon.1) 18 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-24T12:14:07.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:07 smithi172 bash[23876]: audit 2024-03-24T12:14:06.146822+0000 mon.smithi172 (mon.1) 19 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-24T12:14:07.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:07 smithi172 bash[23876]: audit 2024-03-24T12:14:06.152741+0000 mon.smithi170 (mon.0) 654 : audit 1 from='osd.5 [v2:172.21.15.170:6818/1654515230,v1:172.21.15.170:6819/1654515230]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-03-24T12:14:07.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:07 smithi172 bash[23876]: cluster 2024-03-24T12:14:06.156086+0000 mon.smithi170 (mon.0) 655 : cluster 0 osdmap e33: 8 total, 6 up, 8 in 2024-03-24T12:14:07.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:07 smithi172 bash[23876]: audit 2024-03-24T12:14:06.156467+0000 mon.smithi170 (mon.0) 656 : audit 1 from='osd.5 [v2:172.21.15.170:6818/1654515230,v1:172.21.15.170:6819/1654515230]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]: dispatch 2024-03-24T12:14:07.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:07 smithi172 bash[23876]: audit 2024-03-24T12:14:06.156891+0000 mon.smithi170 (mon.0) 657 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:07.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:07 smithi172 bash[23876]: audit 2024-03-24T12:14:06.157204+0000 mon.smithi170 (mon.0) 658 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:07.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:07 smithi172 bash[23876]: audit 2024-03-24T12:14:06.172547+0000 mon.smithi170 (mon.0) 659 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:07.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:07 smithi170 bash[18738]: cluster 2024-03-24T12:14:04.912377+0000 mgr.smithi170.xkyvyq (mgr.14199) 124 : cluster 0 pgmap v91: 1 pgs: 1 peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 7.0 KiB/s rd, 391 KiB/s wr, 24 op/s; 144 KiB/s, 0 objects/s recovering 2024-03-24T12:14:07.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:07 smithi170 bash[18738]: audit 2024-03-24T12:14:05.240285+0000 mon.smithi172 (mon.1) 18 : audit 1 from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-03-24T12:14:07.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:07 smithi170 bash[18738]: audit 2024-03-24T12:14:06.146822+0000 mon.smithi172 (mon.1) 19 : audit 1 from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-03-24T12:14:07.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:07 smithi170 bash[18738]: audit 2024-03-24T12:14:06.152741+0000 mon.smithi170 (mon.0) 654 : audit 1 from='osd.5 [v2:172.21.15.170:6818/1654515230,v1:172.21.15.170:6819/1654515230]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-03-24T12:14:07.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:07 smithi170 bash[18738]: cluster 2024-03-24T12:14:06.156086+0000 mon.smithi170 (mon.0) 655 : cluster 0 osdmap e33: 8 total, 6 up, 8 in 2024-03-24T12:14:07.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:07 smithi170 bash[18738]: audit 2024-03-24T12:14:06.156467+0000 mon.smithi170 (mon.0) 656 : audit 1 from='osd.5 [v2:172.21.15.170:6818/1654515230,v1:172.21.15.170:6819/1654515230]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]: dispatch 2024-03-24T12:14:07.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:07 smithi170 bash[18738]: audit 2024-03-24T12:14:06.156891+0000 mon.smithi170 (mon.0) 657 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:07.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:07 smithi170 bash[18738]: audit 2024-03-24T12:14:06.157204+0000 mon.smithi170 (mon.0) 658 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:07.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:07 smithi170 bash[18738]: audit 2024-03-24T12:14:06.172547+0000 mon.smithi170 (mon.0) 659 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:08.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:08 smithi172 bash[23876]: cluster 2024-03-24T12:14:05.980381+0000 osd.5 (osd.5) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:14:08.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:08 smithi172 bash[23876]: cluster 2024-03-24T12:14:05.980488+0000 osd.5 (osd.5) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:14:08.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:08 smithi172 bash[23876]: cluster 2024-03-24T12:14:06.912941+0000 mgr.smithi170.xkyvyq (mgr.14199) 125 : cluster 0 pgmap v93: 1 pgs: 1 peering; 577 KiB data, 172 MiB used, 536 GiB / 536 GiB avail; 6.0 KiB/s rd, 337 KiB/s wr, 21 op/s; 124 KiB/s, 0 objects/s recovering 2024-03-24T12:14:08.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:08 smithi172 bash[23876]: audit 2024-03-24T12:14:07.158846+0000 mon.smithi170 (mon.0) 660 : audit 1 from='osd.5 [v2:172.21.15.170:6818/1654515230,v1:172.21.15.170:6819/1654515230]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-03-24T12:14:08.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:08 smithi172 bash[23876]: cluster 2024-03-24T12:14:07.163657+0000 mon.smithi170 (mon.0) 661 : cluster 0 osdmap e34: 8 total, 6 up, 8 in 2024-03-24T12:14:08.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:08 smithi172 bash[23876]: audit 2024-03-24T12:14:07.164895+0000 mon.smithi170 (mon.0) 662 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:08.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:08 smithi172 bash[23876]: audit 2024-03-24T12:14:07.165321+0000 mon.smithi170 (mon.0) 663 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:08.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:08 smithi172 bash[23876]: audit 2024-03-24T12:14:07.174966+0000 mon.smithi170 (mon.0) 664 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:08.418 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:08 smithi172 bash[23876]: audit 2024-03-24T12:14:07.493876+0000 mon.smithi170 (mon.0) 665 : audit 1 from='osd.5 [v2:172.21.15.170:6818/1654515230,v1:172.21.15.170:6819/1654515230]' entity='osd.5' 2024-03-24T12:14:08.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:08 smithi170 bash[18738]: cluster 2024-03-24T12:14:05.980381+0000 osd.5 (osd.5) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:14:08.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:08 smithi170 bash[18738]: cluster 2024-03-24T12:14:05.980488+0000 osd.5 (osd.5) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:14:08.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:08 smithi170 bash[18738]: cluster 2024-03-24T12:14:06.912941+0000 mgr.smithi170.xkyvyq (mgr.14199) 125 : cluster 0 pgmap v93: 1 pgs: 1 peering; 577 KiB data, 172 MiB used, 536 GiB / 536 GiB avail; 6.0 KiB/s rd, 337 KiB/s wr, 21 op/s; 124 KiB/s, 0 objects/s recovering 2024-03-24T12:14:08.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:08 smithi170 bash[18738]: audit 2024-03-24T12:14:07.158846+0000 mon.smithi170 (mon.0) 660 : audit 1 from='osd.5 [v2:172.21.15.170:6818/1654515230,v1:172.21.15.170:6819/1654515230]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-03-24T12:14:08.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:08 smithi170 bash[18738]: cluster 2024-03-24T12:14:07.163657+0000 mon.smithi170 (mon.0) 661 : cluster 0 osdmap e34: 8 total, 6 up, 8 in 2024-03-24T12:14:08.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:08 smithi170 bash[18738]: audit 2024-03-24T12:14:07.164895+0000 mon.smithi170 (mon.0) 662 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:08.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:08 smithi170 bash[18738]: audit 2024-03-24T12:14:07.165321+0000 mon.smithi170 (mon.0) 663 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:08.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:08 smithi170 bash[18738]: audit 2024-03-24T12:14:07.174966+0000 mon.smithi170 (mon.0) 664 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:08.472 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:08 smithi170 bash[18738]: audit 2024-03-24T12:14:07.493876+0000 mon.smithi170 (mon.0) 665 : audit 1 from='osd.5 [v2:172.21.15.170:6818/1654515230,v1:172.21.15.170:6819/1654515230]' entity='osd.5' 2024-03-24T12:14:08.656 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:14:09.416 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:09 smithi172 bash[23876]: audit 2024-03-24T12:14:08.171136+0000 mon.smithi170 (mon.0) 666 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:09.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:09 smithi172 bash[23876]: cluster 2024-03-24T12:14:08.500606+0000 mon.smithi170 (mon.0) 667 : cluster 1 osd.5 [v2:172.21.15.170:6818/1654515230,v1:172.21.15.170:6819/1654515230] boot 2024-03-24T12:14:09.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:09 smithi172 bash[23876]: cluster 2024-03-24T12:14:08.500675+0000 mon.smithi170 (mon.0) 668 : cluster 0 osdmap e35: 8 total, 7 up, 8 in 2024-03-24T12:14:09.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:09 smithi172 bash[23876]: audit 2024-03-24T12:14:08.501043+0000 mon.smithi170 (mon.0) 669 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:09.417 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:09 smithi172 bash[23876]: audit 2024-03-24T12:14:08.501442+0000 mon.smithi170 (mon.0) 670 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:09.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:09 smithi170 bash[18738]: audit 2024-03-24T12:14:08.171136+0000 mon.smithi170 (mon.0) 666 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:09.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:09 smithi170 bash[18738]: cluster 2024-03-24T12:14:08.500606+0000 mon.smithi170 (mon.0) 667 : cluster 1 osd.5 [v2:172.21.15.170:6818/1654515230,v1:172.21.15.170:6819/1654515230] boot 2024-03-24T12:14:09.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:09 smithi170 bash[18738]: cluster 2024-03-24T12:14:08.500675+0000 mon.smithi170 (mon.0) 668 : cluster 0 osdmap e35: 8 total, 7 up, 8 in 2024-03-24T12:14:09.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:09 smithi170 bash[18738]: audit 2024-03-24T12:14:08.501043+0000 mon.smithi170 (mon.0) 669 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-03-24T12:14:09.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:09 smithi170 bash[18738]: audit 2024-03-24T12:14:08.501442+0000 mon.smithi170 (mon.0) 670 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:10.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:10 smithi172 bash[23876]: cluster 2024-03-24T12:14:08.913479+0000 mgr.smithi170.xkyvyq (mgr.14199) 126 : cluster 0 pgmap v96: 1 pgs: 1 peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-03-24T12:14:10.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:10 smithi172 bash[23876]: cluster 2024-03-24T12:14:09.506224+0000 mon.smithi170 (mon.0) 671 : cluster 0 osdmap e36: 8 total, 7 up, 8 in 2024-03-24T12:14:10.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:10 smithi172 bash[23876]: audit 2024-03-24T12:14:09.506623+0000 mon.smithi170 (mon.0) 672 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:10.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:10 smithi170 bash[18738]: cluster 2024-03-24T12:14:08.913479+0000 mgr.smithi170.xkyvyq (mgr.14199) 126 : cluster 0 pgmap v96: 1 pgs: 1 peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-03-24T12:14:10.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:10 smithi170 bash[18738]: cluster 2024-03-24T12:14:09.506224+0000 mon.smithi170 (mon.0) 671 : cluster 0 osdmap e36: 8 total, 7 up, 8 in 2024-03-24T12:14:10.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:10 smithi170 bash[18738]: audit 2024-03-24T12:14:09.506623+0000 mon.smithi170 (mon.0) 672 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:11.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:11 smithi172 bash[23876]: audit 2024-03-24T12:14:10.634386+0000 mon.smithi170 (mon.0) 673 : audit 1 from='osd.7 [v2:172.21.15.170:6826/4233066162,v1:172.21.15.170:6827/4233066162]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-03-24T12:14:11.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:11 smithi170 bash[18738]: audit 2024-03-24T12:14:10.634386+0000 mon.smithi170 (mon.0) 673 : audit 1 from='osd.7 [v2:172.21.15.170:6826/4233066162,v1:172.21.15.170:6827/4233066162]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-03-24T12:14:12.579 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:12 smithi170 bash[18738]: cluster 2024-03-24T12:14:10.914025+0000 mgr.smithi170.xkyvyq (mgr.14199) 127 : cluster 0 pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 201 MiB used, 626 GiB / 626 GiB avail; 7.4 KiB/s rd, 384 KiB/s wr, 24 op/s; 0 B/s, 0 objects/s recovering 2024-03-24T12:14:12.579 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:12 smithi170 bash[18738]: audit 2024-03-24T12:14:11.512641+0000 mon.smithi170 (mon.0) 674 : audit 1 from='osd.7 [v2:172.21.15.170:6826/4233066162,v1:172.21.15.170:6827/4233066162]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-03-24T12:14:12.579 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:12 smithi170 bash[18738]: cluster 2024-03-24T12:14:11.517283+0000 mon.smithi170 (mon.0) 675 : cluster 0 osdmap e37: 8 total, 7 up, 8 in 2024-03-24T12:14:12.579 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:12 smithi170 bash[18738]: audit 2024-03-24T12:14:11.517760+0000 mon.smithi170 (mon.0) 676 : audit 1 from='osd.7 [v2:172.21.15.170:6826/4233066162,v1:172.21.15.170:6827/4233066162]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]: dispatch 2024-03-24T12:14:12.579 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:12 smithi170 bash[18738]: audit 2024-03-24T12:14:11.518327+0000 mon.smithi170 (mon.0) 677 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:12.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:12 smithi172 bash[23876]: cluster 2024-03-24T12:14:10.914025+0000 mgr.smithi170.xkyvyq (mgr.14199) 127 : cluster 0 pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 201 MiB used, 626 GiB / 626 GiB avail; 7.4 KiB/s rd, 384 KiB/s wr, 24 op/s; 0 B/s, 0 objects/s recovering 2024-03-24T12:14:12.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:12 smithi172 bash[23876]: audit 2024-03-24T12:14:11.512641+0000 mon.smithi170 (mon.0) 674 : audit 1 from='osd.7 [v2:172.21.15.170:6826/4233066162,v1:172.21.15.170:6827/4233066162]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-03-24T12:14:12.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:12 smithi172 bash[23876]: cluster 2024-03-24T12:14:11.517283+0000 mon.smithi170 (mon.0) 675 : cluster 0 osdmap e37: 8 total, 7 up, 8 in 2024-03-24T12:14:12.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:12 smithi172 bash[23876]: audit 2024-03-24T12:14:11.517760+0000 mon.smithi170 (mon.0) 676 : audit 1 from='osd.7 [v2:172.21.15.170:6826/4233066162,v1:172.21.15.170:6827/4233066162]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]: dispatch 2024-03-24T12:14:12.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:12 smithi172 bash[23876]: audit 2024-03-24T12:14:11.518327+0000 mon.smithi170 (mon.0) 677 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:12.963 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:14:13.810 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:13 smithi170 bash[18738]: audit 2024-03-24T12:14:12.514910+0000 mon.smithi170 (mon.0) 678 : audit 1 from='osd.7 [v2:172.21.15.170:6826/4233066162,v1:172.21.15.170:6827/4233066162]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-03-24T12:14:13.810 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:13 smithi170 bash[18738]: cluster 2024-03-24T12:14:12.517956+0000 mon.smithi170 (mon.0) 679 : cluster 0 osdmap e38: 8 total, 7 up, 8 in 2024-03-24T12:14:13.810 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:13 smithi170 bash[18738]: audit 2024-03-24T12:14:12.518911+0000 mon.smithi170 (mon.0) 680 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:13.810 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:13 smithi170 bash[18738]: audit 2024-03-24T12:14:12.522430+0000 mon.smithi170 (mon.0) 681 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:13.810 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:13 smithi170 bash[18738]: audit 2024-03-24T12:14:12.839862+0000 mon.smithi170 (mon.0) 682 : audit 1 from='osd.7 [v2:172.21.15.170:6826/4233066162,v1:172.21.15.170:6827/4233066162]' entity='osd.7' 2024-03-24T12:14:13.810 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:13 smithi170 bash[18738]: audit 2024-03-24T12:14:12.966146+0000 mon.smithi170 (mon.0) 683 : audit 0 from='client.? 172.21.15.170:0/213588933' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:14:13.810 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:13 smithi170 bash[18738]: audit 2024-03-24T12:14:13.522843+0000 mon.smithi170 (mon.0) 684 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:13.876 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":38,"num_osds":8,"num_up_osds":7,"osd_up_since":1711282448,"num_in_osds":8,"osd_in_since":1711282400,"num_remapped_pgs":0} 2024-03-24T12:14:13.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:13 smithi172 bash[23876]: audit 2024-03-24T12:14:12.514910+0000 mon.smithi170 (mon.0) 678 : audit 1 from='osd.7 [v2:172.21.15.170:6826/4233066162,v1:172.21.15.170:6827/4233066162]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-03-24T12:14:13.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:13 smithi172 bash[23876]: cluster 2024-03-24T12:14:12.517956+0000 mon.smithi170 (mon.0) 679 : cluster 0 osdmap e38: 8 total, 7 up, 8 in 2024-03-24T12:14:13.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:13 smithi172 bash[23876]: audit 2024-03-24T12:14:12.518911+0000 mon.smithi170 (mon.0) 680 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:13.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:13 smithi172 bash[23876]: audit 2024-03-24T12:14:12.522430+0000 mon.smithi170 (mon.0) 681 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:13.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:13 smithi172 bash[23876]: audit 2024-03-24T12:14:12.839862+0000 mon.smithi170 (mon.0) 682 : audit 1 from='osd.7 [v2:172.21.15.170:6826/4233066162,v1:172.21.15.170:6827/4233066162]' entity='osd.7' 2024-03-24T12:14:13.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:13 smithi172 bash[23876]: audit 2024-03-24T12:14:12.966146+0000 mon.smithi170 (mon.0) 683 : audit 0 from='client.? 172.21.15.170:0/213588933' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:14:13.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:13 smithi172 bash[23876]: audit 2024-03-24T12:14:13.522843+0000 mon.smithi170 (mon.0) 684 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:14.878 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd stat -f json 2024-03-24T12:14:14.888 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:14 smithi170 bash[18738]: cluster 2024-03-24T12:14:11.668591+0000 osd.7 (osd.7) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:14:14.888 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:14 smithi170 bash[18738]: cluster 2024-03-24T12:14:11.668730+0000 osd.7 (osd.7) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:14:14.888 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:14 smithi170 bash[18738]: cluster 2024-03-24T12:14:12.914423+0000 mgr.smithi170.xkyvyq (mgr.14199) 128 : cluster 0 pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 201 MiB used, 626 GiB / 626 GiB avail; 7.9 KiB/s rd, 414 KiB/s wr, 26 op/s; 0 B/s, 0 objects/s recovering 2024-03-24T12:14:14.888 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:14 smithi170 bash[18738]: cluster 2024-03-24T12:14:13.540204+0000 mon.smithi170 (mon.0) 685 : cluster 1 osd.7 [v2:172.21.15.170:6826/4233066162,v1:172.21.15.170:6827/4233066162] boot 2024-03-24T12:14:14.888 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:14 smithi170 bash[18738]: cluster 2024-03-24T12:14:13.540320+0000 mon.smithi170 (mon.0) 686 : cluster 0 osdmap e39: 8 total, 8 up, 8 in 2024-03-24T12:14:14.888 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:14 smithi170 bash[18738]: audit 2024-03-24T12:14:13.540649+0000 mon.smithi170 (mon.0) 687 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:14.888 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:14 smithi170 bash[18738]: audit 2024-03-24T12:14:13.910079+0000 mon.smithi170 (mon.0) 688 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:14:14.889 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:14 smithi170 bash[18738]: audit 2024-03-24T12:14:14.360248+0000 mon.smithi170 (mon.0) 689 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:14.889 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:14 smithi170 bash[18738]: audit 2024-03-24T12:14:14.371475+0000 mon.smithi170 (mon.0) 690 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:14.889 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:14 smithi170 bash[18738]: audit 2024-03-24T12:14:14.497837+0000 mon.smithi170 (mon.0) 691 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:14:14.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:14 smithi172 bash[23876]: cluster 2024-03-24T12:14:11.668591+0000 osd.7 (osd.7) 1 : cluster 0 purged_snaps scrub starts 2024-03-24T12:14:14.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:14 smithi172 bash[23876]: cluster 2024-03-24T12:14:11.668730+0000 osd.7 (osd.7) 2 : cluster 0 purged_snaps scrub ok 2024-03-24T12:14:14.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:14 smithi172 bash[23876]: cluster 2024-03-24T12:14:12.914423+0000 mgr.smithi170.xkyvyq (mgr.14199) 128 : cluster 0 pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 201 MiB used, 626 GiB / 626 GiB avail; 7.9 KiB/s rd, 414 KiB/s wr, 26 op/s; 0 B/s, 0 objects/s recovering 2024-03-24T12:14:14.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:14 smithi172 bash[23876]: cluster 2024-03-24T12:14:13.540204+0000 mon.smithi170 (mon.0) 685 : cluster 1 osd.7 [v2:172.21.15.170:6826/4233066162,v1:172.21.15.170:6827/4233066162] boot 2024-03-24T12:14:14.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:14 smithi172 bash[23876]: cluster 2024-03-24T12:14:13.540320+0000 mon.smithi170 (mon.0) 686 : cluster 0 osdmap e39: 8 total, 8 up, 8 in 2024-03-24T12:14:14.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:14 smithi172 bash[23876]: audit 2024-03-24T12:14:13.540649+0000 mon.smithi170 (mon.0) 687 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-03-24T12:14:14.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:14 smithi172 bash[23876]: audit 2024-03-24T12:14:13.910079+0000 mon.smithi170 (mon.0) 688 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:14:14.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:14 smithi172 bash[23876]: audit 2024-03-24T12:14:14.360248+0000 mon.smithi170 (mon.0) 689 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:14.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:14 smithi172 bash[23876]: audit 2024-03-24T12:14:14.371475+0000 mon.smithi170 (mon.0) 690 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:14.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:14 smithi172 bash[23876]: audit 2024-03-24T12:14:14.497837+0000 mon.smithi170 (mon.0) 691 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:14:15.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:15 smithi172 bash[23876]: cluster 2024-03-24T12:14:14.545629+0000 mon.smithi170 (mon.0) 692 : cluster 0 osdmap e40: 8 total, 8 up, 8 in 2024-03-24T12:14:15.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:15 smithi172 bash[23876]: cluster 2024-03-24T12:14:15.544542+0000 mon.smithi170 (mon.0) 693 : cluster 0 osdmap e41: 8 total, 8 up, 8 in 2024-03-24T12:14:15.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:15 smithi170 bash[18738]: cluster 2024-03-24T12:14:14.545629+0000 mon.smithi170 (mon.0) 692 : cluster 0 osdmap e40: 8 total, 8 up, 8 in 2024-03-24T12:14:15.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:15 smithi170 bash[18738]: cluster 2024-03-24T12:14:15.544542+0000 mon.smithi170 (mon.0) 693 : cluster 0 osdmap e41: 8 total, 8 up, 8 in 2024-03-24T12:14:16.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:16 smithi172 bash[23876]: cluster 2024-03-24T12:14:14.914786+0000 mgr.smithi170.xkyvyq (mgr.14199) 129 : cluster 0 pgmap v104: 1 pgs: 1 unknown; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:16.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:16 smithi170 bash[18738]: cluster 2024-03-24T12:14:14.914786+0000 mgr.smithi170.xkyvyq (mgr.14199) 129 : cluster 0 pgmap v104: 1 pgs: 1 unknown; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:17.666 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:17 smithi172 bash[23876]: cluster 2024-03-24T12:14:16.568610+0000 mon.smithi170 (mon.0) 694 : cluster 0 osdmap e42: 8 total, 8 up, 8 in 2024-03-24T12:14:17.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:17 smithi170 bash[18738]: cluster 2024-03-24T12:14:16.568610+0000 mon.smithi170 (mon.0) 694 : cluster 0 osdmap e42: 8 total, 8 up, 8 in 2024-03-24T12:14:18.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:18 smithi172 bash[23876]: cluster 2024-03-24T12:14:16.915369+0000 mgr.smithi170.xkyvyq (mgr.14199) 130 : cluster 0 pgmap v107: 1 pgs: 1 unknown; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:18.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:18 smithi172 bash[23876]: cluster 2024-03-24T12:14:17.571829+0000 mon.smithi170 (mon.0) 695 : cluster 0 osdmap e43: 8 total, 8 up, 8 in 2024-03-24T12:14:18.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:18 smithi170 bash[18738]: cluster 2024-03-24T12:14:16.915369+0000 mgr.smithi170.xkyvyq (mgr.14199) 130 : cluster 0 pgmap v107: 1 pgs: 1 unknown; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:18.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:18 smithi170 bash[18738]: cluster 2024-03-24T12:14:17.571829+0000 mon.smithi170 (mon.0) 695 : cluster 0 osdmap e43: 8 total, 8 up, 8 in 2024-03-24T12:14:19.555 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:14:20.796 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:20 smithi170 bash[18738]: cluster 2024-03-24T12:14:18.915978+0000 mgr.smithi170.xkyvyq (mgr.14199) 131 : cluster 0 pgmap v109: 1 pgs: 1 unknown; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:20.796 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:20 smithi170 bash[18738]: audit 2024-03-24T12:14:20.034809+0000 mon.smithi170 (mon.0) 696 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:20.796 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:20 smithi170 bash[18738]: audit 2024-03-24T12:14:20.039486+0000 mon.smithi170 (mon.0) 697 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:20.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:20 smithi172 bash[23876]: cluster 2024-03-24T12:14:18.915978+0000 mgr.smithi170.xkyvyq (mgr.14199) 131 : cluster 0 pgmap v109: 1 pgs: 1 unknown; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:20.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:20 smithi172 bash[23876]: audit 2024-03-24T12:14:20.034809+0000 mon.smithi170 (mon.0) 696 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:20.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:20 smithi172 bash[23876]: audit 2024-03-24T12:14:20.039486+0000 mon.smithi170 (mon.0) 697 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:21.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:21 smithi172 bash[23876]: audit 2024-03-24T12:14:20.589850+0000 mon.smithi170 (mon.0) 698 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:21.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:21 smithi172 bash[23876]: audit 2024-03-24T12:14:20.595419+0000 mon.smithi170 (mon.0) 699 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:21.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:21 smithi172 bash[23876]: cluster 2024-03-24T12:14:20.916525+0000 mgr.smithi170.xkyvyq (mgr.14199) 132 : cluster 0 pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-03-24T12:14:21.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:21 smithi170 bash[18738]: audit 2024-03-24T12:14:20.589850+0000 mon.smithi170 (mon.0) 698 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:21.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:21 smithi170 bash[18738]: audit 2024-03-24T12:14:20.595419+0000 mon.smithi170 (mon.0) 699 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:21.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:21 smithi170 bash[18738]: cluster 2024-03-24T12:14:20.916525+0000 mgr.smithi170.xkyvyq (mgr.14199) 132 : cluster 0 pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-03-24T12:14:22.419 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:14:22.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:22 smithi170 bash[18738]: audit 2024-03-24T12:14:22.421770+0000 mon.smithi170 (mon.0) 700 : audit 0 from='client.? 172.21.15.170:0/1602789747' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:14:22.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:22 smithi172 bash[23876]: audit 2024-03-24T12:14:22.421770+0000 mon.smithi170 (mon.0) 700 : audit 0 from='client.? 172.21.15.170:0/1602789747' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-03-24T12:14:23.093 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":43,"num_osds":8,"num_up_osds":8,"osd_up_since":1711282453,"num_in_osds":8,"osd_in_since":1711282400,"num_remapped_pgs":0} 2024-03-24T12:14:23.094 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd dump --format=json 2024-03-24T12:14:23.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:23 smithi172 bash[23876]: cluster 2024-03-24T12:14:22.917108+0000 mgr.smithi170.xkyvyq (mgr.14199) 133 : cluster 0 pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 78 KiB/s, 0 objects/s recovering 2024-03-24T12:14:23.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:23 smithi170 bash[18738]: cluster 2024-03-24T12:14:22.917108+0000 mgr.smithi170.xkyvyq (mgr.14199) 133 : cluster 0 pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 78 KiB/s, 0 objects/s recovering 2024-03-24T12:14:26.274 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:25 smithi172 bash[23876]: cluster 2024-03-24T12:14:24.917751+0000 mgr.smithi170.xkyvyq (mgr.14199) 134 : cluster 0 pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-03-24T12:14:26.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:25 smithi170 bash[18738]: cluster 2024-03-24T12:14:24.917751+0000 mgr.smithi170.xkyvyq (mgr.14199) 134 : cluster 0 pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 69 KiB/s, 0 objects/s recovering 2024-03-24T12:14:27.667 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:14:28.266 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:27 smithi170 bash[18738]: cluster 2024-03-24T12:14:26.918325+0000 mgr.smithi170.xkyvyq (mgr.14199) 135 : cluster 0 pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-03-24T12:14:28.416 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:27 smithi172 bash[23876]: cluster 2024-03-24T12:14:26.918325+0000 mgr.smithi170.xkyvyq (mgr.14199) 135 : cluster 0 pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-03-24T12:14:29.374 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:28 smithi170 bash[18738]: audit 2024-03-24T12:14:28.910890+0000 mon.smithi170 (mon.0) 701 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:14:29.416 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:28 smithi172 bash[23876]: audit 2024-03-24T12:14:28.910890+0000 mon.smithi170 (mon.0) 701 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:14:30.154 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:29 smithi170 bash[18738]: cluster 2024-03-24T12:14:28.921107+0000 mgr.smithi170.xkyvyq (mgr.14199) 136 : cluster 0 pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-03-24T12:14:30.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:29 smithi172 bash[23876]: cluster 2024-03-24T12:14:28.921107+0000 mgr.smithi170.xkyvyq (mgr.14199) 136 : cluster 0 pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 51 KiB/s, 0 objects/s recovering 2024-03-24T12:14:31.819 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:31 smithi170 bash[18738]: cephadm 2024-03-24T12:14:30.502583+0000 mgr.smithi170.xkyvyq (mgr.14199) 137 : cephadm 1 Detected new or changed devices on smithi172 2024-03-24T12:14:31.819 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:31 smithi170 bash[18738]: audit 2024-03-24T12:14:30.514761+0000 mon.smithi170 (mon.0) 702 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:31.819 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:31 smithi170 bash[18738]: audit 2024-03-24T12:14:30.525882+0000 mon.smithi170 (mon.0) 703 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:31.819 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:31 smithi170 bash[18738]: audit 2024-03-24T12:14:30.528455+0000 mon.smithi170 (mon.0) 704 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:31.819 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:31 smithi170 bash[18738]: audit 2024-03-24T12:14:30.529979+0000 mon.smithi170 (mon.0) 705 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:31.819 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:31 smithi170 bash[18738]: audit 2024-03-24T12:14:30.531335+0000 mon.smithi170 (mon.0) 706 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:31.819 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:31 smithi170 bash[18738]: audit 2024-03-24T12:14:30.532658+0000 mon.smithi170 (mon.0) 707 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:31.819 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:31 smithi170 bash[18738]: cephadm 2024-03-24T12:14:30.533791+0000 mgr.smithi170.xkyvyq (mgr.14199) 138 : cephadm 1 Adjusting osd_memory_target on smithi172 to 3772M 2024-03-24T12:14:31.820 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:31 smithi170 bash[18738]: audit 2024-03-24T12:14:30.539020+0000 mon.smithi170 (mon.0) 708 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:31.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:31 smithi172 bash[23876]: cephadm 2024-03-24T12:14:30.502583+0000 mgr.smithi170.xkyvyq (mgr.14199) 137 : cephadm 1 Detected new or changed devices on smithi172 2024-03-24T12:14:31.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:31 smithi172 bash[23876]: audit 2024-03-24T12:14:30.514761+0000 mon.smithi170 (mon.0) 702 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:31.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:31 smithi172 bash[23876]: audit 2024-03-24T12:14:30.525882+0000 mon.smithi170 (mon.0) 703 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:31.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:31 smithi172 bash[23876]: audit 2024-03-24T12:14:30.528455+0000 mon.smithi170 (mon.0) 704 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:31.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:31 smithi172 bash[23876]: audit 2024-03-24T12:14:30.529979+0000 mon.smithi170 (mon.0) 705 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:31.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:31 smithi172 bash[23876]: audit 2024-03-24T12:14:30.531335+0000 mon.smithi170 (mon.0) 706 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:31.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:31 smithi172 bash[23876]: audit 2024-03-24T12:14:30.532658+0000 mon.smithi170 (mon.0) 707 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:31.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:31 smithi172 bash[23876]: cephadm 2024-03-24T12:14:30.533791+0000 mgr.smithi170.xkyvyq (mgr.14199) 138 : cephadm 1 Adjusting osd_memory_target on smithi172 to 3772M 2024-03-24T12:14:31.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:31 smithi172 bash[23876]: audit 2024-03-24T12:14:30.539020+0000 mon.smithi170 (mon.0) 708 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:32.195 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:14:32.196 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":43,"fsid":"158785cc-e9d7-11ee-95cd-87774f69a715","created":"2024-03-24T12:08:54.484486+0000","modified":"2024-03-24T12:14:17.564533+0000","last_up_change":"2024-03-24T12:14:13.525531+0000","last_in_change":"2024-03-24T12:13:20.975588+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-03-24T12:13:54.427016+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"24","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"c0195287-4817-4a5a-9674-2e26d428488c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6800","nonce":4129707366},{"type":"v1","addr":"172.21.15.172:6801","nonce":4129707366}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6802","nonce":4129707366},{"type":"v1","addr":"172.21.15.172:6803","nonce":4129707366}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6806","nonce":4129707366},{"type":"v1","addr":"172.21.15.172:6807","nonce":4129707366}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6804","nonce":4129707366},{"type":"v1","addr":"172.21.15.172:6805","nonce":4129707366}]},"public_addr":"172.21.15.172:6801/4129707366","cluster_addr":"172.21.15.172:6803/4129707366","heartbeat_back_addr":"172.21.15.172:6807/4129707366","heartbeat_front_addr":"172.21.15.172:6805/4129707366","state":["exists","up"]},{"osd":1,"uuid":"e0a87f99-39e1-41f7-87ce-62a67d001c4d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6802","nonce":3705002990},{"type":"v1","addr":"172.21.15.170:6803","nonce":3705002990}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6804","nonce":3705002990},{"type":"v1","addr":"172.21.15.170:6805","nonce":3705002990}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6808","nonce":3705002990},{"type":"v1","addr":"172.21.15.170:6809","nonce":3705002990}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6806","nonce":3705002990},{"type":"v1","addr":"172.21.15.170:6807","nonce":3705002990}]},"public_addr":"172.21.15.170:6803/3705002990","cluster_addr":"172.21.15.170:6805/3705002990","heartbeat_back_addr":"172.21.15.170:6809/3705002990","heartbeat_front_addr":"172.21.15.170:6807/3705002990","state":["exists","up"]},{"osd":2,"uuid":"59ea542a-5a64-46b6-9754-53a0663f8756","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6808","nonce":3285008595},{"type":"v1","addr":"172.21.15.172:6809","nonce":3285008595}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6810","nonce":3285008595},{"type":"v1","addr":"172.21.15.172:6811","nonce":3285008595}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6814","nonce":3285008595},{"type":"v1","addr":"172.21.15.172:6815","nonce":3285008595}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6812","nonce":3285008595},{"type":"v1","addr":"172.21.15.172:6813","nonce":3285008595}]},"public_addr":"172.21.15.172:6809/3285008595","cluster_addr":"172.21.15.172:6811/3285008595","heartbeat_back_addr":"172.21.15.172:6815/3285008595","heartbeat_front_addr":"172.21.15.172:6813/3285008595","state":["exists","up"]},{"osd":3,"uuid":"eaf1c12a-dd5d-4b5d-9d80-339c98f2527c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6810","nonce":274217269},{"type":"v1","addr":"172.21.15.170:6811","nonce":274217269}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6812","nonce":274217269},{"type":"v1","addr":"172.21.15.170:6813","nonce":274217269}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6816","nonce":274217269},{"type":"v1","addr":"172.21.15.170:6817","nonce":274217269}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6814","nonce":274217269},{"type":"v1","addr":"172.21.15.170:6815","nonce":274217269}]},"public_addr":"172.21.15.170:6811/274217269","cluster_addr":"172.21.15.170:6813/274217269","heartbeat_back_addr":"172.21.15.170:6817/274217269","heartbeat_front_addr":"172.21.15.170:6815/274217269","state":["exists","up"]},{"osd":4,"uuid":"7a32bdf5-4799-4b04-8537-7ea5516c964d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6816","nonce":793001656},{"type":"v1","addr":"172.21.15.172:6817","nonce":793001656}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6818","nonce":793001656},{"type":"v1","addr":"172.21.15.172:6819","nonce":793001656}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6822","nonce":793001656},{"type":"v1","addr":"172.21.15.172:6823","nonce":793001656}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6820","nonce":793001656},{"type":"v1","addr":"172.21.15.172:6821","nonce":793001656}]},"public_addr":"172.21.15.172:6817/793001656","cluster_addr":"172.21.15.172:6819/793001656","heartbeat_back_addr":"172.21.15.172:6823/793001656","heartbeat_front_addr":"172.21.15.172:6821/793001656","state":["exists","up"]},{"osd":5,"uuid":"39f90824-5989-4d5f-bd5f-4c19969d9511","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6818","nonce":1654515230},{"type":"v1","addr":"172.21.15.170:6819","nonce":1654515230}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6820","nonce":1654515230},{"type":"v1","addr":"172.21.15.170:6821","nonce":1654515230}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6824","nonce":1654515230},{"type":"v1","addr":"172.21.15.170:6825","nonce":1654515230}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6822","nonce":1654515230},{"type":"v1","addr":"172.21.15.170:6823","nonce":1654515230}]},"public_addr":"172.21.15.170:6819/1654515230","cluster_addr":"172.21.15.170:6821/1654515230","heartbeat_back_addr":"172.21.15.170:6825/1654515230","heartbeat_front_addr":"172.21.15.170:6823/1654515230","state":["exists","up"]},{"osd":6,"uuid":"480691f8-e007-49a8-a931-d26864de9818","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6824","nonce":548640071},{"type":"v1","addr":"172.21.15.172:6825","nonce":548640071}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6826","nonce":548640071},{"type":"v1","addr":"172.21.15.172:6827","nonce":548640071}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6830","nonce":548640071},{"type":"v1","addr":"172.21.15.172:6831","nonce":548640071}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6828","nonce":548640071},{"type":"v1","addr":"172.21.15.172:6829","nonce":548640071}]},"public_addr":"172.21.15.172:6825/548640071","cluster_addr":"172.21.15.172:6827/548640071","heartbeat_back_addr":"172.21.15.172:6831/548640071","heartbeat_front_addr":"172.21.15.172:6829/548640071","state":["exists","up"]},{"osd":7,"uuid":"54b59406-ca96-4dc1-be29-3220bcfa46cc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6826","nonce":4233066162},{"type":"v1","addr":"172.21.15.170:6827","nonce":4233066162}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6828","nonce":4233066162},{"type":"v1","addr":"172.21.15.170:6829","nonce":4233066162}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6832","nonce":4233066162},{"type":"v1","addr":"172.21.15.170:6833","nonce":4233066162}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6830","nonce":4233066162},{"type":"v1","addr":"172.21.15.170:6831","nonce":4233066162}]},"public_addr":"172.21.15.170:6827/4233066162","cluster_addr":"172.21.15.170:6829/4233066162","heartbeat_back_addr":"172.21.15.170:6833/4233066162","heartbeat_front_addr":"172.21.15.170:6831/4233066162","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:45.206762+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:51.537210+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:50.190741+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:58.480359+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:54.999388+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:14:05.980494+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:58.889753+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:14:11.668738+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.170:0/1428017488":"2024-03-25T12:11:43.805447+0000","172.21.15.170:0/1213676103":"2024-03-25T12:11:43.805447+0000","172.21.15.170:6801/3200440131":"2024-03-25T12:11:43.805447+0000","172.21.15.170:6800/2785533943":"2024-03-25T12:10:13.305347+0000","172.21.15.170:0/2396254373":"2024-03-25T12:10:13.305347+0000","172.21.15.170:0/4222220446":"2024-03-25T12:10:13.305347+0000","172.21.15.170:6801/2785533943":"2024-03-25T12:10:13.305347+0000","172.21.15.170:0/2762822166":"2024-03-25T12:09:26.057894+0000","172.21.15.170:0/326813447":"2024-03-25T12:09:26.057894+0000","172.21.15.170:0/2880640047":"2024-03-25T12:09:26.057894+0000","172.21.15.170:0/2811678733":"2024-03-25T12:10:13.305347+0000","172.21.15.170:0/4118462885":"2024-03-25T12:11:43.805447+0000","172.21.15.170:6800/3903860669":"2024-03-25T12:09:26.057894+0000","172.21.15.170:6800/3200440131":"2024-03-25T12:11:43.805447+0000","172.21.15.170:6801/3903860669":"2024-03-25T12:09:26.057894+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-03-24T12:14:32.852 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:32 smithi170 bash[18738]: cluster 2024-03-24T12:14:30.921811+0000 mgr.smithi170.xkyvyq (mgr.14199) 139 : cluster 0 pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-03-24T12:14:32.852 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:32 smithi170 bash[18738]: audit 2024-03-24T12:14:32.196113+0000 mon.smithi170 (mon.0) 709 : audit 0 from='client.? 172.21.15.170:0/2544345267' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-24T12:14:32.853 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-03-24T12:13:54.427016+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '24', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 7.889999866485596, 'score_stable': 7.889999866485596, 'optimal_score': 0.3799999952316284, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-03-24T12:14:32.854 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd pool get .mgr pg_num 2024-03-24T12:14:32.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:32 smithi172 bash[23876]: cluster 2024-03-24T12:14:30.921811+0000 mgr.smithi170.xkyvyq (mgr.14199) 139 : cluster 0 pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-03-24T12:14:32.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:32 smithi172 bash[23876]: audit 2024-03-24T12:14:32.196113+0000 mon.smithi170 (mon.0) 709 : audit 0 from='client.? 172.21.15.170:0/2544345267' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-24T12:14:34.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: cluster 2024-03-24T12:14:32.922227+0000 mgr.smithi170.xkyvyq (mgr.14199) 140 : cluster 0 pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:34.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.720927+0000 mon.smithi170 (mon.0) 710 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:34.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.733353+0000 mon.smithi170 (mon.0) 711 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:34.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.736599+0000 mon.smithi170 (mon.0) 712 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:34.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.738236+0000 mon.smithi170 (mon.0) 713 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:34.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.739830+0000 mon.smithi170 (mon.0) 714 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:34.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.741469+0000 mon.smithi170 (mon.0) 715 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:34.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.748524+0000 mon.smithi170 (mon.0) 716 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:34.917 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.753099+0000 mon.smithi170 (mon.0) 717 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:14:34.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.754844+0000 mon.smithi170 (mon.0) 718 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:14:34.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.763731+0000 mon.smithi170 (mon.0) 719 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:34.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.771411+0000 mon.smithi170 (mon.0) 720 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:14:34.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.781805+0000 mon.smithi170 (mon.0) 721 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-24T12:14:34.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.783588+0000 mon.smithi170 (mon.0) 722 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:14:34.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.791585+0000 mon.smithi170 (mon.0) 723 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-24T12:14:34.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:34 smithi172 bash[23876]: audit 2024-03-24T12:14:33.793283+0000 mon.smithi170 (mon.0) 724 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:14:34.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: cluster 2024-03-24T12:14:32.922227+0000 mgr.smithi170.xkyvyq (mgr.14199) 140 : cluster 0 pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:34.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.720927+0000 mon.smithi170 (mon.0) 710 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.733353+0000 mon.smithi170 (mon.0) 711 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.736599+0000 mon.smithi170 (mon.0) 712 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.738236+0000 mon.smithi170 (mon.0) 713 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.739830+0000 mon.smithi170 (mon.0) 714 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.741469+0000 mon.smithi170 (mon.0) 715 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.748524+0000 mon.smithi170 (mon.0) 716 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.753099+0000 mon.smithi170 (mon.0) 717 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.754844+0000 mon.smithi170 (mon.0) 718 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.763731+0000 mon.smithi170 (mon.0) 719 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.771411+0000 mon.smithi170 (mon.0) 720 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.781805+0000 mon.smithi170 (mon.0) 721 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.783588+0000 mon.smithi170 (mon.0) 722 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.791585+0000 mon.smithi170 (mon.0) 723 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-03-24T12:14:34.972 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:34 smithi170 bash[18738]: audit 2024-03-24T12:14:33.793283+0000 mon.smithi170 (mon.0) 724 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:14:35.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:35 smithi172 bash[23876]: cephadm 2024-03-24T12:14:33.709342+0000 mgr.smithi170.xkyvyq (mgr.14199) 141 : cephadm 1 Detected new or changed devices on smithi170 2024-03-24T12:14:35.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:35 smithi172 bash[23876]: cephadm 2024-03-24T12:14:33.742716+0000 mgr.smithi170.xkyvyq (mgr.14199) 142 : cephadm 1 Adjusting osd_memory_target on smithi170 to 3004M 2024-03-24T12:14:35.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:35 smithi170 bash[18738]: cephadm 2024-03-24T12:14:33.709342+0000 mgr.smithi170.xkyvyq (mgr.14199) 141 : cephadm 1 Detected new or changed devices on smithi170 2024-03-24T12:14:35.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:35 smithi170 bash[18738]: cephadm 2024-03-24T12:14:33.742716+0000 mgr.smithi170.xkyvyq (mgr.14199) 142 : cephadm 1 Adjusting osd_memory_target on smithi170 to 3004M 2024-03-24T12:14:36.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:36 smithi172 bash[23876]: cluster 2024-03-24T12:14:34.922797+0000 mgr.smithi170.xkyvyq (mgr.14199) 143 : cluster 0 pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:36.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:36 smithi170 bash[18738]: cluster 2024-03-24T12:14:34.922797+0000 mgr.smithi170.xkyvyq (mgr.14199) 143 : cluster 0 pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:37.631 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:14:38.858 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:38 smithi172 bash[23876]: cluster 2024-03-24T12:14:36.923403+0000 mgr.smithi170.xkyvyq (mgr.14199) 144 : cluster 0 pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:38.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:38 smithi170 bash[18738]: cluster 2024-03-24T12:14:36.923403+0000 mgr.smithi170.xkyvyq (mgr.14199) 144 : cluster 0 pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:40.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:40 smithi172 bash[23876]: cluster 2024-03-24T12:14:38.924034+0000 mgr.smithi170.xkyvyq (mgr.14199) 145 : cluster 0 pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:40.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:40 smithi170 bash[18738]: cluster 2024-03-24T12:14:38.924034+0000 mgr.smithi170.xkyvyq (mgr.14199) 145 : cluster 0 pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:41.124 INFO:teuthology.orchestra.run.smithi170.stdout:pg_num: 1 2024-03-24T12:14:41.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:41 smithi170 bash[18738]: audit 2024-03-24T12:14:41.126712+0000 mon.smithi170 (mon.0) 725 : audit 0 from='client.? 172.21.15.170:0/2019003555' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-03-24T12:14:41.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:41 smithi172 bash[23876]: audit 2024-03-24T12:14:41.126712+0000 mon.smithi170 (mon.0) 725 : audit 0 from='client.? 172.21.15.170:0/2019003555' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-03-24T12:14:42.069 INFO:tasks.cephadm:Setting up client nodes... 2024-03-24T12:14:42.070 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-03-24T12:14:42.826 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:42 smithi172 bash[23876]: cluster 2024-03-24T12:14:40.924388+0000 mgr.smithi170.xkyvyq (mgr.14199) 146 : cluster 0 pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:42.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:42 smithi170 bash[18738]: cluster 2024-03-24T12:14:40.924388+0000 mgr.smithi170.xkyvyq (mgr.14199) 146 : cluster 0 pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:44.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:44 smithi172 bash[23876]: cluster 2024-03-24T12:14:42.924723+0000 mgr.smithi170.xkyvyq (mgr.14199) 147 : cluster 0 pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:44.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:44 smithi172 bash[23876]: audit 2024-03-24T12:14:43.911164+0000 mon.smithi170 (mon.0) 726 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:14:44.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:44 smithi170 bash[18738]: cluster 2024-03-24T12:14:42.924723+0000 mgr.smithi170.xkyvyq (mgr.14199) 147 : cluster 0 pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:44.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:44 smithi170 bash[18738]: audit 2024-03-24T12:14:43.911164+0000 mon.smithi170 (mon.0) 726 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:14:46.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:46 smithi172 bash[23876]: cluster 2024-03-24T12:14:44.925279+0000 mgr.smithi170.xkyvyq (mgr.14199) 148 : cluster 0 pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:46.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:46 smithi170 bash[18738]: cluster 2024-03-24T12:14:44.925279+0000 mgr.smithi170.xkyvyq (mgr.14199) 148 : cluster 0 pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:47.304 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:14:48.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:48 smithi170 bash[18738]: cluster 2024-03-24T12:14:46.925852+0000 mgr.smithi170.xkyvyq (mgr.14199) 149 : cluster 0 pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:48.912 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:48 smithi172 bash[23876]: cluster 2024-03-24T12:14:46.925852+0000 mgr.smithi170.xkyvyq (mgr.14199) 149 : cluster 0 pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:50.694 INFO:teuthology.orchestra.run.smithi170.stdout:[client.0] 2024-03-24T12:14:50.694 INFO:teuthology.orchestra.run.smithi170.stdout: key = AQA6GQBmZ75iKRAAgmA+Ow7k+JIrgo97ajVzsw== 2024-03-24T12:14:50.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:50 smithi172 bash[23876]: cluster 2024-03-24T12:14:48.926337+0000 mgr.smithi170.xkyvyq (mgr.14199) 150 : cluster 0 pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:50.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:50 smithi170 bash[18738]: cluster 2024-03-24T12:14:48.926337+0000 mgr.smithi170.xkyvyq (mgr.14199) 150 : cluster 0 pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:51.822 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:14:51.822 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-03-24T12:14:51.822 DEBUG:teuthology.orchestra.run.smithi170:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-03-24T12:14:51.845 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-03-24T12:14:51.855 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:51 smithi172 bash[23876]: audit 2024-03-24T12:14:50.694103+0000 mon.smithi170 (mon.0) 727 : audit 1 from='client.? 172.21.15.170:0/2018177378' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-03-24T12:14:51.855 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:51 smithi172 bash[23876]: audit 2024-03-24T12:14:50.696685+0000 mon.smithi170 (mon.0) 728 : audit 1 from='client.? 172.21.15.170:0/2018177378' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-03-24T12:14:51.855 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:51 smithi172 bash[23876]: cluster 2024-03-24T12:14:50.926847+0000 mgr.smithi170.xkyvyq (mgr.14199) 151 : cluster 0 pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:51.891 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:51 smithi170 bash[18738]: audit 2024-03-24T12:14:50.694103+0000 mon.smithi170 (mon.0) 727 : audit 1 from='client.? 172.21.15.170:0/2018177378' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-03-24T12:14:51.891 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:51 smithi170 bash[18738]: audit 2024-03-24T12:14:50.696685+0000 mon.smithi170 (mon.0) 728 : audit 1 from='client.? 172.21.15.170:0/2018177378' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-03-24T12:14:51.891 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:51 smithi170 bash[18738]: cluster 2024-03-24T12:14:50.926847+0000 mgr.smithi170.xkyvyq (mgr.14199) 151 : cluster 0 pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:54.416 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:53 smithi172 bash[23876]: cluster 2024-03-24T12:14:52.927554+0000 mgr.smithi170.xkyvyq (mgr.14199) 152 : cluster 0 pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:54.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:53 smithi170 bash[18738]: cluster 2024-03-24T12:14:52.927554+0000 mgr.smithi170.xkyvyq (mgr.14199) 152 : cluster 0 pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:56.345 INFO:teuthology.orchestra.run.smithi172.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi172/config 2024-03-24T12:14:56.364 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:55 smithi172 bash[23876]: cluster 2024-03-24T12:14:54.928280+0000 mgr.smithi170.xkyvyq (mgr.14199) 153 : cluster 0 pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:56.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:55 smithi170 bash[18738]: cluster 2024-03-24T12:14:54.928280+0000 mgr.smithi170.xkyvyq (mgr.14199) 153 : cluster 0 pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:58.266 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:57 smithi170 bash[18738]: cluster 2024-03-24T12:14:56.928919+0000 mgr.smithi170.xkyvyq (mgr.14199) 154 : cluster 0 pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:58.371 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:57 smithi172 bash[23876]: cluster 2024-03-24T12:14:56.928919+0000 mgr.smithi170.xkyvyq (mgr.14199) 154 : cluster 0 pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:14:59.298 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:14:58 smithi170 bash[18738]: audit 2024-03-24T12:14:58.911579+0000 mon.smithi170 (mon.0) 729 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:14:59.416 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:14:58 smithi172 bash[23876]: audit 2024-03-24T12:14:58.911579+0000 mon.smithi170 (mon.0) 729 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:14:59.935 INFO:teuthology.orchestra.run.smithi172.stdout:[client.1] 2024-03-24T12:14:59.935 INFO:teuthology.orchestra.run.smithi172.stdout: key = AQBDGQBmMwR7NxAA9/pcRqSTGunIksgxA+fHvQ== 2024-03-24T12:15:00.246 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:00 smithi172 bash[23876]: cluster 2024-03-24T12:14:58.929514+0000 mgr.smithi170.xkyvyq (mgr.14199) 155 : cluster 0 pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:00.247 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:00 smithi172 bash[23876]: audit 2024-03-24T12:14:59.929883+0000 mon.smithi172 (mon.1) 20 : audit 1 from='client.? 172.21.15.172:0/4215001744' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-03-24T12:15:00.247 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:00 smithi172 bash[23876]: audit 2024-03-24T12:14:59.930456+0000 mon.smithi170 (mon.0) 730 : audit 1 from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-03-24T12:15:00.247 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:00 smithi172 bash[23876]: audit 2024-03-24T12:14:59.933985+0000 mon.smithi170 (mon.0) 731 : audit 1 from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-03-24T12:15:00.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:00 smithi170 bash[18738]: cluster 2024-03-24T12:14:58.929514+0000 mgr.smithi170.xkyvyq (mgr.14199) 155 : cluster 0 pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:00.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:00 smithi170 bash[18738]: audit 2024-03-24T12:14:59.929883+0000 mon.smithi172 (mon.1) 20 : audit 1 from='client.? 172.21.15.172:0/4215001744' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-03-24T12:15:00.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:00 smithi170 bash[18738]: audit 2024-03-24T12:14:59.930456+0000 mon.smithi170 (mon.0) 730 : audit 1 from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-03-24T12:15:00.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:00 smithi170 bash[18738]: audit 2024-03-24T12:14:59.933985+0000 mon.smithi170 (mon.0) 731 : audit 1 from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-03-24T12:15:00.684 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-03-24T12:15:00.684 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-03-24T12:15:00.684 DEBUG:teuthology.orchestra.run.smithi172:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-03-24T12:15:00.754 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-03-24T12:15:00.755 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-03-24T12:15:00.755 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph mgr dump --format=json 2024-03-24T12:15:02.416 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:02 smithi172 bash[23876]: cluster 2024-03-24T12:15:00.930214+0000 mgr.smithi170.xkyvyq (mgr.14199) 156 : cluster 0 pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:02.416 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:02 smithi172 bash[23876]: audit 2024-03-24T12:15:01.014401+0000 mon.smithi170 (mon.0) 732 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:15:02.416 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:02 smithi172 bash[23876]: audit 2024-03-24T12:15:01.019759+0000 mon.smithi170 (mon.0) 733 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:15:02.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:02 smithi170 bash[18738]: cluster 2024-03-24T12:15:00.930214+0000 mgr.smithi170.xkyvyq (mgr.14199) 156 : cluster 0 pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:02.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:02 smithi170 bash[18738]: audit 2024-03-24T12:15:01.014401+0000 mon.smithi170 (mon.0) 732 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:15:02.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:02 smithi170 bash[18738]: audit 2024-03-24T12:15:01.019759+0000 mon.smithi170 (mon.0) 733 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:15:03.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:03 smithi172 bash[23876]: audit 2024-03-24T12:15:02.652560+0000 mon.smithi170 (mon.0) 734 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:15:03.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:03 smithi172 bash[23876]: audit 2024-03-24T12:15:02.665175+0000 mon.smithi170 (mon.0) 735 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:15:03.916 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:03 smithi172 bash[23876]: cluster 2024-03-24T12:15:02.930822+0000 mgr.smithi170.xkyvyq (mgr.14199) 157 : cluster 0 pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:03.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:03 smithi170 bash[18738]: audit 2024-03-24T12:15:02.652560+0000 mon.smithi170 (mon.0) 734 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:15:03.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:03 smithi170 bash[18738]: audit 2024-03-24T12:15:02.665175+0000 mon.smithi170 (mon.0) 735 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:15:03.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:03 smithi170 bash[18738]: cluster 2024-03-24T12:15:02.930822+0000 mgr.smithi170.xkyvyq (mgr.14199) 157 : cluster 0 pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:06.173 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:06.416 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:05 smithi172 bash[23876]: cluster 2024-03-24T12:15:04.931426+0000 mgr.smithi170.xkyvyq (mgr.14199) 158 : cluster 0 pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:06.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:05 smithi170 bash[18738]: cluster 2024-03-24T12:15:04.931426+0000 mgr.smithi170.xkyvyq (mgr.14199) 158 : cluster 0 pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:08.266 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:07 smithi170 bash[18738]: cluster 2024-03-24T12:15:06.932049+0000 mgr.smithi170.xkyvyq (mgr.14199) 159 : cluster 0 pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:08.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:07 smithi172 bash[23876]: cluster 2024-03-24T12:15:06.932049+0000 mgr.smithi170.xkyvyq (mgr.14199) 159 : cluster 0 pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:08.845 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:15:09.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:08 smithi172 bash[23876]: audit 2024-03-24T12:15:08.842667+0000 mon.smithi170 (mon.0) 736 : audit 0 from='client.? 172.21.15.170:0/1559923000' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-03-24T12:15:09.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:08 smithi170 bash[18738]: audit 2024-03-24T12:15:08.842667+0000 mon.smithi170 (mon.0) 736 : audit 0 from='client.? 172.21.15.170:0/1559923000' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-03-24T12:15:09.594 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":19,"flags":0,"active_gid":14199,"active_name":"smithi170.xkyvyq","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6800","nonce":2755163890},{"type":"v1","addr":"172.21.15.170:6801","nonce":2755163890}]},"active_addr":"172.21.15.170:6801/2755163890","active_change":"2024-03-24T12:11:43.805774+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":14215,"name":"smithi172.uznkeq","mgr_features":4540701547738038271,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:latest","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","prometheus","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:latest","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.170:8443/","prometheus":"http://172.21.15.170:9283/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":5,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.170:0","nonce":2817281870}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.170:0","nonce":4076049951}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.170:0","nonce":3517973203}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.170:0","nonce":3531224969}]}]} 2024-03-24T12:15:09.602 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-03-24T12:15:09.602 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-03-24T12:15:09.602 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd dump --format=json 2024-03-24T12:15:10.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:10 smithi172 bash[23876]: cluster 2024-03-24T12:15:08.932568+0000 mgr.smithi170.xkyvyq (mgr.14199) 160 : cluster 0 pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:10.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:10 smithi170 bash[18738]: cluster 2024-03-24T12:15:08.932568+0000 mgr.smithi170.xkyvyq (mgr.14199) 160 : cluster 0 pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:12.416 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:12 smithi172 bash[23876]: cluster 2024-03-24T12:15:10.933172+0000 mgr.smithi170.xkyvyq (mgr.14199) 161 : cluster 0 pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:12.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:12 smithi170 bash[18738]: cluster 2024-03-24T12:15:10.933172+0000 mgr.smithi170.xkyvyq (mgr.14199) 161 : cluster 0 pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:14.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:14 smithi172 bash[23876]: cluster 2024-03-24T12:15:12.933751+0000 mgr.smithi170.xkyvyq (mgr.14199) 162 : cluster 0 pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:14.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:14 smithi172 bash[23876]: audit 2024-03-24T12:15:13.911747+0000 mon.smithi170 (mon.0) 737 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:15:14.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:14 smithi170 bash[18738]: cluster 2024-03-24T12:15:12.933751+0000 mgr.smithi170.xkyvyq (mgr.14199) 162 : cluster 0 pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:14.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:14 smithi170 bash[18738]: audit 2024-03-24T12:15:13.911747+0000 mon.smithi170 (mon.0) 737 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:15:14.407 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:16.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:16 smithi172 bash[23876]: cluster 2024-03-24T12:15:14.934436+0000 mgr.smithi170.xkyvyq (mgr.14199) 163 : cluster 0 pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:16.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:16 smithi170 bash[18738]: cluster 2024-03-24T12:15:14.934436+0000 mgr.smithi170.xkyvyq (mgr.14199) 163 : cluster 0 pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:17.176 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:15:17.177 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":43,"fsid":"158785cc-e9d7-11ee-95cd-87774f69a715","created":"2024-03-24T12:08:54.484486+0000","modified":"2024-03-24T12:14:17.564533+0000","last_up_change":"2024-03-24T12:14:13.525531+0000","last_in_change":"2024-03-24T12:13:20.975588+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-03-24T12:13:54.427016+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"24","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"c0195287-4817-4a5a-9674-2e26d428488c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6800","nonce":4129707366},{"type":"v1","addr":"172.21.15.172:6801","nonce":4129707366}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6802","nonce":4129707366},{"type":"v1","addr":"172.21.15.172:6803","nonce":4129707366}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6806","nonce":4129707366},{"type":"v1","addr":"172.21.15.172:6807","nonce":4129707366}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6804","nonce":4129707366},{"type":"v1","addr":"172.21.15.172:6805","nonce":4129707366}]},"public_addr":"172.21.15.172:6801/4129707366","cluster_addr":"172.21.15.172:6803/4129707366","heartbeat_back_addr":"172.21.15.172:6807/4129707366","heartbeat_front_addr":"172.21.15.172:6805/4129707366","state":["exists","up"]},{"osd":1,"uuid":"e0a87f99-39e1-41f7-87ce-62a67d001c4d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6802","nonce":3705002990},{"type":"v1","addr":"172.21.15.170:6803","nonce":3705002990}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6804","nonce":3705002990},{"type":"v1","addr":"172.21.15.170:6805","nonce":3705002990}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6808","nonce":3705002990},{"type":"v1","addr":"172.21.15.170:6809","nonce":3705002990}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6806","nonce":3705002990},{"type":"v1","addr":"172.21.15.170:6807","nonce":3705002990}]},"public_addr":"172.21.15.170:6803/3705002990","cluster_addr":"172.21.15.170:6805/3705002990","heartbeat_back_addr":"172.21.15.170:6809/3705002990","heartbeat_front_addr":"172.21.15.170:6807/3705002990","state":["exists","up"]},{"osd":2,"uuid":"59ea542a-5a64-46b6-9754-53a0663f8756","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6808","nonce":3285008595},{"type":"v1","addr":"172.21.15.172:6809","nonce":3285008595}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6810","nonce":3285008595},{"type":"v1","addr":"172.21.15.172:6811","nonce":3285008595}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6814","nonce":3285008595},{"type":"v1","addr":"172.21.15.172:6815","nonce":3285008595}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6812","nonce":3285008595},{"type":"v1","addr":"172.21.15.172:6813","nonce":3285008595}]},"public_addr":"172.21.15.172:6809/3285008595","cluster_addr":"172.21.15.172:6811/3285008595","heartbeat_back_addr":"172.21.15.172:6815/3285008595","heartbeat_front_addr":"172.21.15.172:6813/3285008595","state":["exists","up"]},{"osd":3,"uuid":"eaf1c12a-dd5d-4b5d-9d80-339c98f2527c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6810","nonce":274217269},{"type":"v1","addr":"172.21.15.170:6811","nonce":274217269}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6812","nonce":274217269},{"type":"v1","addr":"172.21.15.170:6813","nonce":274217269}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6816","nonce":274217269},{"type":"v1","addr":"172.21.15.170:6817","nonce":274217269}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6814","nonce":274217269},{"type":"v1","addr":"172.21.15.170:6815","nonce":274217269}]},"public_addr":"172.21.15.170:6811/274217269","cluster_addr":"172.21.15.170:6813/274217269","heartbeat_back_addr":"172.21.15.170:6817/274217269","heartbeat_front_addr":"172.21.15.170:6815/274217269","state":["exists","up"]},{"osd":4,"uuid":"7a32bdf5-4799-4b04-8537-7ea5516c964d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6816","nonce":793001656},{"type":"v1","addr":"172.21.15.172:6817","nonce":793001656}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6818","nonce":793001656},{"type":"v1","addr":"172.21.15.172:6819","nonce":793001656}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6822","nonce":793001656},{"type":"v1","addr":"172.21.15.172:6823","nonce":793001656}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6820","nonce":793001656},{"type":"v1","addr":"172.21.15.172:6821","nonce":793001656}]},"public_addr":"172.21.15.172:6817/793001656","cluster_addr":"172.21.15.172:6819/793001656","heartbeat_back_addr":"172.21.15.172:6823/793001656","heartbeat_front_addr":"172.21.15.172:6821/793001656","state":["exists","up"]},{"osd":5,"uuid":"39f90824-5989-4d5f-bd5f-4c19969d9511","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6818","nonce":1654515230},{"type":"v1","addr":"172.21.15.170:6819","nonce":1654515230}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6820","nonce":1654515230},{"type":"v1","addr":"172.21.15.170:6821","nonce":1654515230}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6824","nonce":1654515230},{"type":"v1","addr":"172.21.15.170:6825","nonce":1654515230}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6822","nonce":1654515230},{"type":"v1","addr":"172.21.15.170:6823","nonce":1654515230}]},"public_addr":"172.21.15.170:6819/1654515230","cluster_addr":"172.21.15.170:6821/1654515230","heartbeat_back_addr":"172.21.15.170:6825/1654515230","heartbeat_front_addr":"172.21.15.170:6823/1654515230","state":["exists","up"]},{"osd":6,"uuid":"480691f8-e007-49a8-a931-d26864de9818","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6824","nonce":548640071},{"type":"v1","addr":"172.21.15.172:6825","nonce":548640071}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6826","nonce":548640071},{"type":"v1","addr":"172.21.15.172:6827","nonce":548640071}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6830","nonce":548640071},{"type":"v1","addr":"172.21.15.172:6831","nonce":548640071}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6828","nonce":548640071},{"type":"v1","addr":"172.21.15.172:6829","nonce":548640071}]},"public_addr":"172.21.15.172:6825/548640071","cluster_addr":"172.21.15.172:6827/548640071","heartbeat_back_addr":"172.21.15.172:6831/548640071","heartbeat_front_addr":"172.21.15.172:6829/548640071","state":["exists","up"]},{"osd":7,"uuid":"54b59406-ca96-4dc1-be29-3220bcfa46cc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6826","nonce":4233066162},{"type":"v1","addr":"172.21.15.170:6827","nonce":4233066162}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6828","nonce":4233066162},{"type":"v1","addr":"172.21.15.170:6829","nonce":4233066162}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6832","nonce":4233066162},{"type":"v1","addr":"172.21.15.170:6833","nonce":4233066162}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6830","nonce":4233066162},{"type":"v1","addr":"172.21.15.170:6831","nonce":4233066162}]},"public_addr":"172.21.15.170:6827/4233066162","cluster_addr":"172.21.15.170:6829/4233066162","heartbeat_back_addr":"172.21.15.170:6833/4233066162","heartbeat_front_addr":"172.21.15.170:6831/4233066162","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:45.206762+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:51.537210+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:50.190741+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:58.480359+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:54.999388+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:14:05.980494+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:58.889753+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:14:11.668738+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.170:0/1428017488":"2024-03-25T12:11:43.805447+0000","172.21.15.170:0/1213676103":"2024-03-25T12:11:43.805447+0000","172.21.15.170:6801/3200440131":"2024-03-25T12:11:43.805447+0000","172.21.15.170:6800/2785533943":"2024-03-25T12:10:13.305347+0000","172.21.15.170:0/2396254373":"2024-03-25T12:10:13.305347+0000","172.21.15.170:0/4222220446":"2024-03-25T12:10:13.305347+0000","172.21.15.170:6801/2785533943":"2024-03-25T12:10:13.305347+0000","172.21.15.170:0/2762822166":"2024-03-25T12:09:26.057894+0000","172.21.15.170:0/326813447":"2024-03-25T12:09:26.057894+0000","172.21.15.170:0/2880640047":"2024-03-25T12:09:26.057894+0000","172.21.15.170:0/2811678733":"2024-03-25T12:10:13.305347+0000","172.21.15.170:0/4118462885":"2024-03-25T12:11:43.805447+0000","172.21.15.170:6800/3903860669":"2024-03-25T12:09:26.057894+0000","172.21.15.170:6800/3200440131":"2024-03-25T12:11:43.805447+0000","172.21.15.170:6801/3903860669":"2024-03-25T12:09:26.057894+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-03-24T12:15:17.795 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-03-24T12:15:17.795 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd dump --format=json 2024-03-24T12:15:18.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:18 smithi170 bash[18738]: cluster 2024-03-24T12:15:16.934939+0000 mgr.smithi170.xkyvyq (mgr.14199) 164 : cluster 0 pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:18.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:18 smithi170 bash[18738]: audit 2024-03-24T12:15:17.177826+0000 mon.smithi170 (mon.0) 738 : audit 0 from='client.? 172.21.15.170:0/3508442702' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-24T12:15:18.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:18 smithi172 bash[23876]: cluster 2024-03-24T12:15:16.934939+0000 mgr.smithi170.xkyvyq (mgr.14199) 164 : cluster 0 pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:18.416 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:18 smithi172 bash[23876]: audit 2024-03-24T12:15:17.177826+0000 mon.smithi170 (mon.0) 738 : audit 0 from='client.? 172.21.15.170:0/3508442702' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-24T12:15:20.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:20 smithi172 bash[23876]: cluster 2024-03-24T12:15:18.935464+0000 mgr.smithi170.xkyvyq (mgr.14199) 165 : cluster 0 pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:20.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:20 smithi170 bash[18738]: cluster 2024-03-24T12:15:18.935464+0000 mgr.smithi170.xkyvyq (mgr.14199) 165 : cluster 0 pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:22.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:22 smithi172 bash[23876]: cluster 2024-03-24T12:15:20.936186+0000 mgr.smithi170.xkyvyq (mgr.14199) 166 : cluster 0 pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:22.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:22 smithi170 bash[18738]: cluster 2024-03-24T12:15:20.936186+0000 mgr.smithi170.xkyvyq (mgr.14199) 166 : cluster 0 pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:22.596 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:24.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:24 smithi172 bash[23876]: cluster 2024-03-24T12:15:22.936910+0000 mgr.smithi170.xkyvyq (mgr.14199) 167 : cluster 0 pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:24.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:24 smithi170 bash[18738]: cluster 2024-03-24T12:15:22.936910+0000 mgr.smithi170.xkyvyq (mgr.14199) 167 : cluster 0 pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:25.489 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:15:25.490 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":43,"fsid":"158785cc-e9d7-11ee-95cd-87774f69a715","created":"2024-03-24T12:08:54.484486+0000","modified":"2024-03-24T12:14:17.564533+0000","last_up_change":"2024-03-24T12:14:13.525531+0000","last_in_change":"2024-03-24T12:13:20.975588+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-03-24T12:13:54.427016+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"24","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"c0195287-4817-4a5a-9674-2e26d428488c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6800","nonce":4129707366},{"type":"v1","addr":"172.21.15.172:6801","nonce":4129707366}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6802","nonce":4129707366},{"type":"v1","addr":"172.21.15.172:6803","nonce":4129707366}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6806","nonce":4129707366},{"type":"v1","addr":"172.21.15.172:6807","nonce":4129707366}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6804","nonce":4129707366},{"type":"v1","addr":"172.21.15.172:6805","nonce":4129707366}]},"public_addr":"172.21.15.172:6801/4129707366","cluster_addr":"172.21.15.172:6803/4129707366","heartbeat_back_addr":"172.21.15.172:6807/4129707366","heartbeat_front_addr":"172.21.15.172:6805/4129707366","state":["exists","up"]},{"osd":1,"uuid":"e0a87f99-39e1-41f7-87ce-62a67d001c4d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6802","nonce":3705002990},{"type":"v1","addr":"172.21.15.170:6803","nonce":3705002990}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6804","nonce":3705002990},{"type":"v1","addr":"172.21.15.170:6805","nonce":3705002990}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6808","nonce":3705002990},{"type":"v1","addr":"172.21.15.170:6809","nonce":3705002990}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6806","nonce":3705002990},{"type":"v1","addr":"172.21.15.170:6807","nonce":3705002990}]},"public_addr":"172.21.15.170:6803/3705002990","cluster_addr":"172.21.15.170:6805/3705002990","heartbeat_back_addr":"172.21.15.170:6809/3705002990","heartbeat_front_addr":"172.21.15.170:6807/3705002990","state":["exists","up"]},{"osd":2,"uuid":"59ea542a-5a64-46b6-9754-53a0663f8756","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6808","nonce":3285008595},{"type":"v1","addr":"172.21.15.172:6809","nonce":3285008595}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6810","nonce":3285008595},{"type":"v1","addr":"172.21.15.172:6811","nonce":3285008595}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6814","nonce":3285008595},{"type":"v1","addr":"172.21.15.172:6815","nonce":3285008595}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6812","nonce":3285008595},{"type":"v1","addr":"172.21.15.172:6813","nonce":3285008595}]},"public_addr":"172.21.15.172:6809/3285008595","cluster_addr":"172.21.15.172:6811/3285008595","heartbeat_back_addr":"172.21.15.172:6815/3285008595","heartbeat_front_addr":"172.21.15.172:6813/3285008595","state":["exists","up"]},{"osd":3,"uuid":"eaf1c12a-dd5d-4b5d-9d80-339c98f2527c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6810","nonce":274217269},{"type":"v1","addr":"172.21.15.170:6811","nonce":274217269}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6812","nonce":274217269},{"type":"v1","addr":"172.21.15.170:6813","nonce":274217269}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6816","nonce":274217269},{"type":"v1","addr":"172.21.15.170:6817","nonce":274217269}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6814","nonce":274217269},{"type":"v1","addr":"172.21.15.170:6815","nonce":274217269}]},"public_addr":"172.21.15.170:6811/274217269","cluster_addr":"172.21.15.170:6813/274217269","heartbeat_back_addr":"172.21.15.170:6817/274217269","heartbeat_front_addr":"172.21.15.170:6815/274217269","state":["exists","up"]},{"osd":4,"uuid":"7a32bdf5-4799-4b04-8537-7ea5516c964d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6816","nonce":793001656},{"type":"v1","addr":"172.21.15.172:6817","nonce":793001656}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6818","nonce":793001656},{"type":"v1","addr":"172.21.15.172:6819","nonce":793001656}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6822","nonce":793001656},{"type":"v1","addr":"172.21.15.172:6823","nonce":793001656}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6820","nonce":793001656},{"type":"v1","addr":"172.21.15.172:6821","nonce":793001656}]},"public_addr":"172.21.15.172:6817/793001656","cluster_addr":"172.21.15.172:6819/793001656","heartbeat_back_addr":"172.21.15.172:6823/793001656","heartbeat_front_addr":"172.21.15.172:6821/793001656","state":["exists","up"]},{"osd":5,"uuid":"39f90824-5989-4d5f-bd5f-4c19969d9511","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6818","nonce":1654515230},{"type":"v1","addr":"172.21.15.170:6819","nonce":1654515230}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6820","nonce":1654515230},{"type":"v1","addr":"172.21.15.170:6821","nonce":1654515230}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6824","nonce":1654515230},{"type":"v1","addr":"172.21.15.170:6825","nonce":1654515230}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6822","nonce":1654515230},{"type":"v1","addr":"172.21.15.170:6823","nonce":1654515230}]},"public_addr":"172.21.15.170:6819/1654515230","cluster_addr":"172.21.15.170:6821/1654515230","heartbeat_back_addr":"172.21.15.170:6825/1654515230","heartbeat_front_addr":"172.21.15.170:6823/1654515230","state":["exists","up"]},{"osd":6,"uuid":"480691f8-e007-49a8-a931-d26864de9818","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6824","nonce":548640071},{"type":"v1","addr":"172.21.15.172:6825","nonce":548640071}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6826","nonce":548640071},{"type":"v1","addr":"172.21.15.172:6827","nonce":548640071}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6830","nonce":548640071},{"type":"v1","addr":"172.21.15.172:6831","nonce":548640071}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.172:6828","nonce":548640071},{"type":"v1","addr":"172.21.15.172:6829","nonce":548640071}]},"public_addr":"172.21.15.172:6825/548640071","cluster_addr":"172.21.15.172:6827/548640071","heartbeat_back_addr":"172.21.15.172:6831/548640071","heartbeat_front_addr":"172.21.15.172:6829/548640071","state":["exists","up"]},{"osd":7,"uuid":"54b59406-ca96-4dc1-be29-3220bcfa46cc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6826","nonce":4233066162},{"type":"v1","addr":"172.21.15.170:6827","nonce":4233066162}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6828","nonce":4233066162},{"type":"v1","addr":"172.21.15.170:6829","nonce":4233066162}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6832","nonce":4233066162},{"type":"v1","addr":"172.21.15.170:6833","nonce":4233066162}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6830","nonce":4233066162},{"type":"v1","addr":"172.21.15.170:6831","nonce":4233066162}]},"public_addr":"172.21.15.170:6827/4233066162","cluster_addr":"172.21.15.170:6829/4233066162","heartbeat_back_addr":"172.21.15.170:6833/4233066162","heartbeat_front_addr":"172.21.15.170:6831/4233066162","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:45.206762+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:51.537210+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:50.190741+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:58.480359+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:54.999388+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:14:05.980494+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:13:58.889753+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-03-24T12:14:11.668738+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.170:0/1428017488":"2024-03-25T12:11:43.805447+0000","172.21.15.170:0/1213676103":"2024-03-25T12:11:43.805447+0000","172.21.15.170:6801/3200440131":"2024-03-25T12:11:43.805447+0000","172.21.15.170:6800/2785533943":"2024-03-25T12:10:13.305347+0000","172.21.15.170:0/2396254373":"2024-03-25T12:10:13.305347+0000","172.21.15.170:0/4222220446":"2024-03-25T12:10:13.305347+0000","172.21.15.170:6801/2785533943":"2024-03-25T12:10:13.305347+0000","172.21.15.170:0/2762822166":"2024-03-25T12:09:26.057894+0000","172.21.15.170:0/326813447":"2024-03-25T12:09:26.057894+0000","172.21.15.170:0/2880640047":"2024-03-25T12:09:26.057894+0000","172.21.15.170:0/2811678733":"2024-03-25T12:10:13.305347+0000","172.21.15.170:0/4118462885":"2024-03-25T12:11:43.805447+0000","172.21.15.170:6800/3903860669":"2024-03-25T12:09:26.057894+0000","172.21.15.170:6800/3200440131":"2024-03-25T12:11:43.805447+0000","172.21.15.170:6801/3903860669":"2024-03-25T12:09:26.057894+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-03-24T12:15:26.159 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2024-03-24T12:15:26.160 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2024-03-24T12:15:26.160 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2024-03-24T12:15:26.161 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2024-03-24T12:15:26.161 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2024-03-24T12:15:26.161 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2024-03-24T12:15:26.162 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2024-03-24T12:15:26.162 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2024-03-24T12:15:26.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:26 smithi172 bash[23876]: cluster 2024-03-24T12:15:24.937594+0000 mgr.smithi170.xkyvyq (mgr.14199) 168 : cluster 0 pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:26.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:26 smithi172 bash[23876]: audit 2024-03-24T12:15:25.491235+0000 mon.smithi170 (mon.0) 739 : audit 0 from='client.? 172.21.15.170:0/4233996110' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-24T12:15:26.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:26 smithi170 bash[18738]: cluster 2024-03-24T12:15:24.937594+0000 mgr.smithi170.xkyvyq (mgr.14199) 168 : cluster 0 pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:26.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:26 smithi170 bash[18738]: audit 2024-03-24T12:15:25.491235+0000 mon.smithi170 (mon.0) 739 : audit 0 from='client.? 172.21.15.170:0/4233996110' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-03-24T12:15:28.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:28 smithi172 bash[23876]: cluster 2024-03-24T12:15:26.938271+0000 mgr.smithi170.xkyvyq (mgr.14199) 169 : cluster 0 pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:28.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:28 smithi170 bash[18738]: cluster 2024-03-24T12:15:26.938271+0000 mgr.smithi170.xkyvyq (mgr.14199) 169 : cluster 0 pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:29.315 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:29 smithi172 bash[23876]: audit 2024-03-24T12:15:28.912628+0000 mon.smithi170 (mon.0) 740 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:15:29.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:29 smithi170 bash[18738]: audit 2024-03-24T12:15:28.912628+0000 mon.smithi170 (mon.0) 740 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:15:30.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:30 smithi172 bash[23876]: cluster 2024-03-24T12:15:28.938910+0000 mgr.smithi170.xkyvyq (mgr.14199) 170 : cluster 0 pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:30.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:30 smithi170 bash[18738]: cluster 2024-03-24T12:15:28.938910+0000 mgr.smithi170.xkyvyq (mgr.14199) 170 : cluster 0 pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:31.078 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:31.078 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:31.079 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:31.082 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:31.082 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:31.082 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:31.086 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:31.086 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:32.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:32 smithi172 bash[23876]: cluster 2024-03-24T12:15:30.939543+0000 mgr.smithi170.xkyvyq (mgr.14199) 171 : cluster 0 pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:32.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:32 smithi170 bash[18738]: cluster 2024-03-24T12:15:30.939543+0000 mgr.smithi170.xkyvyq (mgr.14199) 171 : cluster 0 pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:34.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:34 smithi172 bash[23876]: cluster 2024-03-24T12:15:32.939975+0000 mgr.smithi170.xkyvyq (mgr.14199) 172 : cluster 0 pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:34.419 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:34 smithi170 bash[18738]: cluster 2024-03-24T12:15:32.939975+0000 mgr.smithi170.xkyvyq (mgr.14199) 172 : cluster 0 pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:36.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:36 smithi172 bash[23876]: cluster 2024-03-24T12:15:34.940501+0000 mgr.smithi170.xkyvyq (mgr.14199) 173 : cluster 0 pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:36.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:36 smithi170 bash[18738]: cluster 2024-03-24T12:15:34.940501+0000 mgr.smithi170.xkyvyq (mgr.14199) 173 : cluster 0 pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:38.228 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:38 smithi170 bash[18738]: cluster 2024-03-24T12:15:36.941004+0000 mgr.smithi170.xkyvyq (mgr.14199) 174 : cluster 0 pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:38.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:38 smithi172 bash[23876]: cluster 2024-03-24T12:15:36.941004+0000 mgr.smithi170.xkyvyq (mgr.14199) 174 : cluster 0 pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:40.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:40 smithi170 bash[18738]: cluster 2024-03-24T12:15:38.941389+0000 mgr.smithi170.xkyvyq (mgr.14199) 175 : cluster 0 pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:40.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:40 smithi172 bash[23876]: cluster 2024-03-24T12:15:38.941389+0000 mgr.smithi170.xkyvyq (mgr.14199) 175 : cluster 0 pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:42.379 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:42 smithi170 bash[18738]: cluster 2024-03-24T12:15:40.941798+0000 mgr.smithi170.xkyvyq (mgr.14199) 176 : cluster 0 pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:42.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:42 smithi172 bash[23876]: cluster 2024-03-24T12:15:40.941798+0000 mgr.smithi170.xkyvyq (mgr.14199) 176 : cluster 0 pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:44.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:44 smithi172 bash[23876]: cluster 2024-03-24T12:15:42.942346+0000 mgr.smithi170.xkyvyq (mgr.14199) 177 : cluster 0 pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:44.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:44 smithi172 bash[23876]: audit 2024-03-24T12:15:43.914832+0000 mon.smithi170 (mon.0) 741 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:15:44.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:44 smithi170 bash[18738]: cluster 2024-03-24T12:15:42.942346+0000 mgr.smithi170.xkyvyq (mgr.14199) 177 : cluster 0 pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:44.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:44 smithi170 bash[18738]: audit 2024-03-24T12:15:43.914832+0000 mon.smithi170 (mon.0) 741 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:15:44.809 INFO:teuthology.orchestra.run.smithi170.stdout:85899345945 2024-03-24T12:15:44.810 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd last-stat-seq osd.2 2024-03-24T12:15:45.853 INFO:teuthology.orchestra.run.smithi170.stdout:150323855382 2024-03-24T12:15:45.853 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd last-stat-seq osd.5 2024-03-24T12:15:45.893 INFO:teuthology.orchestra.run.smithi170.stdout:120259084311 2024-03-24T12:15:45.894 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd last-stat-seq osd.3 2024-03-24T12:15:46.240 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:46 smithi170 bash[18738]: cluster 2024-03-24T12:15:44.942896+0000 mgr.smithi170.xkyvyq (mgr.14199) 178 : cluster 0 pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:46.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:46 smithi172 bash[23876]: cluster 2024-03-24T12:15:44.942896+0000 mgr.smithi170.xkyvyq (mgr.14199) 178 : cluster 0 pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:48.266 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:48 smithi170 bash[18738]: cluster 2024-03-24T12:15:46.943221+0000 mgr.smithi170.xkyvyq (mgr.14199) 179 : cluster 0 pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:48.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:48 smithi172 bash[23876]: cluster 2024-03-24T12:15:46.943221+0000 mgr.smithi170.xkyvyq (mgr.14199) 179 : cluster 0 pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:48.607 INFO:teuthology.orchestra.run.smithi170.stdout:90194313242 2024-03-24T12:15:48.608 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd last-stat-seq osd.1 2024-03-24T12:15:48.739 INFO:teuthology.orchestra.run.smithi170.stdout:107374182425 2024-03-24T12:15:48.740 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd last-stat-seq osd.4 2024-03-24T12:15:48.821 INFO:teuthology.orchestra.run.smithi170.stdout:120259084312 2024-03-24T12:15:48.822 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd last-stat-seq osd.6 2024-03-24T12:15:49.290 INFO:teuthology.orchestra.run.smithi170.stdout:167503724566 2024-03-24T12:15:49.291 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd last-stat-seq osd.7 2024-03-24T12:15:49.351 INFO:teuthology.orchestra.run.smithi170.stdout:68719476763 2024-03-24T12:15:49.351 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph osd last-stat-seq osd.0 2024-03-24T12:15:50.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:50 smithi170 bash[18738]: cluster 2024-03-24T12:15:48.943599+0000 mgr.smithi170.xkyvyq (mgr.14199) 180 : cluster 0 pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:50.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:50 smithi172 bash[23876]: cluster 2024-03-24T12:15:48.943599+0000 mgr.smithi170.xkyvyq (mgr.14199) 180 : cluster 0 pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:51.810 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:52.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:52 smithi172 bash[23876]: cluster 2024-03-24T12:15:50.944271+0000 mgr.smithi170.xkyvyq (mgr.14199) 181 : cluster 0 pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:52.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:52 smithi170 bash[18738]: cluster 2024-03-24T12:15:50.944271+0000 mgr.smithi170.xkyvyq (mgr.14199) 181 : cluster 0 pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:52.831 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:52.831 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:54.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:54 smithi170 bash[18738]: cluster 2024-03-24T12:15:52.944827+0000 mgr.smithi170.xkyvyq (mgr.14199) 182 : cluster 0 pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:54.261 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:54.261 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:54.262 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:54.262 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:54.262 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:15:54.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:54 smithi172 bash[23876]: cluster 2024-03-24T12:15:52.944827+0000 mgr.smithi170.xkyvyq (mgr.14199) 182 : cluster 0 pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:55.944 INFO:teuthology.orchestra.run.smithi170.stdout:85899345948 2024-03-24T12:15:56.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:56 smithi170 bash[18738]: cluster 2024-03-24T12:15:54.945424+0000 mgr.smithi170.xkyvyq (mgr.14199) 183 : cluster 0 pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:56.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:56 smithi170 bash[18738]: audit 2024-03-24T12:15:55.946296+0000 mon.smithi170 (mon.0) 742 : audit 0 from='client.? 172.21.15.170:0/4066518393' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-03-24T12:15:56.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:56 smithi172 bash[23876]: cluster 2024-03-24T12:15:54.945424+0000 mgr.smithi170.xkyvyq (mgr.14199) 183 : cluster 0 pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:56.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:56 smithi172 bash[23876]: audit 2024-03-24T12:15:55.946296+0000 mon.smithi170 (mon.0) 742 : audit 0 from='client.? 172.21.15.170:0/4066518393' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-03-24T12:15:58.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:58 smithi170 bash[18738]: cluster 2024-03-24T12:15:56.945906+0000 mgr.smithi170.xkyvyq (mgr.14199) 184 : cluster 0 pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:58.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:58 smithi172 bash[23876]: cluster 2024-03-24T12:15:56.945906+0000 mgr.smithi170.xkyvyq (mgr.14199) 184 : cluster 0 pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:15:58.931 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345945 got 85899345948 for osd.2 2024-03-24T12:15:58.931 DEBUG:teuthology.parallel:result is None 2024-03-24T12:15:59.194 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:15:59 smithi170 bash[18738]: audit 2024-03-24T12:15:58.915088+0000 mon.smithi170 (mon.0) 743 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:15:59.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:15:59 smithi172 bash[23876]: audit 2024-03-24T12:15:58.915088+0000 mon.smithi170 (mon.0) 743 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:16:00.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:00 smithi170 bash[18738]: cluster 2024-03-24T12:15:58.946346+0000 mgr.smithi170.xkyvyq (mgr.14199) 185 : cluster 0 pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:00.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:00 smithi172 bash[23876]: cluster 2024-03-24T12:15:58.946346+0000 mgr.smithi170.xkyvyq (mgr.14199) 185 : cluster 0 pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:01.676 INFO:teuthology.orchestra.run.smithi170.stdout:150323855386 2024-03-24T12:16:01.811 INFO:teuthology.orchestra.run.smithi170.stdout:120259084315 2024-03-24T12:16:02.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:02 smithi172 bash[23876]: cluster 2024-03-24T12:16:00.946892+0000 mgr.smithi170.xkyvyq (mgr.14199) 186 : cluster 0 pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:02.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:02 smithi172 bash[23876]: audit 2024-03-24T12:16:01.678608+0000 mon.smithi170 (mon.0) 744 : audit 0 from='client.? 172.21.15.170:0/973876811' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-03-24T12:16:02.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:02 smithi172 bash[23876]: audit 2024-03-24T12:16:01.814010+0000 mon.smithi170 (mon.0) 745 : audit 0 from='client.? 172.21.15.170:0/4043286713' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-03-24T12:16:02.417 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:02 smithi170 bash[18738]: cluster 2024-03-24T12:16:00.946892+0000 mgr.smithi170.xkyvyq (mgr.14199) 186 : cluster 0 pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:02.417 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:02 smithi170 bash[18738]: audit 2024-03-24T12:16:01.678608+0000 mon.smithi170 (mon.0) 744 : audit 0 from='client.? 172.21.15.170:0/973876811' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-03-24T12:16:02.417 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:02 smithi170 bash[18738]: audit 2024-03-24T12:16:01.814010+0000 mon.smithi170 (mon.0) 745 : audit 0 from='client.? 172.21.15.170:0/4043286713' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-03-24T12:16:03.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:03 smithi172 bash[23876]: audit 2024-03-24T12:16:02.764483+0000 mon.smithi170 (mon.0) 746 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:16:03.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:03 smithi170 bash[18738]: audit 2024-03-24T12:16:02.764483+0000 mon.smithi170 (mon.0) 746 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:16:04.409 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:04 smithi170 bash[18738]: cluster 2024-03-24T12:16:02.947250+0000 mgr.smithi170.xkyvyq (mgr.14199) 187 : cluster 0 pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:04.416 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:04 smithi172 bash[23876]: cluster 2024-03-24T12:16:02.947250+0000 mgr.smithi170.xkyvyq (mgr.14199) 187 : cluster 0 pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:04.551 INFO:tasks.cephadm.ceph_manager.ceph:need seq 120259084311 got 120259084315 for osd.3 2024-03-24T12:16:04.552 DEBUG:teuthology.parallel:result is None 2024-03-24T12:16:05.455 INFO:tasks.cephadm.ceph_manager.ceph:need seq 150323855382 got 150323855386 for osd.5 2024-03-24T12:16:05.455 DEBUG:teuthology.parallel:result is None 2024-03-24T12:16:06.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:06 smithi172 bash[23876]: cluster 2024-03-24T12:16:04.947799+0000 mgr.smithi170.xkyvyq (mgr.14199) 188 : cluster 0 pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:06.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:06 smithi170 bash[18738]: cluster 2024-03-24T12:16:04.947799+0000 mgr.smithi170.xkyvyq (mgr.14199) 188 : cluster 0 pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:06.500 INFO:teuthology.orchestra.run.smithi170.stdout:107374182429 2024-03-24T12:16:07.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:07 smithi172 bash[23876]: audit 2024-03-24T12:16:06.503159+0000 mon.smithi170 (mon.0) 747 : audit 0 from='client.? 172.21.15.170:0/4075797966' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-03-24T12:16:07.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:07 smithi170 bash[18738]: audit 2024-03-24T12:16:06.503159+0000 mon.smithi170 (mon.0) 747 : audit 0 from='client.? 172.21.15.170:0/4075797966' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-03-24T12:16:07.860 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182425 got 107374182429 for osd.4 2024-03-24T12:16:07.861 DEBUG:teuthology.parallel:result is None 2024-03-24T12:16:08.013 INFO:teuthology.orchestra.run.smithi170.stdout:120259084316 2024-03-24T12:16:08.258 INFO:teuthology.orchestra.run.smithi170.stdout:90194313246 2024-03-24T12:16:08.364 INFO:teuthology.orchestra.run.smithi170.stdout:68719476767 2024-03-24T12:16:08.392 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:08 smithi170 bash[18738]: cluster 2024-03-24T12:16:06.948328+0000 mgr.smithi170.xkyvyq (mgr.14199) 189 : cluster 0 pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:08.393 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:08 smithi170 bash[18738]: audit 2024-03-24T12:16:08.016297+0000 mon.smithi170 (mon.0) 748 : audit 0 from='client.? 172.21.15.170:0/3737257578' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-03-24T12:16:08.405 INFO:teuthology.orchestra.run.smithi170.stdout:167503724570 2024-03-24T12:16:08.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:08 smithi172 bash[23876]: cluster 2024-03-24T12:16:06.948328+0000 mgr.smithi170.xkyvyq (mgr.14199) 189 : cluster 0 pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:08.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:08 smithi172 bash[23876]: audit 2024-03-24T12:16:08.016297+0000 mon.smithi170 (mon.0) 748 : audit 0 from='client.? 172.21.15.170:0/3737257578' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-03-24T12:16:09.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:09 smithi172 bash[23876]: audit 2024-03-24T12:16:08.261299+0000 mon.smithi170 (mon.0) 749 : audit 0 from='client.? 172.21.15.170:0/3640334378' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-03-24T12:16:09.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:09 smithi172 bash[23876]: audit 2024-03-24T12:16:08.300525+0000 mon.smithi170 (mon.0) 750 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:16:09.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:09 smithi172 bash[23876]: audit 2024-03-24T12:16:08.305991+0000 mon.smithi170 (mon.0) 751 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:16:09.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:09 smithi172 bash[23876]: audit 2024-03-24T12:16:08.367166+0000 mon.smithi170 (mon.0) 752 : audit 0 from='client.? 172.21.15.170:0/1181025412' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-03-24T12:16:09.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:09 smithi172 bash[23876]: audit 2024-03-24T12:16:08.407556+0000 mon.smithi170 (mon.0) 753 : audit 0 from='client.? 172.21.15.170:0/3562458282' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-03-24T12:16:09.560 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:09 smithi170 bash[18738]: audit 2024-03-24T12:16:08.261299+0000 mon.smithi170 (mon.0) 749 : audit 0 from='client.? 172.21.15.170:0/3640334378' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-03-24T12:16:09.560 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:09 smithi170 bash[18738]: audit 2024-03-24T12:16:08.300525+0000 mon.smithi170 (mon.0) 750 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:16:09.560 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:09 smithi170 bash[18738]: audit 2024-03-24T12:16:08.305991+0000 mon.smithi170 (mon.0) 751 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:16:09.560 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:09 smithi170 bash[18738]: audit 2024-03-24T12:16:08.367166+0000 mon.smithi170 (mon.0) 752 : audit 0 from='client.? 172.21.15.170:0/1181025412' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-03-24T12:16:09.560 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:09 smithi170 bash[18738]: audit 2024-03-24T12:16:08.407556+0000 mon.smithi170 (mon.0) 753 : audit 0 from='client.? 172.21.15.170:0/3562458282' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-03-24T12:16:09.561 INFO:tasks.cephadm.ceph_manager.ceph:need seq 120259084312 got 120259084316 for osd.6 2024-03-24T12:16:09.561 DEBUG:teuthology.parallel:result is None 2024-03-24T12:16:09.866 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313242 got 90194313246 for osd.1 2024-03-24T12:16:09.866 DEBUG:teuthology.parallel:result is None 2024-03-24T12:16:10.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:10 smithi170 bash[18738]: cluster 2024-03-24T12:16:08.948837+0000 mgr.smithi170.xkyvyq (mgr.14199) 190 : cluster 0 pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:10.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:10 smithi170 bash[18738]: audit 2024-03-24T12:16:09.259589+0000 mon.smithi170 (mon.0) 754 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:16:10.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:10 smithi170 bash[18738]: audit 2024-03-24T12:16:09.264795+0000 mon.smithi170 (mon.0) 755 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:16:10.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:10 smithi170 bash[18738]: audit 2024-03-24T12:16:09.834041+0000 mon.smithi170 (mon.0) 756 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:16:10.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:10 smithi170 bash[18738]: audit 2024-03-24T12:16:09.835648+0000 mon.smithi170 (mon.0) 757 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:16:10.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:10 smithi170 bash[18738]: audit 2024-03-24T12:16:09.844863+0000 mon.smithi170 (mon.0) 758 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:16:10.471 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:10 smithi170 bash[18738]: audit 2024-03-24T12:16:09.853173+0000 mon.smithi170 (mon.0) 759 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:16:10.597 INFO:tasks.cephadm.ceph_manager.ceph:need seq 167503724566 got 167503724570 for osd.7 2024-03-24T12:16:10.597 DEBUG:teuthology.parallel:result is None 2024-03-24T12:16:10.654 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476763 got 68719476767 for osd.0 2024-03-24T12:16:10.654 DEBUG:teuthology.parallel:result is None 2024-03-24T12:16:10.654 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-03-24T12:16:10.655 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph pg dump --format=json 2024-03-24T12:16:10.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:10 smithi172 bash[23876]: cluster 2024-03-24T12:16:08.948837+0000 mgr.smithi170.xkyvyq (mgr.14199) 190 : cluster 0 pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:10.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:10 smithi172 bash[23876]: audit 2024-03-24T12:16:09.259589+0000 mon.smithi170 (mon.0) 754 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:16:10.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:10 smithi172 bash[23876]: audit 2024-03-24T12:16:09.264795+0000 mon.smithi170 (mon.0) 755 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:16:10.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:10 smithi172 bash[23876]: audit 2024-03-24T12:16:09.834041+0000 mon.smithi170 (mon.0) 756 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:16:10.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:10 smithi172 bash[23876]: audit 2024-03-24T12:16:09.835648+0000 mon.smithi170 (mon.0) 757 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:16:10.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:10 smithi172 bash[23876]: audit 2024-03-24T12:16:09.844863+0000 mon.smithi170 (mon.0) 758 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:16:10.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:10 smithi172 bash[23876]: audit 2024-03-24T12:16:09.853173+0000 mon.smithi170 (mon.0) 759 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:16:12.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:12 smithi172 bash[23876]: cluster 2024-03-24T12:16:10.949428+0000 mgr.smithi170.xkyvyq (mgr.14199) 191 : cluster 0 pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:12.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:12 smithi170 bash[18738]: cluster 2024-03-24T12:16:10.949428+0000 mgr.smithi170.xkyvyq (mgr.14199) 191 : cluster 0 pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:14.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:14 smithi172 bash[23876]: cluster 2024-03-24T12:16:12.949985+0000 mgr.smithi170.xkyvyq (mgr.14199) 192 : cluster 0 pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:14.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:14 smithi172 bash[23876]: audit 2024-03-24T12:16:13.915891+0000 mon.smithi170 (mon.0) 760 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:16:14.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:14 smithi170 bash[18738]: cluster 2024-03-24T12:16:12.949985+0000 mgr.smithi170.xkyvyq (mgr.14199) 192 : cluster 0 pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:14.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:14 smithi170 bash[18738]: audit 2024-03-24T12:16:13.915891+0000 mon.smithi170 (mon.0) 760 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:16:15.444 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:16:16.595 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:16 smithi170 bash[18738]: cluster 2024-03-24T12:16:14.950580+0000 mgr.smithi170.xkyvyq (mgr.14199) 193 : cluster 0 pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:16.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:16 smithi172 bash[23876]: cluster 2024-03-24T12:16:14.950580+0000 mgr.smithi170.xkyvyq (mgr.14199) 193 : cluster 0 pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:18.201 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:16:18.204 INFO:teuthology.orchestra.run.smithi170.stderr:dumped all 2024-03-24T12:16:18.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:18 smithi170 bash[18738]: cluster 2024-03-24T12:16:16.951131+0000 mgr.smithi170.xkyvyq (mgr.14199) 194 : cluster 0 pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:18.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:18 smithi172 bash[23876]: cluster 2024-03-24T12:16:16.951131+0000 mgr.smithi170.xkyvyq (mgr.14199) 194 : cluster 0 pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:18.880 INFO:teuthology.orchestra.run.smithi170.stdout:{"pg_ready":true,"pg_map":{"version":168,"stamp":"2024-03-24T12:16:16.950855+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":160,"num_read_kb":139,"num_write":269,"num_write_kb":5026,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":5,"num_bytes_recovered":1180736,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":217,"ondisk_log_size":217,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":238000,"kb_used_data":5164,"kb_used_omap":12,"kb_used_meta":232691,"kb_avail":749690448,"statfs":{"total":767926730752,"available":767683018752,"internally_reserved":0,"allocated":5287936,"data_stored":3183928,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12749,"internal_metadata":238276147},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.003396"},"pg_stats":[{"pgid":"1.0","version":"33'217","reported_seq":334,"reported_epoch":43,"state":"active+clean","last_fresh":"2024-03-24T12:14:18.115891+0000","last_change":"2024-03-24T12:14:18.115034+0000","last_active":"2024-03-24T12:14:18.115891+0000","last_peered":"2024-03-24T12:14:18.115891+0000","last_clean":"2024-03-24T12:14:18.115891+0000","last_became_active":"2024-03-24T12:14:18.113903+0000","last_became_peered":"2024-03-24T12:14:18.113903+0000","last_unstale":"2024-03-24T12:14:18.115891+0000","last_undegraded":"2024-03-24T12:14:18.115891+0000","last_fullsized":"2024-03-24T12:14:18.115891+0000","mapping_epoch":42,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":43,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-03-24T12:13:54.427703+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-03-24T12:13:54.427703+0000","last_clean_scrub_stamp":"2024-03-24T12:13:54.427703+0000","objects_scrubbed":0,"log_size":217,"log_dups_size":0,"ondisk_log_size":217,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-03-25T22:36:19.583517+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":160,"num_read_kb":139,"num_write":269,"num_write_kb":5026,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":5,"num_bytes_recovered":1180736,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":160,"num_read_kb":139,"num_write":269,"num_write_kb":5026,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":5,"num_bytes_recovered":1180736,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":217,"ondisk_log_size":217,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":39,"seq":167503724572,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32192,"kb_used_data":1008,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708864,"statfs":{"total":95990841344,"available":95957876736,"internally_reserved":0,"allocated":1032192,"data_stored":766971,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":31914442},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":35,"seq":150323855389,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31608,"kb_used_data":428,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709448,"statfs":{"total":95990841344,"available":95958474752,"internally_reserved":0,"allocated":438272,"data_stored":176603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31914438},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":20,"seq":85899345952,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31616,"kb_used_data":428,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709440,"statfs":{"total":95990841344,"available":95958466560,"internally_reserved":0,"allocated":438272,"data_stored":176603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":16,"seq":68719476769,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32196,"kb_used_data":1008,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708860,"statfs":{"total":95990841344,"available":95957872640,"internally_reserved":0,"allocated":1032192,"data_stored":766971,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":21,"seq":90194313248,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27452,"kb_used_data":428,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713604,"statfs":{"total":95990841344,"available":95962730496,"internally_reserved":0,"allocated":438272,"data_stored":176603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":25,"seq":107374182431,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27448,"kb_used_data":428,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713608,"statfs":{"total":95990841344,"available":95962734592,"internally_reserved":0,"allocated":438272,"data_stored":176603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":28,"seq":120259084318,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28036,"kb_used_data":1008,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713020,"statfs":{"total":95990841344,"available":95962132480,"internally_reserved":0,"allocated":1032192,"data_stored":766971,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1591,"internal_metadata":27654601},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":28,"seq":120259084318,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27452,"kb_used_data":428,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713604,"statfs":{"total":95990841344,"available":95962730496,"internally_reserved":0,"allocated":438272,"data_stored":176603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-03-24T12:16:18.881 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph pg dump --format=json 2024-03-24T12:16:19.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:19 smithi172 bash[23876]: audit 2024-03-24T12:16:18.201927+0000 mgr.smithi170.xkyvyq (mgr.14199) 195 : audit 0 from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-24T12:16:19.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:19 smithi170 bash[18738]: audit 2024-03-24T12:16:18.201927+0000 mgr.smithi170.xkyvyq (mgr.14199) 195 : audit 0 from='client.14454 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-24T12:16:20.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:20 smithi172 bash[23876]: cluster 2024-03-24T12:16:18.951570+0000 mgr.smithi170.xkyvyq (mgr.14199) 196 : cluster 0 pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:20.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:20 smithi170 bash[18738]: cluster 2024-03-24T12:16:18.951570+0000 mgr.smithi170.xkyvyq (mgr.14199) 196 : cluster 0 pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:22.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:22 smithi172 bash[23876]: cluster 2024-03-24T12:16:20.952155+0000 mgr.smithi170.xkyvyq (mgr.14199) 197 : cluster 0 pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:22.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:22 smithi170 bash[18738]: cluster 2024-03-24T12:16:20.952155+0000 mgr.smithi170.xkyvyq (mgr.14199) 197 : cluster 0 pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:23.683 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:16:24.558 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:24 smithi170 bash[18738]: cluster 2024-03-24T12:16:22.952700+0000 mgr.smithi170.xkyvyq (mgr.14199) 198 : cluster 0 pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:24.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:24 smithi172 bash[23876]: cluster 2024-03-24T12:16:22.952700+0000 mgr.smithi170.xkyvyq (mgr.14199) 198 : cluster 0 pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:26.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:26 smithi170 bash[18738]: cluster 2024-03-24T12:16:24.953312+0000 mgr.smithi170.xkyvyq (mgr.14199) 199 : cluster 0 pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:26.498 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:16:26.502 INFO:teuthology.orchestra.run.smithi170.stderr:dumped all 2024-03-24T12:16:26.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:26 smithi172 bash[23876]: cluster 2024-03-24T12:16:24.953312+0000 mgr.smithi170.xkyvyq (mgr.14199) 199 : cluster 0 pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:27.186 INFO:teuthology.orchestra.run.smithi170.stdout:{"pg_ready":true,"pg_map":{"version":172,"stamp":"2024-03-24T12:16:24.953000+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":160,"num_read_kb":139,"num_write":269,"num_write_kb":5026,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":5,"num_bytes_recovered":1180736,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":217,"ondisk_log_size":217,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":238000,"kb_used_data":5164,"kb_used_omap":12,"kb_used_meta":232691,"kb_avail":749690448,"statfs":{"total":767926730752,"available":767683018752,"internally_reserved":0,"allocated":5287936,"data_stored":3183928,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12749,"internal_metadata":238276147},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.003289"},"pg_stats":[{"pgid":"1.0","version":"33'217","reported_seq":335,"reported_epoch":43,"state":"active+clean","last_fresh":"2024-03-24T12:14:19.523892+0000","last_change":"2024-03-24T12:14:18.115034+0000","last_active":"2024-03-24T12:14:19.523892+0000","last_peered":"2024-03-24T12:14:19.523892+0000","last_clean":"2024-03-24T12:14:19.523892+0000","last_became_active":"2024-03-24T12:14:18.113903+0000","last_became_peered":"2024-03-24T12:14:18.113903+0000","last_unstale":"2024-03-24T12:14:19.523892+0000","last_undegraded":"2024-03-24T12:14:19.523892+0000","last_fullsized":"2024-03-24T12:14:19.523892+0000","mapping_epoch":42,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":43,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-03-24T12:13:54.427703+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-03-24T12:13:54.427703+0000","last_clean_scrub_stamp":"2024-03-24T12:13:54.427703+0000","objects_scrubbed":0,"log_size":217,"log_dups_size":0,"ondisk_log_size":217,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-03-25T22:36:19.583517+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":160,"num_read_kb":139,"num_write":269,"num_write_kb":5026,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":5,"num_bytes_recovered":1180736,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":160,"num_read_kb":139,"num_write":269,"num_write_kb":5026,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":5,"num_bytes_recovered":1180736,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":217,"ondisk_log_size":217,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":39,"seq":167503724574,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32192,"kb_used_data":1008,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708864,"statfs":{"total":95990841344,"available":95957876736,"internally_reserved":0,"allocated":1032192,"data_stored":766971,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":31914442},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":35,"seq":150323855391,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31608,"kb_used_data":428,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709448,"statfs":{"total":95990841344,"available":95958474752,"internally_reserved":0,"allocated":438272,"data_stored":176603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31914438},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":20,"seq":85899345954,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31616,"kb_used_data":428,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709440,"statfs":{"total":95990841344,"available":95958466560,"internally_reserved":0,"allocated":438272,"data_stored":176603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":16,"seq":68719476771,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32196,"kb_used_data":1008,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708860,"statfs":{"total":95990841344,"available":95957872640,"internally_reserved":0,"allocated":1032192,"data_stored":766971,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":21,"seq":90194313250,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27452,"kb_used_data":428,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713604,"statfs":{"total":95990841344,"available":95962730496,"internally_reserved":0,"allocated":438272,"data_stored":176603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":25,"seq":107374182433,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27448,"kb_used_data":428,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713608,"statfs":{"total":95990841344,"available":95962734592,"internally_reserved":0,"allocated":438272,"data_stored":176603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":28,"seq":120259084319,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28036,"kb_used_data":1008,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713020,"statfs":{"total":95990841344,"available":95962132480,"internally_reserved":0,"allocated":1032192,"data_stored":766971,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1591,"internal_metadata":27654601},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":28,"seq":120259084319,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27452,"kb_used_data":428,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713604,"statfs":{"total":95990841344,"available":95962730496,"internally_reserved":0,"allocated":438272,"data_stored":176603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-03-24T12:16:27.187 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-03-24T12:16:27.187 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-03-24T12:16:27.187 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-03-24T12:16:27.188 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph health --format=json 2024-03-24T12:16:27.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:27 smithi170 bash[18738]: audit 2024-03-24T12:16:26.499749+0000 mgr.smithi170.xkyvyq (mgr.14199) 200 : audit 0 from='client.14458 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-24T12:16:27.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:27 smithi172 bash[23876]: audit 2024-03-24T12:16:26.499749+0000 mgr.smithi170.xkyvyq (mgr.14199) 200 : audit 0 from='client.14458 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-24T12:16:28.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:28 smithi172 bash[23876]: cluster 2024-03-24T12:16:26.953884+0000 mgr.smithi170.xkyvyq (mgr.14199) 201 : cluster 0 pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:28.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:28 smithi170 bash[18738]: cluster 2024-03-24T12:16:26.953884+0000 mgr.smithi170.xkyvyq (mgr.14199) 201 : cluster 0 pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:29.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:29 smithi172 bash[23876]: audit 2024-03-24T12:16:28.916085+0000 mon.smithi170 (mon.0) 761 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:16:29.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:29 smithi170 bash[18738]: audit 2024-03-24T12:16:28.916085+0000 mon.smithi170 (mon.0) 761 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:16:30.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:30 smithi172 bash[23876]: cluster 2024-03-24T12:16:28.954419+0000 mgr.smithi170.xkyvyq (mgr.14199) 202 : cluster 0 pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:30.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:30 smithi170 bash[18738]: cluster 2024-03-24T12:16:28.954419+0000 mgr.smithi170.xkyvyq (mgr.14199) 202 : cluster 0 pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:31.994 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:16:32.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:32 smithi172 bash[23876]: cluster 2024-03-24T12:16:30.955111+0000 mgr.smithi170.xkyvyq (mgr.14199) 203 : cluster 0 pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:32.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:32 smithi170 bash[18738]: cluster 2024-03-24T12:16:30.955111+0000 mgr.smithi170.xkyvyq (mgr.14199) 203 : cluster 0 pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:34.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:34 smithi172 bash[23876]: cluster 2024-03-24T12:16:32.955788+0000 mgr.smithi170.xkyvyq (mgr.14199) 204 : cluster 0 pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:34.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:34 smithi170 bash[18738]: cluster 2024-03-24T12:16:32.955788+0000 mgr.smithi170.xkyvyq (mgr.14199) 204 : cluster 0 pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:34.807 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:16:34.807 INFO:teuthology.orchestra.run.smithi170.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-03-24T12:16:35.539 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-03-24T12:16:35.539 INFO:tasks.cephadm:Setup complete, yielding 2024-03-24T12:16:35.540 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-24T12:16:35.554 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:16:35.554 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch status' 2024-03-24T12:16:35.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:35 smithi172 bash[23876]: audit 2024-03-24T12:16:34.810413+0000 mon.smithi170 (mon.0) 762 : audit 0 from='client.? 172.21.15.170:0/4230801201' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-03-24T12:16:35.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:35 smithi170 bash[18738]: audit 2024-03-24T12:16:34.810413+0000 mon.smithi170 (mon.0) 762 : audit 0 from='client.? 172.21.15.170:0/4230801201' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-03-24T12:16:36.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:36 smithi172 bash[23876]: cluster 2024-03-24T12:16:34.956145+0000 mgr.smithi170.xkyvyq (mgr.14199) 205 : cluster 0 pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:36.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:36 smithi170 bash[18738]: cluster 2024-03-24T12:16:34.956145+0000 mgr.smithi170.xkyvyq (mgr.14199) 205 : cluster 0 pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:38.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:38 smithi172 bash[23876]: cluster 2024-03-24T12:16:36.956623+0000 mgr.smithi170.xkyvyq (mgr.14199) 206 : cluster 0 pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:38.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:38 smithi170 bash[18738]: cluster 2024-03-24T12:16:36.956623+0000 mgr.smithi170.xkyvyq (mgr.14199) 206 : cluster 0 pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:40.346 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:16:40.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:40 smithi172 bash[23876]: cluster 2024-03-24T12:16:38.957158+0000 mgr.smithi170.xkyvyq (mgr.14199) 207 : cluster 0 pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:40.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:40 smithi170 bash[18738]: cluster 2024-03-24T12:16:38.957158+0000 mgr.smithi170.xkyvyq (mgr.14199) 207 : cluster 0 pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:42.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:42 smithi172 bash[23876]: cluster 2024-03-24T12:16:40.957732+0000 mgr.smithi170.xkyvyq (mgr.14199) 208 : cluster 0 pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:42.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:42 smithi170 bash[18738]: cluster 2024-03-24T12:16:40.957732+0000 mgr.smithi170.xkyvyq (mgr.14199) 208 : cluster 0 pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:43.133 INFO:teuthology.orchestra.run.smithi170.stdout:Backend: cephadm 2024-03-24T12:16:43.133 INFO:teuthology.orchestra.run.smithi170.stdout:Available: Yes 2024-03-24T12:16:43.133 INFO:teuthology.orchestra.run.smithi170.stdout:Paused: No 2024-03-24T12:16:43.842 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch ps' 2024-03-24T12:16:44.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:44 smithi172 bash[23876]: cluster 2024-03-24T12:16:42.958105+0000 mgr.smithi170.xkyvyq (mgr.14199) 209 : cluster 0 pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:44.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:44 smithi172 bash[23876]: audit 2024-03-24T12:16:43.135862+0000 mgr.smithi170.xkyvyq (mgr.14199) 210 : audit 0 from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:16:44.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:44 smithi172 bash[23876]: audit 2024-03-24T12:16:43.916308+0000 mon.smithi170 (mon.0) 763 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:16:44.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:44 smithi170 bash[18738]: cluster 2024-03-24T12:16:42.958105+0000 mgr.smithi170.xkyvyq (mgr.14199) 209 : cluster 0 pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:44.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:44 smithi170 bash[18738]: audit 2024-03-24T12:16:43.135862+0000 mgr.smithi170.xkyvyq (mgr.14199) 210 : audit 0 from='client.14466 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:16:44.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:44 smithi170 bash[18738]: audit 2024-03-24T12:16:43.916308+0000 mon.smithi170 (mon.0) 763 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:16:46.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:46 smithi172 bash[23876]: cluster 2024-03-24T12:16:44.958691+0000 mgr.smithi170.xkyvyq (mgr.14199) 211 : cluster 0 pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:46.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:46 smithi170 bash[18738]: cluster 2024-03-24T12:16:44.958691+0000 mgr.smithi170.xkyvyq (mgr.14199) 211 : cluster 0 pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:48.644 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:16:48.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:48 smithi172 bash[23876]: cluster 2024-03-24T12:16:46.959350+0000 mgr.smithi170.xkyvyq (mgr.14199) 212 : cluster 0 pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:48.665 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:48 smithi170 bash[18738]: cluster 2024-03-24T12:16:46.959350+0000 mgr.smithi170.xkyvyq (mgr.14199) 212 : cluster 0 pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:50.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:50 smithi172 bash[23876]: cluster 2024-03-24T12:16:48.960003+0000 mgr.smithi170.xkyvyq (mgr.14199) 213 : cluster 0 pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:50.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:50 smithi170 bash[18738]: cluster 2024-03-24T12:16:48.960003+0000 mgr.smithi170.xkyvyq (mgr.14199) 213 : cluster 0 pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:51.342 INFO:teuthology.orchestra.run.smithi170.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-03-24T12:16:51.342 INFO:teuthology.orchestra.run.smithi170.stdout:alertmanager.smithi170 smithi170 *:9093,9094 running (4m) 42s ago 6m 14.2M - 0.25.0 c8568f914cd2 91c51cd86a33 2024-03-24T12:16:51.342 INFO:teuthology.orchestra.run.smithi170.stdout:ceph-exporter.smithi170 smithi170 running (6m) 42s ago 6m 8395k - 19.0.0-1667-gdb0330b1 4f325f8440e9 a71c311efe46 2024-03-24T12:16:51.342 INFO:teuthology.orchestra.run.smithi170.stdout:ceph-exporter.smithi172 smithi172 running (4m) 43s ago 4m 8439k - 19.0.0-1667-gdb0330b1 4f325f8440e9 561db1315d87 2024-03-24T12:16:51.342 INFO:teuthology.orchestra.run.smithi170.stdout:crash.smithi170 smithi170 running (6m) 42s ago 6m 7123k - 19.0.0-1667-gdb0330b1 4f325f8440e9 8fbf63b3c63a 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:crash.smithi172 smithi172 running (4m) 43s ago 4m 7079k - 19.0.0-1667-gdb0330b1 4f325f8440e9 1cb65a4088fa 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:grafana.smithi170 smithi170 *:3000 running (4m) 42s ago 5m 76.5M - 9.4.12 a0ea5e3c46d9 95f56b453405 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:mgr.smithi170.xkyvyq smithi170 *:9283,8765,8443 running (7m) 42s ago 7m 487M - 19.0.0-1667-gdb0330b1 4f325f8440e9 91ee089964d6 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:mgr.smithi172.uznkeq smithi172 *:8443,9283,8765 running (4m) 43s ago 4m 435M - 19.0.0-1667-gdb0330b1 4f325f8440e9 1957752ceb57 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:mon.smithi170 smithi170 running (7m) 42s ago 7m 46.8M 2048M 19.0.0-1667-gdb0330b1 4f325f8440e9 22be11c739ff 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:mon.smithi172 smithi172 running (4m) 43s ago 4m 41.9M 2048M 19.0.0-1667-gdb0330b1 4f325f8440e9 80d0b3ffa2f9 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:node-exporter.smithi170 smithi170 *:9100 running (6m) 42s ago 6m 8263k - 1.5.0 0da6a335fe13 90d90a78a373 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:node-exporter.smithi172 smithi172 *:9100 running (4m) 43s ago 4m 8479k - 1.5.0 0da6a335fe13 fa4a71bbb147 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:osd.0 smithi172 running (3m) 43s ago 3m 47.7M 3772M 19.0.0-1667-gdb0330b1 4f325f8440e9 36cd44db43ab 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:osd.1 smithi170 running (3m) 42s ago 3m 41.7M 3004M 19.0.0-1667-gdb0330b1 4f325f8440e9 d237c24b3baa 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:osd.2 smithi172 running (3m) 43s ago 3m 46.0M 3772M 19.0.0-1667-gdb0330b1 4f325f8440e9 e577a74f667d 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:osd.3 smithi170 running (2m) 42s ago 3m 39.1M 3004M 19.0.0-1667-gdb0330b1 4f325f8440e9 a180aa78c7a3 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:osd.4 smithi172 running (3m) 43s ago 3m 35.9M 3772M 19.0.0-1667-gdb0330b1 4f325f8440e9 867f39a9b2ca 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:osd.5 smithi170 running (2m) 42s ago 2m 44.5M 3004M 19.0.0-1667-gdb0330b1 4f325f8440e9 63431a39ff29 2024-03-24T12:16:51.343 INFO:teuthology.orchestra.run.smithi170.stdout:osd.6 smithi172 running (2m) 43s ago 2m 35.5M 3772M 19.0.0-1667-gdb0330b1 4f325f8440e9 d3275c684e0f 2024-03-24T12:16:51.344 INFO:teuthology.orchestra.run.smithi170.stdout:osd.7 smithi170 running (2m) 42s ago 2m 45.8M 3004M 19.0.0-1667-gdb0330b1 4f325f8440e9 4a30bc31f9f7 2024-03-24T12:16:51.344 INFO:teuthology.orchestra.run.smithi170.stdout:prometheus.smithi170 smithi170 *:9095 running (4m) 42s ago 5m 51.5M - 2.43.0 a07b618ecd1d cdf8d00fed1b 2024-03-24T12:16:52.047 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch ls' 2024-03-24T12:16:52.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:52 smithi172 bash[23876]: cluster 2024-03-24T12:16:50.960353+0000 mgr.smithi170.xkyvyq (mgr.14199) 214 : cluster 0 pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:52.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:52 smithi172 bash[23876]: audit 2024-03-24T12:16:51.307582+0000 mgr.smithi170.xkyvyq (mgr.14199) 215 : audit 0 from='client.14470 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:16:52.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:52 smithi170 bash[18738]: cluster 2024-03-24T12:16:50.960353+0000 mgr.smithi170.xkyvyq (mgr.14199) 214 : cluster 0 pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:52.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:52 smithi170 bash[18738]: audit 2024-03-24T12:16:51.307582+0000 mgr.smithi170.xkyvyq (mgr.14199) 215 : audit 0 from='client.14470 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:16:54.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:54 smithi172 bash[23876]: cluster 2024-03-24T12:16:52.960868+0000 mgr.smithi170.xkyvyq (mgr.14199) 216 : cluster 0 pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:54.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:54 smithi170 bash[18738]: cluster 2024-03-24T12:16:52.960868+0000 mgr.smithi170.xkyvyq (mgr.14199) 216 : cluster 0 pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:56.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:56 smithi172 bash[23876]: cluster 2024-03-24T12:16:54.961507+0000 mgr.smithi170.xkyvyq (mgr.14199) 217 : cluster 0 pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:56.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:56 smithi170 bash[18738]: cluster 2024-03-24T12:16:54.961507+0000 mgr.smithi170.xkyvyq (mgr.14199) 217 : cluster 0 pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:56.840 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:16:58.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:58 smithi172 bash[23876]: cluster 2024-03-24T12:16:56.962090+0000 mgr.smithi170.xkyvyq (mgr.14199) 218 : cluster 0 pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:58.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:58 smithi170 bash[18738]: cluster 2024-03-24T12:16:56.962090+0000 mgr.smithi170.xkyvyq (mgr.14199) 218 : cluster 0 pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:16:59.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:16:59 smithi170 bash[18738]: audit 2024-03-24T12:16:58.916506+0000 mon.smithi170 (mon.0) 764 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:16:59.574 INFO:teuthology.orchestra.run.smithi170.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-03-24T12:16:59.574 INFO:teuthology.orchestra.run.smithi170.stdout:alertmanager ?:9093,9094 1/1 50s ago 7m count:1 2024-03-24T12:16:59.575 INFO:teuthology.orchestra.run.smithi170.stdout:ceph-exporter 2/2 51s ago 7m * 2024-03-24T12:16:59.575 INFO:teuthology.orchestra.run.smithi170.stdout:crash 2/2 51s ago 7m * 2024-03-24T12:16:59.575 INFO:teuthology.orchestra.run.smithi170.stdout:grafana ?:3000 1/1 50s ago 7m count:1 2024-03-24T12:16:59.575 INFO:teuthology.orchestra.run.smithi170.stdout:mgr 2/2 51s ago 7m count:2 2024-03-24T12:16:59.575 INFO:teuthology.orchestra.run.smithi170.stdout:mon 2/2 51s ago 5m smithi170:172.21.15.170=smithi170;smithi172:172.21.15.172=smithi172;count:2 2024-03-24T12:16:59.575 INFO:teuthology.orchestra.run.smithi170.stdout:node-exporter ?:9100 2/2 51s ago 7m * 2024-03-24T12:16:59.575 INFO:teuthology.orchestra.run.smithi170.stdout:osd.all-available-devices 8 51s ago 4m * 2024-03-24T12:16:59.575 INFO:teuthology.orchestra.run.smithi170.stdout:prometheus ?:9095 1/1 50s ago 7m count:1 2024-03-24T12:16:59.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:16:59 smithi172 bash[23876]: audit 2024-03-24T12:16:58.916506+0000 mon.smithi170 (mon.0) 764 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:17:00.318 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch host ls' 2024-03-24T12:17:00.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:00 smithi172 bash[23876]: cluster 2024-03-24T12:16:58.962638+0000 mgr.smithi170.xkyvyq (mgr.14199) 219 : cluster 0 pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:00.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:00 smithi172 bash[23876]: audit 2024-03-24T12:16:59.572094+0000 mgr.smithi170.xkyvyq (mgr.14199) 220 : audit 0 from='client.14474 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:17:00.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:00 smithi170 bash[18738]: cluster 2024-03-24T12:16:58.962638+0000 mgr.smithi170.xkyvyq (mgr.14199) 219 : cluster 0 pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:00.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:00 smithi170 bash[18738]: audit 2024-03-24T12:16:59.572094+0000 mgr.smithi170.xkyvyq (mgr.14199) 220 : audit 0 from='client.14474 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:17:02.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:02 smithi172 bash[23876]: cluster 2024-03-24T12:17:00.963273+0000 mgr.smithi170.xkyvyq (mgr.14199) 221 : cluster 0 pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:02.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:02 smithi170 bash[18738]: cluster 2024-03-24T12:17:00.963273+0000 mgr.smithi170.xkyvyq (mgr.14199) 221 : cluster 0 pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:04.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:04 smithi172 bash[23876]: cluster 2024-03-24T12:17:02.963853+0000 mgr.smithi170.xkyvyq (mgr.14199) 222 : cluster 0 pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:04.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:04 smithi170 bash[18738]: cluster 2024-03-24T12:17:02.963853+0000 mgr.smithi170.xkyvyq (mgr.14199) 222 : cluster 0 pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:05.122 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:17:06.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:06 smithi172 bash[23876]: cluster 2024-03-24T12:17:04.964412+0000 mgr.smithi170.xkyvyq (mgr.14199) 223 : cluster 0 pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:06.692 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:06 smithi170 bash[18738]: cluster 2024-03-24T12:17:04.964412+0000 mgr.smithi170.xkyvyq (mgr.14199) 223 : cluster 0 pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:08.004 INFO:teuthology.orchestra.run.smithi170.stdout:HOST ADDR LABELS STATUS 2024-03-24T12:17:08.005 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 172.21.15.170 2024-03-24T12:17:08.005 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 172.21.15.172 2024-03-24T12:17:08.005 INFO:teuthology.orchestra.run.smithi170.stdout:2 hosts in cluster 2024-03-24T12:17:08.651 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch device ls' 2024-03-24T12:17:08.662 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:08 smithi170 bash[18738]: cluster 2024-03-24T12:17:06.964978+0000 mgr.smithi170.xkyvyq (mgr.14199) 224 : cluster 0 pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:08.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:08 smithi172 bash[23876]: cluster 2024-03-24T12:17:06.964978+0000 mgr.smithi170.xkyvyq (mgr.14199) 224 : cluster 0 pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:09.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:09 smithi170 bash[18738]: audit 2024-03-24T12:17:08.006623+0000 mgr.smithi170.xkyvyq (mgr.14199) 225 : audit 0 from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:17:09.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:09 smithi172 bash[23876]: audit 2024-03-24T12:17:08.006623+0000 mgr.smithi170.xkyvyq (mgr.14199) 225 : audit 0 from='client.14478 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:17:10.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:10 smithi170 bash[18738]: cluster 2024-03-24T12:17:08.965475+0000 mgr.smithi170.xkyvyq (mgr.14199) 226 : cluster 0 pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:10.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:10 smithi170 bash[18738]: audit 2024-03-24T12:17:09.934084+0000 mon.smithi170 (mon.0) 765 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:17:10.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:10 smithi172 bash[23876]: cluster 2024-03-24T12:17:08.965475+0000 mgr.smithi170.xkyvyq (mgr.14199) 226 : cluster 0 pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:10.915 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:10 smithi172 bash[23876]: audit 2024-03-24T12:17:09.934084+0000 mon.smithi170 (mon.0) 765 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:17:12.722 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:12 smithi170 bash[18738]: cluster 2024-03-24T12:17:10.966120+0000 mgr.smithi170.xkyvyq (mgr.14199) 227 : cluster 0 pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:12.783 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:12 smithi172 bash[23876]: cluster 2024-03-24T12:17:10.966120+0000 mgr.smithi170.xkyvyq (mgr.14199) 227 : cluster 0 pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:13.444 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:17:14.620 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:14 smithi170 bash[18738]: cluster 2024-03-24T12:17:12.966629+0000 mgr.smithi170.xkyvyq (mgr.14199) 228 : cluster 0 pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:14.620 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:14 smithi170 bash[18738]: audit 2024-03-24T12:17:13.917337+0000 mon.smithi170 (mon.0) 766 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:17:14.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:14 smithi172 bash[23876]: cluster 2024-03-24T12:17:12.966629+0000 mgr.smithi170.xkyvyq (mgr.14199) 228 : cluster 0 pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:14.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:14 smithi172 bash[23876]: audit 2024-03-24T12:17:13.917337+0000 mon.smithi170 (mon.0) 766 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:17:16.156 INFO:teuthology.orchestra.run.smithi170.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-03-24T12:17:16.156 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7476002R480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-03-24T12:17:16.156 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme1n1 ssd Linux_3cd1406c6ad0ef11b4c6 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:16.157 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme2n1 ssd Linux_99ba4e190b84502d3dc9 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:16.157 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme3n1 ssd Linux_e2855ce1533b9451fdd9 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:16.157 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme4n1 ssd Linux_232351e92a0532808ca4 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:16.157 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT6233005M400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-03-24T12:17:16.157 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme1n1 ssd Linux_69df2a544f7f1f8e1480 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:16.157 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme2n1 ssd Linux_c168202c83c0fdc1ecf6 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:16.157 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme3n1 ssd Linux_8b5ac07049d950bba3b5 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:16.157 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme4n1 ssd Linux_5d07f53583aa4c95afcb 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:16.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:16 smithi170 bash[18738]: cluster 2024-03-24T12:17:14.966995+0000 mgr.smithi170.xkyvyq (mgr.14199) 229 : cluster 0 pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:16.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:16 smithi170 bash[18738]: audit 2024-03-24T12:17:15.426897+0000 mon.smithi170 (mon.0) 767 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:16.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:16 smithi170 bash[18738]: audit 2024-03-24T12:17:15.438985+0000 mon.smithi170 (mon.0) 768 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:16.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:16 smithi170 bash[18738]: audit 2024-03-24T12:17:15.531491+0000 mon.smithi170 (mon.0) 769 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:16.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:16 smithi170 bash[18738]: audit 2024-03-24T12:17:15.537618+0000 mon.smithi170 (mon.0) 770 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:16.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:16 smithi170 bash[18738]: audit 2024-03-24T12:17:16.128618+0000 mon.smithi170 (mon.0) 771 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:16.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:16 smithi170 bash[18738]: audit 2024-03-24T12:17:16.130297+0000 mon.smithi170 (mon.0) 772 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:17:16.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:16 smithi170 bash[18738]: audit 2024-03-24T12:17:16.138364+0000 mon.smithi170 (mon.0) 773 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:16.720 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:16 smithi170 bash[18738]: audit 2024-03-24T12:17:16.145753+0000 mon.smithi170 (mon.0) 774 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:17:16.801 INFO:teuthology.run_tasks:Running task vip... 2024-03-24T12:17:16.810 INFO:tasks.vip:Allocating static IPs for each host... 2024-03-24T12:17:16.811 INFO:tasks.vip:peername 172.21.15.170 2024-03-24T12:17:16.814 INFO:tasks.vip:172.21.15.170 in 172.21.0.0/20, pos 4009 2024-03-24T12:17:16.818 INFO:tasks.vip:smithi170.front.sepia.ceph.com static 10.0.15.170, vnet 10.0.0.0/16 2024-03-24T12:17:16.818 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-03-24T12:17:16.819 DEBUG:teuthology.orchestra.run.smithi170:> sudo ip route ls 2024-03-24T12:17:16.860 INFO:teuthology.orchestra.run.smithi170.stdout:default via 172.21.15.254 dev enp3s0f1 2024-03-24T12:17:16.860 INFO:teuthology.orchestra.run.smithi170.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.170 metric 100 2024-03-24T12:17:16.860 INFO:teuthology.orchestra.run.smithi170.stdout:158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.170 metric 100 2024-03-24T12:17:16.860 INFO:teuthology.orchestra.run.smithi170.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-03-24T12:17:16.860 INFO:teuthology.orchestra.run.smithi170.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.170 metric 100 2024-03-24T12:17:16.860 INFO:teuthology.orchestra.run.smithi170.stdout:172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.170 metric 100 2024-03-24T12:17:16.860 INFO:teuthology.orchestra.run.smithi170.stdout:172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.170 metric 100 2024-03-24T12:17:16.860 INFO:teuthology.orchestra.run.smithi170.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.170 metric 100 2024-03-24T12:17:16.861 INFO:tasks.vip:Configuring 10.0.15.170 on smithi170.front.sepia.ceph.com iface enp3s0f1... 2024-03-24T12:17:16.862 DEBUG:teuthology.orchestra.run.smithi170:> sudo ip addr add 10.0.15.170/16 dev enp3s0f1 2024-03-24T12:17:16.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:16 smithi172 bash[23876]: cluster 2024-03-24T12:17:14.966995+0000 mgr.smithi170.xkyvyq (mgr.14199) 229 : cluster 0 pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:16.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:16 smithi172 bash[23876]: audit 2024-03-24T12:17:15.426897+0000 mon.smithi170 (mon.0) 767 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:16.915 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:16 smithi172 bash[23876]: audit 2024-03-24T12:17:15.438985+0000 mon.smithi170 (mon.0) 768 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:16.915 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:16 smithi172 bash[23876]: audit 2024-03-24T12:17:15.531491+0000 mon.smithi170 (mon.0) 769 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:16.915 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:16 smithi172 bash[23876]: audit 2024-03-24T12:17:15.537618+0000 mon.smithi170 (mon.0) 770 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:16.915 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:16 smithi172 bash[23876]: audit 2024-03-24T12:17:16.128618+0000 mon.smithi170 (mon.0) 771 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:16.915 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:16 smithi172 bash[23876]: audit 2024-03-24T12:17:16.130297+0000 mon.smithi170 (mon.0) 772 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:17:16.915 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:16 smithi172 bash[23876]: audit 2024-03-24T12:17:16.138364+0000 mon.smithi170 (mon.0) 773 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:16.915 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:16 smithi172 bash[23876]: audit 2024-03-24T12:17:16.145753+0000 mon.smithi170 (mon.0) 774 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:17:16.916 INFO:tasks.vip:peername 172.21.15.172 2024-03-24T12:17:16.918 INFO:tasks.vip:172.21.15.172 in 172.21.0.0/20, pos 4011 2024-03-24T12:17:16.922 INFO:tasks.vip:smithi172.front.sepia.ceph.com static 10.0.15.172, vnet 10.0.0.0/16 2024-03-24T12:17:16.923 DEBUG:teuthology.orchestra.run.smithi172:> sudo ip route ls 2024-03-24T12:17:16.935 INFO:teuthology.orchestra.run.smithi172.stdout:default via 172.21.15.254 dev enp3s0f1 2024-03-24T12:17:16.936 INFO:teuthology.orchestra.run.smithi172.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.172 metric 100 2024-03-24T12:17:16.936 INFO:teuthology.orchestra.run.smithi172.stdout:158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.172 metric 100 2024-03-24T12:17:16.936 INFO:teuthology.orchestra.run.smithi172.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-03-24T12:17:16.936 INFO:teuthology.orchestra.run.smithi172.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.172 metric 100 2024-03-24T12:17:16.936 INFO:teuthology.orchestra.run.smithi172.stdout:172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.172 metric 100 2024-03-24T12:17:16.936 INFO:teuthology.orchestra.run.smithi172.stdout:172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.172 metric 100 2024-03-24T12:17:16.936 INFO:teuthology.orchestra.run.smithi172.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.172 metric 100 2024-03-24T12:17:16.937 INFO:tasks.vip:Configuring 10.0.15.172 on smithi172.front.sepia.ceph.com iface enp3s0f1... 2024-03-24T12:17:16.937 DEBUG:teuthology.orchestra.run.smithi172:> sudo ip addr add 10.0.15.172/16 dev enp3s0f1 2024-03-24T12:17:16.992 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-24T12:17:17.001 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:17:17.001 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2024-03-24T12:17:17.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:17 smithi170 bash[18738]: audit 2024-03-24T12:17:16.154283+0000 mgr.smithi170.xkyvyq (mgr.14199) 230 : audit 0 from='client.14482 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:17:17.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:17 smithi172 bash[23876]: audit 2024-03-24T12:17:16.154283+0000 mgr.smithi170.xkyvyq (mgr.14199) 230 : audit 0 from='client.14482 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:17:18.694 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:18 smithi170 bash[18738]: cluster 2024-03-24T12:17:16.967550+0000 mgr.smithi170.xkyvyq (mgr.14199) 231 : cluster 0 pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:18.720 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:18 smithi172 bash[23876]: cluster 2024-03-24T12:17:16.967550+0000 mgr.smithi170.xkyvyq (mgr.14199) 231 : cluster 0 pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:20.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:20 smithi170 bash[18738]: cluster 2024-03-24T12:17:18.968216+0000 mgr.smithi170.xkyvyq (mgr.14199) 232 : cluster 0 pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:20.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:20 smithi172 bash[23876]: cluster 2024-03-24T12:17:18.968216+0000 mgr.smithi170.xkyvyq (mgr.14199) 232 : cluster 0 pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:21.804 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:17:22.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:22 smithi170 bash[18738]: cluster 2024-03-24T12:17:20.968902+0000 mgr.smithi170.xkyvyq (mgr.14199) 233 : cluster 0 pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:22.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:22 smithi172 bash[23876]: cluster 2024-03-24T12:17:20.968902+0000 mgr.smithi170.xkyvyq (mgr.14199) 233 : cluster 0 pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:24.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:24 smithi170 bash[18738]: cluster 2024-03-24T12:17:22.969468+0000 mgr.smithi170.xkyvyq (mgr.14199) 234 : cluster 0 pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:24.775 INFO:teuthology.orchestra.run.smithi170.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-03-24T12:17:24.775 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7476002R480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-03-24T12:17:24.775 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme1n1 ssd Linux_3cd1406c6ad0ef11b4c6 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:24.775 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme2n1 ssd Linux_99ba4e190b84502d3dc9 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:24.775 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme3n1 ssd Linux_e2855ce1533b9451fdd9 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:24.775 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme4n1 ssd Linux_232351e92a0532808ca4 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:24.775 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT6233005M400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-03-24T12:17:24.775 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme1n1 ssd Linux_69df2a544f7f1f8e1480 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:24.775 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme2n1 ssd Linux_c168202c83c0fdc1ecf6 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:24.775 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme3n1 ssd Linux_8b5ac07049d950bba3b5 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:24.775 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme4n1 ssd Linux_5d07f53583aa4c95afcb 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:17:24.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:24 smithi172 bash[23876]: cluster 2024-03-24T12:17:22.969468+0000 mgr.smithi170.xkyvyq (mgr.14199) 234 : cluster 0 pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:25.481 INFO:teuthology.run_tasks:Running task vip.exec... 2024-03-24T12:17:25.490 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:17:25.490 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-03-24T12:17:25.503 INFO:teuthology.orchestra.run.smithi170.stderr:+ systemctl stop nfs-server 2024-03-24T12:17:25.616 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi172.front.sepia.ceph.com 2024-03-24T12:17:25.616 DEBUG:teuthology.orchestra.run.smithi172:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-03-24T12:17:25.629 INFO:teuthology.orchestra.run.smithi172.stderr:+ systemctl stop nfs-server 2024-03-24T12:17:25.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:25 smithi170 bash[18738]: audit 2024-03-24T12:17:24.798650+0000 mon.smithi170 (mon.0) 775 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:17:25.731 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:25 smithi172 bash[23876]: audit 2024-03-24T12:17:24.798650+0000 mon.smithi170 (mon.0) 775 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:17:25.738 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-24T12:17:25.747 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:17:25.747 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-03-24T12:17:26.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:26 smithi170 bash[18738]: audit 2024-03-24T12:17:24.769153+0000 mgr.smithi170.xkyvyq (mgr.14199) 235 : audit 0 from='client.14486 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:17:26.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:26 smithi170 bash[18738]: cluster 2024-03-24T12:17:24.969813+0000 mgr.smithi170.xkyvyq (mgr.14199) 236 : cluster 0 pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:26.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:26 smithi172 bash[23876]: audit 2024-03-24T12:17:24.769153+0000 mgr.smithi170.xkyvyq (mgr.14199) 235 : audit 0 from='client.14486 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:17:26.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:26 smithi172 bash[23876]: cluster 2024-03-24T12:17:24.969813+0000 mgr.smithi170.xkyvyq (mgr.14199) 236 : cluster 0 pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:28.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:28 smithi172 bash[23876]: cluster 2024-03-24T12:17:26.970323+0000 mgr.smithi170.xkyvyq (mgr.14199) 237 : cluster 0 pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:28.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:28 smithi170 bash[18738]: cluster 2024-03-24T12:17:26.970323+0000 mgr.smithi170.xkyvyq (mgr.14199) 237 : cluster 0 pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:29.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:29 smithi170 bash[18738]: audit 2024-03-24T12:17:28.917783+0000 mon.smithi170 (mon.0) 776 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:17:29.799 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:17:29.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:29 smithi172 bash[23876]: audit 2024-03-24T12:17:28.917783+0000 mon.smithi170 (mon.0) 776 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:17:30.737 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:30 smithi170 bash[18738]: cluster 2024-03-24T12:17:28.970931+0000 mgr.smithi170.xkyvyq (mgr.14199) 238 : cluster 0 pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:30.737 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:30 smithi170 bash[18738]: audit 2024-03-24T12:17:30.338193+0000 mon.smithi170 (mon.0) 777 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:30.738 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:30 smithi170 bash[18738]: audit 2024-03-24T12:17:30.343299+0000 mon.smithi170 (mon.0) 778 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:30.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:30 smithi172 bash[23876]: cluster 2024-03-24T12:17:28.970931+0000 mgr.smithi170.xkyvyq (mgr.14199) 238 : cluster 0 pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:30.915 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:30 smithi172 bash[23876]: audit 2024-03-24T12:17:30.338193+0000 mon.smithi170 (mon.0) 777 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:30.915 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:30 smithi172 bash[23876]: audit 2024-03-24T12:17:30.343299+0000 mon.smithi170 (mon.0) 778 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.091 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:31 smithi170 bash[18738]: audit 2024-03-24T12:17:30.790358+0000 mon.smithi170 (mon.0) 779 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.091 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:31 smithi170 bash[18738]: audit 2024-03-24T12:17:30.795509+0000 mon.smithi170 (mon.0) 780 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.091 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:31 smithi170 bash[18738]: audit 2024-03-24T12:17:30.815225+0000 mon.smithi170 (mon.0) 781 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.091 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:31 smithi170 bash[18738]: audit 2024-03-24T12:17:30.820610+0000 mon.smithi170 (mon.0) 782 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.091 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:31 smithi170 bash[18738]: cluster 2024-03-24T12:17:30.971386+0000 mgr.smithi170.xkyvyq (mgr.14199) 239 : cluster 0 pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:32.091 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:31 smithi170 bash[18738]: audit 2024-03-24T12:17:31.220860+0000 mon.smithi170 (mon.0) 783 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.091 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:31 smithi170 bash[18738]: audit 2024-03-24T12:17:31.229266+0000 mon.smithi170 (mon.0) 784 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:31 smithi172 bash[23876]: audit 2024-03-24T12:17:30.790358+0000 mon.smithi170 (mon.0) 779 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:31 smithi172 bash[23876]: audit 2024-03-24T12:17:30.795509+0000 mon.smithi170 (mon.0) 780 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:31 smithi172 bash[23876]: audit 2024-03-24T12:17:30.815225+0000 mon.smithi170 (mon.0) 781 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:31 smithi172 bash[23876]: audit 2024-03-24T12:17:30.820610+0000 mon.smithi170 (mon.0) 782 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:31 smithi172 bash[23876]: cluster 2024-03-24T12:17:30.971386+0000 mgr.smithi170.xkyvyq (mgr.14199) 239 : cluster 0 pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:32.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:31 smithi172 bash[23876]: audit 2024-03-24T12:17:31.220860+0000 mon.smithi170 (mon.0) 783 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:31 smithi172 bash[23876]: audit 2024-03-24T12:17:31.229266+0000 mon.smithi170 (mon.0) 784 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:32.499 INFO:teuthology.orchestra.run.smithi170.stdout:Scheduled rgw.foorgw update... 2024-03-24T12:17:33.254 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.170/16' 2024-03-24T12:17:33.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:33 smithi172 bash[23876]: audit 2024-03-24T12:17:32.494168+0000 mgr.smithi170.xkyvyq (mgr.14199) 240 : audit 0 from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:17:33.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:33 smithi172 bash[23876]: cephadm 2024-03-24T12:17:32.497474+0000 mgr.smithi170.xkyvyq (mgr.14199) 241 : cephadm 1 Saving service rgw.foorgw spec with placement count:2 2024-03-24T12:17:33.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:33 smithi172 bash[23876]: audit 2024-03-24T12:17:32.501868+0000 mon.smithi170 (mon.0) 785 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:33.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:33 smithi170 bash[18738]: audit 2024-03-24T12:17:32.494168+0000 mgr.smithi170.xkyvyq (mgr.14199) 240 : audit 0 from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:17:33.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:33 smithi170 bash[18738]: cephadm 2024-03-24T12:17:32.497474+0000 mgr.smithi170.xkyvyq (mgr.14199) 241 : cephadm 1 Saving service rgw.foorgw spec with placement count:2 2024-03-24T12:17:33.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:33 smithi170 bash[18738]: audit 2024-03-24T12:17:32.501868+0000 mon.smithi170 (mon.0) 785 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:34.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:34 smithi172 bash[23876]: cluster 2024-03-24T12:17:32.971967+0000 mgr.smithi170.xkyvyq (mgr.14199) 242 : cluster 0 pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:34.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:34 smithi170 bash[18738]: cluster 2024-03-24T12:17:32.971967+0000 mgr.smithi170.xkyvyq (mgr.14199) 242 : cluster 0 pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:36.804 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:36 smithi172 bash[23876]: cluster 2024-03-24T12:17:34.972501+0000 mgr.smithi170.xkyvyq (mgr.14199) 243 : cluster 0 pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:36.822 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:36 smithi170 bash[18738]: cluster 2024-03-24T12:17:34.972501+0000 mgr.smithi170.xkyvyq (mgr.14199) 243 : cluster 0 pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:37.818 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:17:38.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:38 smithi170 bash[18738]: cluster 2024-03-24T12:17:36.973063+0000 mgr.smithi170.xkyvyq (mgr.14199) 244 : cluster 0 pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:38.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:38 smithi172 bash[23876]: cluster 2024-03-24T12:17:36.973063+0000 mgr.smithi170.xkyvyq (mgr.14199) 244 : cluster 0 pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:40.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:40 smithi172 bash[23876]: cluster 2024-03-24T12:17:38.973669+0000 mgr.smithi170.xkyvyq (mgr.14199) 245 : cluster 0 pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:40.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:40 smithi170 bash[18738]: cluster 2024-03-24T12:17:38.973669+0000 mgr.smithi170.xkyvyq (mgr.14199) 245 : cluster 0 pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:42.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:42 smithi170 bash[18738]: audit 2024-03-24T12:17:40.869831+0000 mon.smithi170 (mon.0) 786 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:42.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:42 smithi170 bash[18738]: audit 2024-03-24T12:17:40.881634+0000 mon.smithi170 (mon.0) 787 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:42.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:42 smithi170 bash[18738]: cluster 2024-03-24T12:17:40.974040+0000 mgr.smithi170.xkyvyq (mgr.14199) 246 : cluster 0 pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:42.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:42 smithi172 bash[23876]: audit 2024-03-24T12:17:40.869831+0000 mon.smithi170 (mon.0) 786 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:42.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:42 smithi172 bash[23876]: audit 2024-03-24T12:17:40.881634+0000 mon.smithi170 (mon.0) 787 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:42.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:42 smithi172 bash[23876]: cluster 2024-03-24T12:17:40.974040+0000 mgr.smithi170.xkyvyq (mgr.14199) 246 : cluster 0 pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:43.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:41.791081+0000 mgr.smithi170.xkyvyq (mgr.14199) 247 : audit 0 from='client.14494 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.170/16", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:17:43.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:41.792575+0000 mon.smithi170 (mon.0) 788 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-03-24T12:17:43.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:42.260299+0000 mon.smithi170 (mon.0) 789 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-03-24T12:17:43.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: cluster 2024-03-24T12:17:42.265341+0000 mon.smithi170 (mon.0) 790 : cluster 0 osdmap e44: 8 total, 8 up, 8 in 2024-03-24T12:17:43.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:42.275360+0000 mon.smithi170 (mon.0) 791 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-03-24T12:17:43.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:42.782781+0000 mon.smithi170 (mon.0) 792 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:43.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:42.793156+0000 mon.smithi170 (mon.0) 793 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:43.478 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:42.795613+0000 mon.smithi170 (mon.0) 794 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:43.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:42.797153+0000 mon.smithi170 (mon.0) 795 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:17:43.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:42.806283+0000 mon.smithi170 (mon.0) 796 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:43.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:42.815072+0000 mon.smithi170 (mon.0) 797 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:17:43.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:42.837937+0000 mon.smithi170 (mon.0) 798 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi172.tjined", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-03-24T12:17:43.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:42.841645+0000 mon.smithi170 (mon.0) 799 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi172.tjined", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-03-24T12:17:43.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:42.853035+0000 mon.smithi170 (mon.0) 800 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:43.479 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:43 smithi170 bash[18738]: audit 2024-03-24T12:17:42.856871+0000 mon.smithi170 (mon.0) 801 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:43.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:41.791081+0000 mgr.smithi170.xkyvyq (mgr.14199) 247 : audit 0 from='client.14494 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.170/16", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:17:43.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:41.792575+0000 mon.smithi170 (mon.0) 788 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-03-24T12:17:43.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:42.260299+0000 mon.smithi170 (mon.0) 789 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-03-24T12:17:43.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: cluster 2024-03-24T12:17:42.265341+0000 mon.smithi170 (mon.0) 790 : cluster 0 osdmap e44: 8 total, 8 up, 8 in 2024-03-24T12:17:43.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:42.275360+0000 mon.smithi170 (mon.0) 791 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-03-24T12:17:43.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:42.782781+0000 mon.smithi170 (mon.0) 792 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:43.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:42.793156+0000 mon.smithi170 (mon.0) 793 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:43.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:42.795613+0000 mon.smithi170 (mon.0) 794 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:43.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:42.797153+0000 mon.smithi170 (mon.0) 795 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:17:43.666 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:42.806283+0000 mon.smithi170 (mon.0) 796 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:43.666 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:42.815072+0000 mon.smithi170 (mon.0) 797 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:17:43.666 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:42.837937+0000 mon.smithi170 (mon.0) 798 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi172.tjined", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-03-24T12:17:43.666 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:42.841645+0000 mon.smithi170 (mon.0) 799 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi172.tjined", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-03-24T12:17:43.666 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:42.853035+0000 mon.smithi170 (mon.0) 800 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:43.666 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:43 smithi172 bash[23876]: audit 2024-03-24T12:17:42.856871+0000 mon.smithi170 (mon.0) 801 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:44.073 INFO:teuthology.run_tasks:Running task vip.exec... 2024-03-24T12:17:44.087 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:17:44.087 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-03-24T12:17:44.100 INFO:teuthology.orchestra.run.smithi170.stderr:+ dnf install -y python3-boto3 2024-03-24T12:17:44.100 INFO:teuthology.orchestra.run.smithi170.stderr:bash: line 1: dnf: command not found 2024-03-24T12:17:44.100 INFO:teuthology.orchestra.run.smithi170.stderr:+ apt install -y python3-boto3 2024-03-24T12:17:44.105 INFO:teuthology.orchestra.run.smithi170.stderr: 2024-03-24T12:17:44.105 INFO:teuthology.orchestra.run.smithi170.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-03-24T12:17:44.105 INFO:teuthology.orchestra.run.smithi170.stderr: 2024-03-24T12:17:44.153 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-03-24T12:17:44.344 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:44 smithi172 bash[23876]: cephadm 2024-03-24T12:17:42.859014+0000 mgr.smithi170.xkyvyq (mgr.14199) 248 : cephadm 1 Deploying daemon rgw.foorgw.smithi172.tjined on smithi172 2024-03-24T12:17:44.344 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:44 smithi172 bash[23876]: cluster 2024-03-24T12:17:42.974627+0000 mgr.smithi170.xkyvyq (mgr.14199) 249 : cluster 0 pgmap v212: 33 pgs: 32 unknown, 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:44.344 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:44 smithi172 bash[23876]: audit 2024-03-24T12:17:43.263285+0000 mon.smithi170 (mon.0) 802 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-03-24T12:17:44.344 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:44 smithi172 bash[23876]: cluster 2024-03-24T12:17:43.269337+0000 mon.smithi170 (mon.0) 803 : cluster 0 osdmap e45: 8 total, 8 up, 8 in 2024-03-24T12:17:44.344 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:44 smithi172 bash[23876]: cephadm 2024-03-24T12:17:43.316153+0000 mgr.smithi170.xkyvyq (mgr.14199) 250 : cephadm 1 Saving service nfs.foo spec with placement count:1 2024-03-24T12:17:44.344 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:44 smithi172 bash[23876]: audit 2024-03-24T12:17:43.321958+0000 mon.smithi170 (mon.0) 804 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:44.344 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:44 smithi172 bash[23876]: cephadm 2024-03-24T12:17:43.323981+0000 mgr.smithi170.xkyvyq (mgr.14199) 251 : cephadm 1 Saving service ingress.nfs.foo spec with placement count:2 2024-03-24T12:17:44.344 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:44 smithi172 bash[23876]: audit 2024-03-24T12:17:43.328942+0000 mon.smithi170 (mon.0) 805 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:44.345 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:44 smithi172 bash[23876]: cluster 2024-03-24T12:17:43.849831+0000 mon.smithi170 (mon.0) 806 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-24T12:17:44.345 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:44 smithi172 bash[23876]: audit 2024-03-24T12:17:43.923609+0000 mon.smithi170 (mon.0) 807 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:44.345 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:44 smithi172 bash[23876]: audit 2024-03-24T12:17:43.925687+0000 mon.smithi170 (mon.0) 808 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:17:44.357 INFO:teuthology.orchestra.run.smithi170.stdout:Building dependency tree... 2024-03-24T12:17:44.358 INFO:teuthology.orchestra.run.smithi170.stdout:Reading state information... 2024-03-24T12:17:44.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:44 smithi170 bash[18738]: cephadm 2024-03-24T12:17:42.859014+0000 mgr.smithi170.xkyvyq (mgr.14199) 248 : cephadm 1 Deploying daemon rgw.foorgw.smithi172.tjined on smithi172 2024-03-24T12:17:44.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:44 smithi170 bash[18738]: cluster 2024-03-24T12:17:42.974627+0000 mgr.smithi170.xkyvyq (mgr.14199) 249 : cluster 0 pgmap v212: 33 pgs: 32 unknown, 1 active+clean; 577 KiB data, 232 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:44.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:44 smithi170 bash[18738]: audit 2024-03-24T12:17:43.263285+0000 mon.smithi170 (mon.0) 802 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-03-24T12:17:44.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:44 smithi170 bash[18738]: cluster 2024-03-24T12:17:43.269337+0000 mon.smithi170 (mon.0) 803 : cluster 0 osdmap e45: 8 total, 8 up, 8 in 2024-03-24T12:17:44.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:44 smithi170 bash[18738]: cephadm 2024-03-24T12:17:43.316153+0000 mgr.smithi170.xkyvyq (mgr.14199) 250 : cephadm 1 Saving service nfs.foo spec with placement count:1 2024-03-24T12:17:44.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:44 smithi170 bash[18738]: audit 2024-03-24T12:17:43.321958+0000 mon.smithi170 (mon.0) 804 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:44.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:44 smithi170 bash[18738]: cephadm 2024-03-24T12:17:43.323981+0000 mgr.smithi170.xkyvyq (mgr.14199) 251 : cephadm 1 Saving service ingress.nfs.foo spec with placement count:2 2024-03-24T12:17:44.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:44 smithi170 bash[18738]: audit 2024-03-24T12:17:43.328942+0000 mon.smithi170 (mon.0) 805 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:44.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:44 smithi170 bash[18738]: cluster 2024-03-24T12:17:43.849831+0000 mon.smithi170 (mon.0) 806 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-24T12:17:44.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:44 smithi170 bash[18738]: audit 2024-03-24T12:17:43.923609+0000 mon.smithi170 (mon.0) 807 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:44.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:44 smithi170 bash[18738]: audit 2024-03-24T12:17:43.925687+0000 mon.smithi170 (mon.0) 808 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:17:44.539 INFO:teuthology.orchestra.run.smithi170.stdout:The following packages were automatically installed and are no longer required: 2024-03-24T12:17:44.539 INFO:teuthology.orchestra.run.smithi170.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-24T12:17:44.539 INFO:teuthology.orchestra.run.smithi170.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-24T12:17:44.539 INFO:teuthology.orchestra.run.smithi170.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-24T12:17:44.540 INFO:teuthology.orchestra.run.smithi170.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-24T12:17:44.540 INFO:teuthology.orchestra.run.smithi170.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-24T12:17:44.540 INFO:teuthology.orchestra.run.smithi170.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-24T12:17:44.541 INFO:teuthology.orchestra.run.smithi170.stdout:The following additional packages will be installed: 2024-03-24T12:17:44.541 INFO:teuthology.orchestra.run.smithi170.stdout: python3-botocore python3-certifi python3-idna python3-jmespath 2024-03-24T12:17:44.542 INFO:teuthology.orchestra.run.smithi170.stdout: python3-requests python3-s3transfer python3-urllib3 2024-03-24T12:17:44.543 INFO:teuthology.orchestra.run.smithi170.stdout:Suggested packages: 2024-03-24T12:17:44.543 INFO:teuthology.orchestra.run.smithi170.stdout: python3-openssl python3-socks python-requests-doc 2024-03-24T12:17:44.575 INFO:teuthology.orchestra.run.smithi170.stdout:The following NEW packages will be installed: 2024-03-24T12:17:44.575 INFO:teuthology.orchestra.run.smithi170.stdout: python3-boto3 python3-botocore python3-certifi python3-idna python3-jmespath 2024-03-24T12:17:44.575 INFO:teuthology.orchestra.run.smithi170.stdout: python3-requests python3-s3transfer python3-urllib3 2024-03-24T12:17:44.651 INFO:teuthology.orchestra.run.smithi170.stdout:0 upgraded, 8 newly installed, 0 to remove and 285 not upgraded. 2024-03-24T12:17:44.652 INFO:teuthology.orchestra.run.smithi170.stdout:Need to get 4,996 kB of archives. 2024-03-24T12:17:44.652 INFO:teuthology.orchestra.run.smithi170.stdout:After this operation, 66.8 MB of additional disk space will be used. 2024-03-24T12:17:44.652 INFO:teuthology.orchestra.run.smithi170.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jmespath all 0.10.0-1 [21.7 kB] 2024-03-24T12:17:44.720 INFO:teuthology.orchestra.run.smithi170.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-03-24T12:17:44.766 INFO:teuthology.orchestra.run.smithi170.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-03-24T12:17:44.792 INFO:teuthology.orchestra.run.smithi170.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-idna all 3.3-1 [49.3 kB] 2024-03-24T12:17:44.797 INFO:teuthology.orchestra.run.smithi170.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-03-24T12:17:44.802 INFO:teuthology.orchestra.run.smithi170.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-botocore all 1.23.34+repack-1 [4,508 kB] 2024-03-24T12:17:44.899 INFO:teuthology.orchestra.run.smithi170.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-s3transfer all 0.5.0-1 [51.5 kB] 2024-03-24T12:17:44.899 INFO:teuthology.orchestra.run.smithi170.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-boto3 all 1.20.34+dfsg-1 [68.0 kB] 2024-03-24T12:17:45.014 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:44 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:17:45.191 INFO:teuthology.orchestra.run.smithi170.stderr:debconf: unable to initialize frontend: Dialog 2024-03-24T12:17:45.191 INFO:teuthology.orchestra.run.smithi170.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-03-24T12:17:45.191 INFO:teuthology.orchestra.run.smithi170.stderr:debconf: falling back to frontend: Readline 2024-03-24T12:17:45.207 INFO:teuthology.orchestra.run.smithi170.stderr:debconf: unable to initialize frontend: Readline 2024-03-24T12:17:45.207 INFO:teuthology.orchestra.run.smithi170.stderr:debconf: (This frontend requires a controlling tty.) 2024-03-24T12:17:45.208 INFO:teuthology.orchestra.run.smithi170.stderr:debconf: falling back to frontend: Teletype 2024-03-24T12:17:45.211 INFO:teuthology.orchestra.run.smithi170.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-03-24T12:17:45.245 INFO:teuthology.orchestra.run.smithi170.stdout:Fetched 4,996 kB in 0s (15.8 MB/s) 2024-03-24T12:17:45.265 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:45 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:17:45.390 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package python3-jmespath. 2024-03-24T12:17:45.489 INFO:teuthology.orchestra.run.smithi170.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 ... 165997 files and directories currently installed.) 2024-03-24T12:17:45.493 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../0-python3-jmespath_0.10.0-1_all.deb ... 2024-03-24T12:17:45.530 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking python3-jmespath (0.10.0-1) ... 2024-03-24T12:17:45.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:45 smithi172 bash[23876]: cluster 2024-03-24T12:17:44.270875+0000 mon.smithi170 (mon.0) 809 : cluster 0 osdmap e46: 8 total, 8 up, 8 in 2024-03-24T12:17:45.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:45 smithi170 bash[18738]: cluster 2024-03-24T12:17:44.270875+0000 mon.smithi170 (mon.0) 809 : cluster 0 osdmap e46: 8 total, 8 up, 8 in 2024-03-24T12:17:45.888 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package python3-urllib3. 2024-03-24T12:17:45.912 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../1-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-03-24T12:17:46.363 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-03-24T12:17:46.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:46 smithi172 bash[23876]: cluster 2024-03-24T12:17:44.975251+0000 mgr.smithi170.xkyvyq (mgr.14199) 252 : cluster 0 pgmap v215: 33 pgs: 7 creating+peering, 13 active+clean, 13 unknown; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:46.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:46 smithi172 bash[23876]: cluster 2024-03-24T12:17:45.272379+0000 mon.smithi170 (mon.0) 810 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-24T12:17:46.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:46 smithi172 bash[23876]: cluster 2024-03-24T12:17:45.272439+0000 mon.smithi170 (mon.0) 811 : cluster 1 Cluster is now healthy 2024-03-24T12:17:46.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:46 smithi172 bash[23876]: cluster 2024-03-24T12:17:45.289785+0000 mon.smithi170 (mon.0) 812 : cluster 0 mgrmap e20: smithi170.xkyvyq(active, since 6m), standbys: smithi172.uznkeq 2024-03-24T12:17:46.918 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:46 smithi172 bash[23876]: audit 2024-03-24T12:17:45.317157+0000 mon.smithi170 (mon.0) 813 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:46.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:46 smithi172 bash[23876]: audit 2024-03-24T12:17:45.322687+0000 mon.smithi170 (mon.0) 814 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:46.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:46 smithi172 bash[23876]: audit 2024-03-24T12:17:45.349743+0000 mon.smithi170 (mon.0) 815 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:46.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:46 smithi172 bash[23876]: audit 2024-03-24T12:17:45.351578+0000 mon.smithi170 (mon.0) 816 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi170.jipxas", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-03-24T12:17:46.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:46 smithi172 bash[23876]: audit 2024-03-24T12:17:45.354486+0000 mon.smithi170 (mon.0) 817 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi170.jipxas", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-03-24T12:17:46.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:46 smithi172 bash[23876]: audit 2024-03-24T12:17:45.364374+0000 mon.smithi170 (mon.0) 818 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:46.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:46 smithi172 bash[23876]: audit 2024-03-24T12:17:45.368286+0000 mon.smithi170 (mon.0) 819 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:46.919 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:46 smithi172 bash[23876]: cephadm 2024-03-24T12:17:45.370089+0000 mgr.smithi170.xkyvyq (mgr.14199) 253 : cephadm 1 Deploying daemon rgw.foorgw.smithi170.jipxas on smithi170 2024-03-24T12:17:46.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:46 smithi170 bash[18738]: cluster 2024-03-24T12:17:44.975251+0000 mgr.smithi170.xkyvyq (mgr.14199) 252 : cluster 0 pgmap v215: 33 pgs: 7 creating+peering, 13 active+clean, 13 unknown; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:17:46.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:46 smithi170 bash[18738]: cluster 2024-03-24T12:17:45.272379+0000 mon.smithi170 (mon.0) 810 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-24T12:17:46.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:46 smithi170 bash[18738]: cluster 2024-03-24T12:17:45.272439+0000 mon.smithi170 (mon.0) 811 : cluster 1 Cluster is now healthy 2024-03-24T12:17:46.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:46 smithi170 bash[18738]: cluster 2024-03-24T12:17:45.289785+0000 mon.smithi170 (mon.0) 812 : cluster 0 mgrmap e20: smithi170.xkyvyq(active, since 6m), standbys: smithi172.uznkeq 2024-03-24T12:17:46.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:46 smithi170 bash[18738]: audit 2024-03-24T12:17:45.317157+0000 mon.smithi170 (mon.0) 813 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:46.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:46 smithi170 bash[18738]: audit 2024-03-24T12:17:45.322687+0000 mon.smithi170 (mon.0) 814 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:46.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:46 smithi170 bash[18738]: audit 2024-03-24T12:17:45.349743+0000 mon.smithi170 (mon.0) 815 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:46.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:46 smithi170 bash[18738]: audit 2024-03-24T12:17:45.351578+0000 mon.smithi170 (mon.0) 816 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi170.jipxas", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-03-24T12:17:46.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:46 smithi170 bash[18738]: audit 2024-03-24T12:17:45.354486+0000 mon.smithi170 (mon.0) 817 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi170.jipxas", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-03-24T12:17:46.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:46 smithi170 bash[18738]: audit 2024-03-24T12:17:45.364374+0000 mon.smithi170 (mon.0) 818 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:46.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:46 smithi170 bash[18738]: audit 2024-03-24T12:17:45.368286+0000 mon.smithi170 (mon.0) 819 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:46.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:46 smithi170 bash[18738]: cephadm 2024-03-24T12:17:45.370089+0000 mgr.smithi170.xkyvyq (mgr.14199) 253 : cephadm 1 Deploying daemon rgw.foorgw.smithi170.jipxas on smithi170 2024-03-24T12:17:47.200 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package python3-certifi. 2024-03-24T12:17:47.212 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../2-python3-certifi_2020.6.20-1_all.deb ... 2024-03-24T12:17:47.268 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-03-24T12:17:47.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:47 smithi170 bash[18738]: cluster 2024-03-24T12:17:46.664813+0000 mon.smithi170 (mon.0) 820 : cluster 0 osdmap e47: 8 total, 8 up, 8 in 2024-03-24T12:17:47.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:47 smithi170 bash[18738]: audit 2024-03-24T12:17:46.669789+0000 mon.smithi172 (mon.1) 21 : audit 1 from='client.? 172.21.15.172:0/2284893099' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-03-24T12:17:47.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:47 smithi170 bash[18738]: audit 2024-03-24T12:17:46.670707+0000 mon.smithi170 (mon.0) 821 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-03-24T12:17:47.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:47 smithi170 bash[18738]: cluster 2024-03-24T12:17:46.975966+0000 mgr.smithi170.xkyvyq (mgr.14199) 254 : cluster 0 pgmap v217: 65 pgs: 32 unknown, 7 creating+peering, 26 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-03-24T12:17:48.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:47 smithi172 bash[23876]: cluster 2024-03-24T12:17:46.664813+0000 mon.smithi170 (mon.0) 820 : cluster 0 osdmap e47: 8 total, 8 up, 8 in 2024-03-24T12:17:48.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:47 smithi172 bash[23876]: audit 2024-03-24T12:17:46.669789+0000 mon.smithi172 (mon.1) 21 : audit 1 from='client.? 172.21.15.172:0/2284893099' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-03-24T12:17:48.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:47 smithi172 bash[23876]: audit 2024-03-24T12:17:46.670707+0000 mon.smithi170 (mon.0) 821 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-03-24T12:17:48.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:47 smithi172 bash[23876]: cluster 2024-03-24T12:17:46.975966+0000 mgr.smithi170.xkyvyq (mgr.14199) 254 : cluster 0 pgmap v217: 65 pgs: 32 unknown, 7 creating+peering, 26 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-03-24T12:17:48.574 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package python3-idna. 2024-03-24T12:17:48.601 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../3-python3-idna_3.3-1_all.deb ... 2024-03-24T12:17:48.649 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking python3-idna (3.3-1) ... 2024-03-24T12:17:48.905 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:48 smithi170 bash[18738]: cluster 2024-03-24T12:17:47.659860+0000 mon.smithi170 (mon.0) 822 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-24T12:17:48.905 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:48 smithi170 bash[18738]: audit 2024-03-24T12:17:47.668598+0000 mon.smithi170 (mon.0) 823 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-03-24T12:17:48.905 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:48 smithi170 bash[18738]: cluster 2024-03-24T12:17:47.676636+0000 mon.smithi170 (mon.0) 824 : cluster 0 osdmap e48: 8 total, 8 up, 8 in 2024-03-24T12:17:48.905 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:48 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:17:48.953 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package python3-requests. 2024-03-24T12:17:48.969 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../4-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-03-24T12:17:49.011 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-03-24T12:17:49.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:48 smithi172 bash[23876]: cluster 2024-03-24T12:17:47.659860+0000 mon.smithi170 (mon.0) 822 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-24T12:17:49.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:48 smithi172 bash[23876]: audit 2024-03-24T12:17:47.668598+0000 mon.smithi170 (mon.0) 823 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-03-24T12:17:49.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:48 smithi172 bash[23876]: cluster 2024-03-24T12:17:47.676636+0000 mon.smithi170 (mon.0) 824 : cluster 0 osdmap e48: 8 total, 8 up, 8 in 2024-03-24T12:17:49.185 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:49 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:17:49.635 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package python3-botocore. 2024-03-24T12:17:49.661 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../5-python3-botocore_1.23.34+repack-1_all.deb ... 2024-03-24T12:17:49.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:49 smithi170 bash[18738]: cluster 2024-03-24T12:17:48.680430+0000 mon.smithi170 (mon.0) 825 : cluster 0 osdmap e49: 8 total, 8 up, 8 in 2024-03-24T12:17:49.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:49 smithi170 bash[18738]: audit 2024-03-24T12:17:48.687369+0000 mon.smithi172 (mon.1) 22 : audit 1 from='client.? 172.21.15.172:0/2316306848' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-03-24T12:17:49.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:49 smithi170 bash[18738]: audit 2024-03-24T12:17:48.687875+0000 mon.smithi170 (mon.0) 826 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-03-24T12:17:49.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:49 smithi170 bash[18738]: cluster 2024-03-24T12:17:48.976538+0000 mgr.smithi170.xkyvyq (mgr.14199) 255 : cluster 0 pgmap v220: 97 pgs: 52 unknown, 45 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 217 B/s rd, 652 B/s wr, 1 op/s 2024-03-24T12:17:49.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:49 smithi170 bash[18738]: audit 2024-03-24T12:17:49.232525+0000 mon.smithi170 (mon.0) 827 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:49.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:49 smithi170 bash[18738]: audit 2024-03-24T12:17:49.238775+0000 mon.smithi170 (mon.0) 828 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:49.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:49 smithi170 bash[18738]: audit 2024-03-24T12:17:49.246114+0000 mon.smithi170 (mon.0) 829 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:49.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:49 smithi170 bash[18738]: cephadm 2024-03-24T12:17:49.246693+0000 mgr.smithi170.xkyvyq (mgr.14199) 256 : cephadm 1 Saving service rgw.foorgw spec with placement count:2 2024-03-24T12:17:49.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:49 smithi170 bash[18738]: audit 2024-03-24T12:17:49.250638+0000 mon.smithi170 (mon.0) 830 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:49.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:49 smithi170 bash[18738]: audit 2024-03-24T12:17:49.254991+0000 mon.smithi170 (mon.0) 831 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:49.970 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:49 smithi170 bash[18738]: audit 2024-03-24T12:17:49.287157+0000 mon.smithi170 (mon.0) 832 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:17:50.118 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking python3-botocore (1.23.34+repack-1) ... 2024-03-24T12:17:50.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:49 smithi172 bash[23876]: cluster 2024-03-24T12:17:48.680430+0000 mon.smithi170 (mon.0) 825 : cluster 0 osdmap e49: 8 total, 8 up, 8 in 2024-03-24T12:17:50.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:49 smithi172 bash[23876]: audit 2024-03-24T12:17:48.687369+0000 mon.smithi172 (mon.1) 22 : audit 1 from='client.? 172.21.15.172:0/2316306848' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-03-24T12:17:50.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:49 smithi172 bash[23876]: audit 2024-03-24T12:17:48.687875+0000 mon.smithi170 (mon.0) 826 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-03-24T12:17:50.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:49 smithi172 bash[23876]: cluster 2024-03-24T12:17:48.976538+0000 mgr.smithi170.xkyvyq (mgr.14199) 255 : cluster 0 pgmap v220: 97 pgs: 52 unknown, 45 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 217 B/s rd, 652 B/s wr, 1 op/s 2024-03-24T12:17:50.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:49 smithi172 bash[23876]: audit 2024-03-24T12:17:49.232525+0000 mon.smithi170 (mon.0) 827 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:50.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:49 smithi172 bash[23876]: audit 2024-03-24T12:17:49.238775+0000 mon.smithi170 (mon.0) 828 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:50.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:49 smithi172 bash[23876]: audit 2024-03-24T12:17:49.246114+0000 mon.smithi170 (mon.0) 829 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:50.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:49 smithi172 bash[23876]: cephadm 2024-03-24T12:17:49.246693+0000 mgr.smithi170.xkyvyq (mgr.14199) 256 : cephadm 1 Saving service rgw.foorgw spec with placement count:2 2024-03-24T12:17:50.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:49 smithi172 bash[23876]: audit 2024-03-24T12:17:49.250638+0000 mon.smithi170 (mon.0) 830 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:50.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:49 smithi172 bash[23876]: audit 2024-03-24T12:17:49.254991+0000 mon.smithi170 (mon.0) 831 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:50.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:49 smithi172 bash[23876]: audit 2024-03-24T12:17:49.287157+0000 mon.smithi170 (mon.0) 832 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:17:50.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:50 smithi170 bash[18738]: audit 2024-03-24T12:17:49.682066+0000 mon.smithi170 (mon.0) 833 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-03-24T12:17:50.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:50 smithi170 bash[18738]: cluster 2024-03-24T12:17:49.686126+0000 mon.smithi170 (mon.0) 834 : cluster 0 osdmap e50: 8 total, 8 up, 8 in 2024-03-24T12:17:51.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:50 smithi172 bash[23876]: audit 2024-03-24T12:17:49.682066+0000 mon.smithi170 (mon.0) 833 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-03-24T12:17:51.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:50 smithi172 bash[23876]: cluster 2024-03-24T12:17:49.686126+0000 mon.smithi170 (mon.0) 834 : cluster 0 osdmap e50: 8 total, 8 up, 8 in 2024-03-24T12:17:51.955 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:51 smithi170 bash[18738]: cluster 2024-03-24T12:17:50.700109+0000 mon.smithi170 (mon.0) 835 : cluster 0 osdmap e51: 8 total, 8 up, 8 in 2024-03-24T12:17:51.955 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:51 smithi170 bash[18738]: audit 2024-03-24T12:17:50.705753+0000 mon.smithi172 (mon.1) 23 : audit 1 from='client.? 172.21.15.172:0/2316306848' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-03-24T12:17:51.955 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:51 smithi170 bash[18738]: audit 2024-03-24T12:17:50.708060+0000 mon.smithi170 (mon.0) 836 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-03-24T12:17:51.955 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:51 smithi170 bash[18738]: cluster 2024-03-24T12:17:50.977280+0000 mgr.smithi170.xkyvyq (mgr.14199) 257 : cluster 0 pgmap v223: 129 pgs: 7 creating+peering, 46 unknown, 76 active+clean; 578 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.5 KiB/s wr, 3 op/s 2024-03-24T12:17:52.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:51 smithi172 bash[23876]: cluster 2024-03-24T12:17:50.700109+0000 mon.smithi170 (mon.0) 835 : cluster 0 osdmap e51: 8 total, 8 up, 8 in 2024-03-24T12:17:52.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:51 smithi172 bash[23876]: audit 2024-03-24T12:17:50.705753+0000 mon.smithi172 (mon.1) 23 : audit 1 from='client.? 172.21.15.172:0/2316306848' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-03-24T12:17:52.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:51 smithi172 bash[23876]: audit 2024-03-24T12:17:50.708060+0000 mon.smithi170 (mon.0) 836 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-03-24T12:17:52.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:51 smithi172 bash[23876]: cluster 2024-03-24T12:17:50.977280+0000 mgr.smithi170.xkyvyq (mgr.14199) 257 : cluster 0 pgmap v223: 129 pgs: 7 creating+peering, 46 unknown, 76 active+clean; 578 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.5 KiB/s wr, 3 op/s 2024-03-24T12:17:52.409 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package python3-s3transfer. 2024-03-24T12:17:52.421 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../6-python3-s3transfer_0.5.0-1_all.deb ... 2024-03-24T12:17:52.450 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking python3-s3transfer (0.5.0-1) ... 2024-03-24T12:17:52.754 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package python3-boto3. 2024-03-24T12:17:52.780 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../7-python3-boto3_1.20.34+dfsg-1_all.deb ... 2024-03-24T12:17:52.820 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking python3-boto3 (1.20.34+dfsg-1) ... 2024-03-24T12:17:53.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:52 smithi172 bash[23876]: audit 2024-03-24T12:17:51.702151+0000 mon.smithi170 (mon.0) 837 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-03-24T12:17:53.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:52 smithi172 bash[23876]: cluster 2024-03-24T12:17:51.710629+0000 mon.smithi170 (mon.0) 838 : cluster 0 osdmap e52: 8 total, 8 up, 8 in 2024-03-24T12:17:53.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:52 smithi172 bash[23876]: audit 2024-03-24T12:17:52.295527+0000 mon.smithi170 (mon.0) 839 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:53.166 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-03-24T12:17:53.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:52 smithi170 bash[18738]: audit 2024-03-24T12:17:51.702151+0000 mon.smithi170 (mon.0) 837 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-03-24T12:17:53.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:52 smithi170 bash[18738]: cluster 2024-03-24T12:17:51.710629+0000 mon.smithi170 (mon.0) 838 : cluster 0 osdmap e52: 8 total, 8 up, 8 in 2024-03-24T12:17:53.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:52 smithi170 bash[18738]: audit 2024-03-24T12:17:52.295527+0000 mon.smithi170 (mon.0) 839 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:53.427 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up python3-jmespath (0.10.0-1) ... 2024-03-24T12:17:53.687 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up python3-idna (3.3-1) ... 2024-03-24T12:17:54.014 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-03-24T12:17:54.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:53 smithi172 bash[23876]: cluster 2024-03-24T12:17:52.804739+0000 mon.smithi170 (mon.0) 840 : cluster 0 osdmap e53: 8 total, 8 up, 8 in 2024-03-24T12:17:54.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:53 smithi172 bash[23876]: audit 2024-03-24T12:17:52.815779+0000 mon.smithi172 (mon.1) 24 : audit 1 from='client.? 172.21.15.172:0/2316306848' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-24T12:17:54.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:53 smithi172 bash[23876]: audit 2024-03-24T12:17:52.820148+0000 mon.smithi170 (mon.0) 841 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-24T12:17:54.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:53 smithi172 bash[23876]: audit 2024-03-24T12:17:52.821644+0000 mon.smithi172 (mon.1) 25 : audit 1 from='client.? 172.21.15.170:0/880413434' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-24T12:17:54.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:53 smithi172 bash[23876]: audit 2024-03-24T12:17:52.822426+0000 mon.smithi170 (mon.0) 842 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-24T12:17:54.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:53 smithi172 bash[23876]: cluster 2024-03-24T12:17:52.977994+0000 mgr.smithi170.xkyvyq (mgr.14199) 258 : cluster 0 pgmap v226: 161 pgs: 7 creating+peering, 78 unknown, 76 active+clean; 578 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 2 op/s 2024-03-24T12:17:54.218 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:53 smithi170 bash[18738]: cluster 2024-03-24T12:17:52.804739+0000 mon.smithi170 (mon.0) 840 : cluster 0 osdmap e53: 8 total, 8 up, 8 in 2024-03-24T12:17:54.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:53 smithi170 bash[18738]: audit 2024-03-24T12:17:52.815779+0000 mon.smithi172 (mon.1) 24 : audit 1 from='client.? 172.21.15.172:0/2316306848' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-24T12:17:54.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:53 smithi170 bash[18738]: audit 2024-03-24T12:17:52.820148+0000 mon.smithi170 (mon.0) 841 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-24T12:17:54.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:53 smithi170 bash[18738]: audit 2024-03-24T12:17:52.821644+0000 mon.smithi172 (mon.1) 25 : audit 1 from='client.? 172.21.15.170:0/880413434' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-24T12:17:54.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:53 smithi170 bash[18738]: audit 2024-03-24T12:17:52.822426+0000 mon.smithi170 (mon.0) 842 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-03-24T12:17:54.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:53 smithi170 bash[18738]: cluster 2024-03-24T12:17:52.977994+0000 mgr.smithi170.xkyvyq (mgr.14199) 258 : cluster 0 pgmap v226: 161 pgs: 7 creating+peering, 78 unknown, 76 active+clean; 578 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 2 op/s 2024-03-24T12:17:54.307 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-03-24T12:17:54.584 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up python3-botocore (1.23.34+repack-1) ... 2024-03-24T12:17:55.019 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up python3-s3transfer (0.5.0-1) ... 2024-03-24T12:17:55.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:54 smithi172 bash[23876]: audit 2024-03-24T12:17:53.806383+0000 mon.smithi170 (mon.0) 843 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-03-24T12:17:55.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:54 smithi172 bash[23876]: audit 2024-03-24T12:17:53.806498+0000 mon.smithi170 (mon.0) 844 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-03-24T12:17:55.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:54 smithi172 bash[23876]: cluster 2024-03-24T12:17:53.812342+0000 mon.smithi170 (mon.0) 845 : cluster 0 osdmap e54: 8 total, 8 up, 8 in 2024-03-24T12:17:55.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:54 smithi172 bash[23876]: audit 2024-03-24T12:17:53.819136+0000 mon.smithi172 (mon.1) 26 : audit 1 from='client.? 172.21.15.172:0/2316306848' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-24T12:17:55.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:54 smithi172 bash[23876]: audit 2024-03-24T12:17:53.821811+0000 mon.smithi170 (mon.0) 846 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-24T12:17:55.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:54 smithi172 bash[23876]: audit 2024-03-24T12:17:53.831096+0000 mon.smithi172 (mon.1) 27 : audit 1 from='client.? 172.21.15.170:0/880413434' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-24T12:17:55.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:54 smithi172 bash[23876]: audit 2024-03-24T12:17:53.831644+0000 mon.smithi170 (mon.0) 847 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-24T12:17:55.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:54 smithi170 bash[18738]: audit 2024-03-24T12:17:53.806383+0000 mon.smithi170 (mon.0) 843 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-03-24T12:17:55.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:54 smithi170 bash[18738]: audit 2024-03-24T12:17:53.806498+0000 mon.smithi170 (mon.0) 844 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-03-24T12:17:55.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:54 smithi170 bash[18738]: cluster 2024-03-24T12:17:53.812342+0000 mon.smithi170 (mon.0) 845 : cluster 0 osdmap e54: 8 total, 8 up, 8 in 2024-03-24T12:17:55.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:54 smithi170 bash[18738]: audit 2024-03-24T12:17:53.819136+0000 mon.smithi172 (mon.1) 26 : audit 1 from='client.? 172.21.15.172:0/2316306848' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-24T12:17:55.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:54 smithi170 bash[18738]: audit 2024-03-24T12:17:53.821811+0000 mon.smithi170 (mon.0) 846 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-24T12:17:55.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:54 smithi170 bash[18738]: audit 2024-03-24T12:17:53.831096+0000 mon.smithi172 (mon.1) 27 : audit 1 from='client.? 172.21.15.170:0/880413434' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-24T12:17:55.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:54 smithi170 bash[18738]: audit 2024-03-24T12:17:53.831644+0000 mon.smithi170 (mon.0) 847 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-24T12:17:55.304 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up python3-boto3 (1.20.34+dfsg-1) ... 2024-03-24T12:17:55.863 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c '/home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json' 2024-03-24T12:17:55.917 INFO:teuthology.orchestra.run.smithi170.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-03-24T12:17:56.136 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:55 smithi170 bash[18738]: audit 2024-03-24T12:17:54.807855+0000 mon.smithi170 (mon.0) 848 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-03-24T12:17:56.137 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:55 smithi170 bash[18738]: audit 2024-03-24T12:17:54.807997+0000 mon.smithi170 (mon.0) 849 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-03-24T12:17:56.137 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:55 smithi170 bash[18738]: cluster 2024-03-24T12:17:54.811600+0000 mon.smithi170 (mon.0) 850 : cluster 0 osdmap e55: 8 total, 8 up, 8 in 2024-03-24T12:17:56.137 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:55 smithi170 bash[18738]: audit 2024-03-24T12:17:54.874586+0000 mon.smithi170 (mon.0) 851 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:56.137 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:55 smithi170 bash[18738]: audit 2024-03-24T12:17:54.883599+0000 mon.smithi170 (mon.0) 852 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:56.137 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:55 smithi170 bash[18738]: cluster 2024-03-24T12:17:54.978402+0000 mgr.smithi170.xkyvyq (mgr.14199) 259 : cluster 0 pgmap v229: 161 pgs: 10 creating+peering, 18 unknown, 133 active+clean; 578 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 1 op/s 2024-03-24T12:17:56.137 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:55 smithi170 bash[18738]: audit 2024-03-24T12:17:55.422698+0000 mon.smithi170 (mon.0) 853 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:56.137 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:55 smithi170 bash[18738]: audit 2024-03-24T12:17:55.428422+0000 mon.smithi170 (mon.0) 854 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:56.137 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:55 smithi170 bash[18738]: audit 2024-03-24T12:17:55.429561+0000 mon.smithi170 (mon.0) 855 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:56.137 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:55 smithi170 bash[18738]: audit 2024-03-24T12:17:55.430261+0000 mon.smithi170 (mon.0) 856 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:17:56.137 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:55 smithi170 bash[18738]: cephadm 2024-03-24T12:17:55.434119+0000 mgr.smithi170.xkyvyq (mgr.14199) 260 : cephadm 1 Checking dashboard <-> RGW credentials 2024-03-24T12:17:56.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:55 smithi172 bash[23876]: audit 2024-03-24T12:17:54.807855+0000 mon.smithi170 (mon.0) 848 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi172.tjined' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-03-24T12:17:56.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:55 smithi172 bash[23876]: audit 2024-03-24T12:17:54.807997+0000 mon.smithi170 (mon.0) 849 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-03-24T12:17:56.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:55 smithi172 bash[23876]: cluster 2024-03-24T12:17:54.811600+0000 mon.smithi170 (mon.0) 850 : cluster 0 osdmap e55: 8 total, 8 up, 8 in 2024-03-24T12:17:56.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:55 smithi172 bash[23876]: audit 2024-03-24T12:17:54.874586+0000 mon.smithi170 (mon.0) 851 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:56.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:55 smithi172 bash[23876]: audit 2024-03-24T12:17:54.883599+0000 mon.smithi170 (mon.0) 852 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:56.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:55 smithi172 bash[23876]: cluster 2024-03-24T12:17:54.978402+0000 mgr.smithi170.xkyvyq (mgr.14199) 259 : cluster 0 pgmap v229: 161 pgs: 10 creating+peering, 18 unknown, 133 active+clean; 578 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 1 op/s 2024-03-24T12:17:56.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:55 smithi172 bash[23876]: audit 2024-03-24T12:17:55.422698+0000 mon.smithi170 (mon.0) 853 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:56.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:55 smithi172 bash[23876]: audit 2024-03-24T12:17:55.428422+0000 mon.smithi170 (mon.0) 854 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:56.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:55 smithi172 bash[23876]: audit 2024-03-24T12:17:55.429561+0000 mon.smithi170 (mon.0) 855 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:56.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:55 smithi172 bash[23876]: audit 2024-03-24T12:17:55.430261+0000 mon.smithi170 (mon.0) 856 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:17:56.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:55 smithi172 bash[23876]: cephadm 2024-03-24T12:17:55.434119+0000 mgr.smithi170.xkyvyq (mgr.14199) 260 : cephadm 1 Checking dashboard <-> RGW credentials 2024-03-24T12:17:57.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: cluster 2024-03-24T12:17:55.879333+0000 mon.smithi170 (mon.0) 857 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-24T12:17:57.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: cluster 2024-03-24T12:17:55.879360+0000 mon.smithi170 (mon.0) 858 : cluster 1 Cluster is now healthy 2024-03-24T12:17:57.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:55.887562+0000 mon.smithi170 (mon.0) 859 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:57.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:55.894513+0000 mon.smithi170 (mon.0) 860 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:57.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:55.901010+0000 mon.smithi170 (mon.0) 861 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:57.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:55.905783+0000 mon.smithi170 (mon.0) 862 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:17:57.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:55.921584+0000 mon.smithi170 (mon.0) 863 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:57.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: cephadm 2024-03-24T12:17:55.922132+0000 mgr.smithi170.xkyvyq (mgr.14199) 261 : cephadm 1 Creating key for client.nfs.foo.0.0.smithi170.unvgwc 2024-03-24T12:17:57.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:55.922687+0000 mon.smithi170 (mon.0) 864 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi170.unvgwc", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-03-24T12:17:57.165 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:55.924428+0000 mon.smithi170 (mon.0) 865 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi170.unvgwc", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: cephadm 2024-03-24T12:17:55.927202+0000 mgr.smithi170.xkyvyq (mgr.14199) 262 : cephadm 1 Ensuring nfs.foo.0 is in the ganesha grace table 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:55.927548+0000 mon.smithi170 (mon.0) 866 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:55.929194+0000 mon.smithi170 (mon.0) 867 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:55.931975+0000 mon.smithi170 (mon.0) 868 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:55.979845+0000 mon.smithi170 (mon.0) 869 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:55.981736+0000 mon.smithi170 (mon.0) 870 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: cephadm 2024-03-24T12:17:56.041444+0000 mgr.smithi170.xkyvyq (mgr.14199) 263 : cephadm 1 Rados config object exists: conf-nfs.foo 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: cephadm 2024-03-24T12:17:56.041597+0000 mgr.smithi170.xkyvyq (mgr.14199) 264 : cephadm 1 Creating key for client.nfs.foo.0.0.smithi170.unvgwc-rgw 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:56.042017+0000 mon.smithi170 (mon.0) 871 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi170.unvgwc-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:56.043866+0000 mon.smithi170 (mon.0) 872 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi170.unvgwc-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: cephadm 2024-03-24T12:17:56.047237+0000 mgr.smithi170.xkyvyq (mgr.14199) 265 : cephadm 3 Bind address in nfs.foo.0.0.smithi170.unvgwc's ganesha conf is defaulting to empty 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: audit 2024-03-24T12:17:56.051797+0000 mon.smithi170 (mon.0) 873 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:57.166 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:56 smithi172 bash[23876]: cephadm 2024-03-24T12:17:56.053017+0000 mgr.smithi170.xkyvyq (mgr.14199) 266 : cephadm 1 Deploying daemon nfs.foo.0.0.smithi170.unvgwc on smithi170 2024-03-24T12:17:57.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: cluster 2024-03-24T12:17:55.879333+0000 mon.smithi170 (mon.0) 857 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-24T12:17:57.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: cluster 2024-03-24T12:17:55.879360+0000 mon.smithi170 (mon.0) 858 : cluster 1 Cluster is now healthy 2024-03-24T12:17:57.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:55.887562+0000 mon.smithi170 (mon.0) 859 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:57.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:55.894513+0000 mon.smithi170 (mon.0) 860 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:57.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:55.901010+0000 mon.smithi170 (mon.0) 861 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:55.905783+0000 mon.smithi170 (mon.0) 862 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:55.921584+0000 mon.smithi170 (mon.0) 863 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: cephadm 2024-03-24T12:17:55.922132+0000 mgr.smithi170.xkyvyq (mgr.14199) 261 : cephadm 1 Creating key for client.nfs.foo.0.0.smithi170.unvgwc 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:55.922687+0000 mon.smithi170 (mon.0) 864 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi170.unvgwc", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:55.924428+0000 mon.smithi170 (mon.0) 865 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi170.unvgwc", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: cephadm 2024-03-24T12:17:55.927202+0000 mgr.smithi170.xkyvyq (mgr.14199) 262 : cephadm 1 Ensuring nfs.foo.0 is in the ganesha grace table 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:55.927548+0000 mon.smithi170 (mon.0) 866 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:55.929194+0000 mon.smithi170 (mon.0) 867 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:55.931975+0000 mon.smithi170 (mon.0) 868 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:55.979845+0000 mon.smithi170 (mon.0) 869 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:55.981736+0000 mon.smithi170 (mon.0) 870 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: cephadm 2024-03-24T12:17:56.041444+0000 mgr.smithi170.xkyvyq (mgr.14199) 263 : cephadm 1 Rados config object exists: conf-nfs.foo 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: cephadm 2024-03-24T12:17:56.041597+0000 mgr.smithi170.xkyvyq (mgr.14199) 264 : cephadm 1 Creating key for client.nfs.foo.0.0.smithi170.unvgwc-rgw 2024-03-24T12:17:57.220 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:56.042017+0000 mon.smithi170 (mon.0) 871 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi170.unvgwc-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-03-24T12:17:57.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:56.043866+0000 mon.smithi170 (mon.0) 872 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi170.unvgwc-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-03-24T12:17:57.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: cephadm 2024-03-24T12:17:56.047237+0000 mgr.smithi170.xkyvyq (mgr.14199) 265 : cephadm 3 Bind address in nfs.foo.0.0.smithi170.unvgwc's ganesha conf is defaulting to empty 2024-03-24T12:17:57.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: audit 2024-03-24T12:17:56.051797+0000 mon.smithi170 (mon.0) 873 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:17:57.221 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:56 smithi170 bash[18738]: cephadm 2024-03-24T12:17:56.053017+0000 mgr.smithi170.xkyvyq (mgr.14199) 266 : cephadm 1 Deploying daemon nfs.foo.0.0.smithi170.unvgwc on smithi170 2024-03-24T12:17:58.150 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:57 smithi170 bash[18738]: cluster 2024-03-24T12:17:56.979778+0000 mgr.smithi170.xkyvyq (mgr.14199) 267 : cluster 0 pgmap v230: 161 pgs: 10 creating+peering, 151 active+clean; 579 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 52 KiB/s rd, 2.1 KiB/s wr, 104 op/s 2024-03-24T12:17:58.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:57 smithi172 bash[23876]: cluster 2024-03-24T12:17:56.979778+0000 mgr.smithi170.xkyvyq (mgr.14199) 267 : cluster 0 pgmap v230: 161 pgs: 10 creating+peering, 151 active+clean; 579 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 52 KiB/s rd, 2.1 KiB/s wr, 104 op/s 2024-03-24T12:17:59.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:59 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:17:59.794 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:59 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:18:00.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:59 smithi170 bash[18738]: audit 2024-03-24T12:17:58.924994+0000 mon.smithi170 (mon.0) 874 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:00.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:59 smithi170 bash[18738]: audit 2024-03-24T12:17:58.927193+0000 mon.smithi170 (mon.0) 875 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:18:00.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:59 smithi170 bash[18738]: cluster 2024-03-24T12:17:58.983435+0000 mgr.smithi170.xkyvyq (mgr.14199) 268 : cluster 0 pgmap v231: 161 pgs: 161 active+clean; 581 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 115 KiB/s rd, 4.5 KiB/s wr, 227 op/s 2024-03-24T12:18:00.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:59 smithi170 bash[18738]: audit 2024-03-24T12:17:59.843792+0000 mon.smithi170 (mon.0) 876 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:00.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:59 smithi170 bash[18738]: audit 2024-03-24T12:17:59.850133+0000 mon.smithi170 (mon.0) 877 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:00.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:17:59 smithi170 bash[18738]: audit 2024-03-24T12:17:59.894464+0000 mon.smithi170 (mon.0) 878 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:00.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:59 smithi172 bash[23876]: audit 2024-03-24T12:17:58.924994+0000 mon.smithi170 (mon.0) 874 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:00.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:59 smithi172 bash[23876]: audit 2024-03-24T12:17:58.927193+0000 mon.smithi170 (mon.0) 875 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:18:00.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:59 smithi172 bash[23876]: cluster 2024-03-24T12:17:58.983435+0000 mgr.smithi170.xkyvyq (mgr.14199) 268 : cluster 0 pgmap v231: 161 pgs: 161 active+clean; 581 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 115 KiB/s rd, 4.5 KiB/s wr, 227 op/s 2024-03-24T12:18:00.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:59 smithi172 bash[23876]: audit 2024-03-24T12:17:59.843792+0000 mon.smithi170 (mon.0) 876 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:00.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:59 smithi172 bash[23876]: audit 2024-03-24T12:17:59.850133+0000 mon.smithi170 (mon.0) 877 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:00.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:17:59 smithi172 bash[23876]: audit 2024-03-24T12:17:59.894464+0000 mon.smithi170 (mon.0) 878 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:00.701 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring fsid 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:18:01.218 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:00 smithi170 bash[18738]: audit 2024-03-24T12:17:59.937850+0000 mon.smithi170 (mon.0) 879 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:01.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:00 smithi170 bash[18738]: audit 2024-03-24T12:17:59.946671+0000 mon.smithi170 (mon.0) 880 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:01.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:00 smithi170 bash[18738]: cephadm 2024-03-24T12:17:59.960339+0000 mgr.smithi170.xkyvyq (mgr.14199) 269 : cephadm 1 Deploying daemon haproxy.nfs.foo.smithi170.vdrmab on smithi170 2024-03-24T12:18:01.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:00 smithi172 bash[23876]: audit 2024-03-24T12:17:59.937850+0000 mon.smithi170 (mon.0) 879 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:01.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:00 smithi172 bash[23876]: audit 2024-03-24T12:17:59.946671+0000 mon.smithi170 (mon.0) 880 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:01.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:00 smithi172 bash[23876]: cephadm 2024-03-24T12:17:59.960339+0000 mgr.smithi170.xkyvyq (mgr.14199) 269 : cephadm 1 Deploying daemon haproxy.nfs.foo.smithi170.vdrmab on smithi170 2024-03-24T12:18:02.218 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:01 smithi170 bash[18738]: cluster 2024-03-24T12:18:00.984304+0000 mgr.smithi170.xkyvyq (mgr.14199) 270 : cluster 0 pgmap v232: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 116 KiB/s rd, 4.7 KiB/s wr, 228 op/s 2024-03-24T12:18:02.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:01 smithi172 bash[23876]: cluster 2024-03-24T12:18:00.984304+0000 mgr.smithi170.xkyvyq (mgr.14199) 270 : cluster 0 pgmap v232: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 116 KiB/s rd, 4.7 KiB/s wr, 228 op/s 2024-03-24T12:18:03.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:03 smithi172 bash[23876]: audit 2024-03-24T12:18:02.306219+0000 mon.smithi170 (mon.0) 881 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:03.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:03 smithi170 bash[18738]: audit 2024-03-24T12:18:02.306219+0000 mon.smithi170 (mon.0) 881 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:04.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:04 smithi172 bash[23876]: cluster 2024-03-24T12:18:02.985030+0000 mgr.smithi170.xkyvyq (mgr.14199) 271 : cluster 0 pgmap v233: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 101 KiB/s rd, 4.1 KiB/s wr, 198 op/s 2024-03-24T12:18:04.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:04 smithi170 bash[18738]: cluster 2024-03-24T12:18:02.985030+0000 mgr.smithi170.xkyvyq (mgr.14199) 271 : cluster 0 pgmap v233: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 101 KiB/s rd, 4.1 KiB/s wr, 198 op/s 2024-03-24T12:18:04.808 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:18:06.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:06 smithi172 bash[23876]: cluster 2024-03-24T12:18:04.986532+0000 mgr.smithi170.xkyvyq (mgr.14199) 272 : cluster 0 pgmap v234: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 91 KiB/s rd, 3.7 KiB/s wr, 178 op/s 2024-03-24T12:18:06.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:06 smithi170 bash[18738]: cluster 2024-03-24T12:18:04.986532+0000 mgr.smithi170.xkyvyq (mgr.14199) 272 : cluster 0 pgmap v234: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 91 KiB/s rd, 3.7 KiB/s wr, 178 op/s 2024-03-24T12:18:07.124 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:06 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:18:07.435 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:07 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:18:08.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:08 smithi172 bash[23876]: cluster 2024-03-24T12:18:06.987217+0000 mgr.smithi170.xkyvyq (mgr.14199) 273 : cluster 0 pgmap v235: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 78 KiB/s rd, 3.7 KiB/s wr, 153 op/s 2024-03-24T12:18:08.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:08 smithi172 bash[23876]: audit 2024-03-24T12:18:07.312771+0000 mon.smithi170 (mon.0) 882 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:08.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:08 smithi172 bash[23876]: audit 2024-03-24T12:18:07.479793+0000 mon.smithi170 (mon.0) 883 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:08.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:08 smithi172 bash[23876]: audit 2024-03-24T12:18:07.486207+0000 mon.smithi170 (mon.0) 884 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:08.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:08 smithi172 bash[23876]: audit 2024-03-24T12:18:07.492305+0000 mon.smithi170 (mon.0) 885 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:08.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:08 smithi172 bash[23876]: cephadm 2024-03-24T12:18:07.494497+0000 mgr.smithi170.xkyvyq (mgr.14199) 274 : cephadm 1 Deploying daemon haproxy.nfs.foo.smithi172.xenkbq on smithi172 2024-03-24T12:18:08.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:08 smithi170 bash[18738]: cluster 2024-03-24T12:18:06.987217+0000 mgr.smithi170.xkyvyq (mgr.14199) 273 : cluster 0 pgmap v235: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 78 KiB/s rd, 3.7 KiB/s wr, 153 op/s 2024-03-24T12:18:08.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:08 smithi170 bash[18738]: audit 2024-03-24T12:18:07.312771+0000 mon.smithi170 (mon.0) 882 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:08.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:08 smithi170 bash[18738]: audit 2024-03-24T12:18:07.479793+0000 mon.smithi170 (mon.0) 883 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:08.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:08 smithi170 bash[18738]: audit 2024-03-24T12:18:07.486207+0000 mon.smithi170 (mon.0) 884 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:08.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:08 smithi170 bash[18738]: audit 2024-03-24T12:18:07.492305+0000 mon.smithi170 (mon.0) 885 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:08.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:08 smithi170 bash[18738]: cephadm 2024-03-24T12:18:07.494497+0000 mgr.smithi170.xkyvyq (mgr.14199) 274 : cephadm 1 Deploying daemon haproxy.nfs.foo.smithi172.xenkbq on smithi172 2024-03-24T12:18:08.939 INFO:teuthology.orchestra.run.smithi170.stderr:Using ceph image with id '4f325f8440e9' and tag 'db0330b1e4e2470d52b750e251e55a522b4f7d69' created on 2024-03-16 12:02:11 +0000 UTC 2024-03-24T12:18:08.940 INFO:teuthology.orchestra.run.smithi170.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:f3031fd9fa3ec502ba783e14433a4d3ebf8f66e5c31d12a3a8cd7e489d3d4d10 2024-03-24T12:18:10.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:10 smithi170 bash[18738]: cluster 2024-03-24T12:18:08.987892+0000 mgr.smithi170.xkyvyq (mgr.14199) 275 : cluster 0 pgmap v236: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 55 KiB/s rd, 2.7 KiB/s wr, 107 op/s 2024-03-24T12:18:10.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:10 smithi172 bash[23876]: cluster 2024-03-24T12:18:08.987892+0000 mgr.smithi170.xkyvyq (mgr.14199) 275 : cluster 0 pgmap v236: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 55 KiB/s rd, 2.7 KiB/s wr, 107 op/s 2024-03-24T12:18:12.229 INFO:teuthology.run_tasks:Running task python... 2024-03-24T12:18:12.240 INFO:tasks.python:Running python on role host.a host ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:18:12.240 INFO:tasks.python:import boto3 import json with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') bucket.create() bucket.put_object(Key='myobject', Body='thebody') 2024-03-24T12:18:12.240 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-03-24T12:18:12.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:12 smithi172 bash[23876]: cluster 2024-03-24T12:18:10.989205+0000 mgr.smithi170.xkyvyq (mgr.14199) 276 : cluster 0 pgmap v237: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 19 KiB/s rd, 1.3 KiB/s wr, 36 op/s 2024-03-24T12:18:12.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:12 smithi170 bash[18738]: cluster 2024-03-24T12:18:10.989205+0000 mgr.smithi170.xkyvyq (mgr.14199) 276 : cluster 0 pgmap v237: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 19 KiB/s rd, 1.3 KiB/s wr, 36 op/s 2024-03-24T12:18:14.231 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:14 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:18:14.500 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:14 smithi172 bash[23876]: cluster 2024-03-24T12:18:12.989883+0000 mgr.smithi170.xkyvyq (mgr.14199) 277 : cluster 0 pgmap v238: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 852 B/s rd, 511 B/s wr, 1 op/s 2024-03-24T12:18:14.500 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:14 smithi172 bash[23876]: cluster 2024-03-24T12:18:13.334183+0000 mon.smithi170 (mon.0) 886 : cluster 0 osdmap e56: 8 total, 8 up, 8 in 2024-03-24T12:18:14.500 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:14 smithi172 bash[23876]: audit 2024-03-24T12:18:13.340384+0000 mon.smithi172 (mon.1) 28 : audit 1 from='client.? 172.21.15.170:0/880413434' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-03-24T12:18:14.500 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:14 smithi172 bash[23876]: audit 2024-03-24T12:18:13.351465+0000 mon.smithi170 (mon.0) 887 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-03-24T12:18:14.501 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:14 smithi172 bash[23876]: audit 2024-03-24T12:18:13.919744+0000 mon.smithi170 (mon.0) 888 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:18:14.501 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:14 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:18:14.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:14 smithi170 bash[18738]: cluster 2024-03-24T12:18:12.989883+0000 mgr.smithi170.xkyvyq (mgr.14199) 277 : cluster 0 pgmap v238: 161 pgs: 161 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 852 B/s rd, 511 B/s wr, 1 op/s 2024-03-24T12:18:14.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:14 smithi170 bash[18738]: cluster 2024-03-24T12:18:13.334183+0000 mon.smithi170 (mon.0) 886 : cluster 0 osdmap e56: 8 total, 8 up, 8 in 2024-03-24T12:18:14.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:14 smithi170 bash[18738]: audit 2024-03-24T12:18:13.340384+0000 mon.smithi172 (mon.1) 28 : audit 1 from='client.? 172.21.15.170:0/880413434' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-03-24T12:18:14.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:14 smithi170 bash[18738]: audit 2024-03-24T12:18:13.351465+0000 mon.smithi170 (mon.0) 887 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-03-24T12:18:14.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:14 smithi170 bash[18738]: audit 2024-03-24T12:18:13.919744+0000 mon.smithi170 (mon.0) 888 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:18:15.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:15 smithi172 bash[23876]: audit 2024-03-24T12:18:14.331266+0000 mon.smithi170 (mon.0) 889 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-03-24T12:18:15.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:15 smithi172 bash[23876]: cluster 2024-03-24T12:18:14.339077+0000 mon.smithi170 (mon.0) 890 : cluster 0 osdmap e57: 8 total, 8 up, 8 in 2024-03-24T12:18:15.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:15 smithi172 bash[23876]: audit 2024-03-24T12:18:14.356539+0000 mon.smithi172 (mon.1) 29 : audit 1 from='client.? 172.21.15.170:0/880413434' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-24T12:18:15.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:15 smithi172 bash[23876]: audit 2024-03-24T12:18:14.367780+0000 mon.smithi170 (mon.0) 891 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-24T12:18:15.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:15 smithi172 bash[23876]: audit 2024-03-24T12:18:14.558862+0000 mon.smithi170 (mon.0) 892 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:15.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:15 smithi172 bash[23876]: audit 2024-03-24T12:18:14.570836+0000 mon.smithi170 (mon.0) 893 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:15.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:15 smithi172 bash[23876]: audit 2024-03-24T12:18:14.588539+0000 mon.smithi170 (mon.0) 894 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:15.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:15 smithi172 bash[23876]: audit 2024-03-24T12:18:14.598924+0000 mon.smithi170 (mon.0) 895 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:15.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:15 smithi172 bash[23876]: cephadm 2024-03-24T12:18:14.600284+0000 mgr.smithi170.xkyvyq (mgr.14199) 278 : cephadm 1 10.0.31.170 is in 10.0.0.0/16 on smithi170 interface enp3s0f1 2024-03-24T12:18:15.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:15 smithi172 bash[23876]: cephadm 2024-03-24T12:18:14.600639+0000 mgr.smithi170.xkyvyq (mgr.14199) 279 : cephadm 1 10.0.31.170 is in 10.0.0.0/16 on smithi172 interface enp3s0f1 2024-03-24T12:18:15.665 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:15 smithi172 bash[23876]: cephadm 2024-03-24T12:18:14.618013+0000 mgr.smithi170.xkyvyq (mgr.14199) 280 : cephadm 1 Deploying daemon keepalived.nfs.foo.smithi170.ggaljt on smithi170 2024-03-24T12:18:15.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:15 smithi170 bash[18738]: audit 2024-03-24T12:18:14.331266+0000 mon.smithi170 (mon.0) 889 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-03-24T12:18:15.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:15 smithi170 bash[18738]: cluster 2024-03-24T12:18:14.339077+0000 mon.smithi170 (mon.0) 890 : cluster 0 osdmap e57: 8 total, 8 up, 8 in 2024-03-24T12:18:15.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:15 smithi170 bash[18738]: audit 2024-03-24T12:18:14.356539+0000 mon.smithi172 (mon.1) 29 : audit 1 from='client.? 172.21.15.170:0/880413434' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-24T12:18:15.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:15 smithi170 bash[18738]: audit 2024-03-24T12:18:14.367780+0000 mon.smithi170 (mon.0) 891 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-03-24T12:18:15.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:15 smithi170 bash[18738]: audit 2024-03-24T12:18:14.558862+0000 mon.smithi170 (mon.0) 892 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:15.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:15 smithi170 bash[18738]: audit 2024-03-24T12:18:14.570836+0000 mon.smithi170 (mon.0) 893 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:15.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:15 smithi170 bash[18738]: audit 2024-03-24T12:18:14.588539+0000 mon.smithi170 (mon.0) 894 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:15.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:15 smithi170 bash[18738]: audit 2024-03-24T12:18:14.598924+0000 mon.smithi170 (mon.0) 895 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:15.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:15 smithi170 bash[18738]: cephadm 2024-03-24T12:18:14.600284+0000 mgr.smithi170.xkyvyq (mgr.14199) 278 : cephadm 1 10.0.31.170 is in 10.0.0.0/16 on smithi170 interface enp3s0f1 2024-03-24T12:18:15.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:15 smithi170 bash[18738]: cephadm 2024-03-24T12:18:14.600639+0000 mgr.smithi170.xkyvyq (mgr.14199) 279 : cephadm 1 10.0.31.170 is in 10.0.0.0/16 on smithi172 interface enp3s0f1 2024-03-24T12:18:15.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:15 smithi170 bash[18738]: cephadm 2024-03-24T12:18:14.618013+0000 mgr.smithi170.xkyvyq (mgr.14199) 280 : cephadm 1 Deploying daemon keepalived.nfs.foo.smithi170.ggaljt on smithi170 2024-03-24T12:18:16.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:16 smithi172 bash[23876]: cluster 2024-03-24T12:18:14.990547+0000 mgr.smithi170.xkyvyq (mgr.14199) 281 : cluster 0 pgmap v241: 193 pgs: 11 creating+peering, 19 unknown, 163 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 895 B/s rd, 127 B/s wr, 0 op/s 2024-03-24T12:18:16.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:16 smithi172 bash[23876]: audit 2024-03-24T12:18:15.354616+0000 mon.smithi170 (mon.0) 896 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-03-24T12:18:16.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:16 smithi172 bash[23876]: cluster 2024-03-24T12:18:15.360971+0000 mon.smithi170 (mon.0) 897 : cluster 0 osdmap e58: 8 total, 8 up, 8 in 2024-03-24T12:18:16.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:16 smithi170 bash[18738]: cluster 2024-03-24T12:18:14.990547+0000 mgr.smithi170.xkyvyq (mgr.14199) 281 : cluster 0 pgmap v241: 193 pgs: 11 creating+peering, 19 unknown, 163 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 895 B/s rd, 127 B/s wr, 0 op/s 2024-03-24T12:18:16.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:16 smithi170 bash[18738]: audit 2024-03-24T12:18:15.354616+0000 mon.smithi170 (mon.0) 896 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-03-24T12:18:16.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:16 smithi170 bash[18738]: cluster 2024-03-24T12:18:15.360971+0000 mon.smithi170 (mon.0) 897 : cluster 0 osdmap e58: 8 total, 8 up, 8 in 2024-03-24T12:18:17.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:17 smithi172 bash[23876]: cluster 2024-03-24T12:18:16.377332+0000 mon.smithi170 (mon.0) 898 : cluster 0 osdmap e59: 8 total, 8 up, 8 in 2024-03-24T12:18:17.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:17 smithi172 bash[23876]: audit 2024-03-24T12:18:16.382299+0000 mon.smithi172 (mon.1) 30 : audit 1 from='client.? 172.21.15.170:0/880413434' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-03-24T12:18:17.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:17 smithi172 bash[23876]: audit 2024-03-24T12:18:16.383025+0000 mon.smithi170 (mon.0) 899 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-03-24T12:18:17.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:17 smithi170 bash[18738]: cluster 2024-03-24T12:18:16.377332+0000 mon.smithi170 (mon.0) 898 : cluster 0 osdmap e59: 8 total, 8 up, 8 in 2024-03-24T12:18:17.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:17 smithi170 bash[18738]: audit 2024-03-24T12:18:16.382299+0000 mon.smithi172 (mon.1) 30 : audit 1 from='client.? 172.21.15.170:0/880413434' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-03-24T12:18:17.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:17 smithi170 bash[18738]: audit 2024-03-24T12:18:16.383025+0000 mon.smithi170 (mon.0) 899 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-03-24T12:18:18.481 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-24T12:18:18.491 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:18:18.491 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket' 2024-03-24T12:18:18.662 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:18 smithi170 bash[18738]: cluster 2024-03-24T12:18:16.991067+0000 mgr.smithi170.xkyvyq (mgr.14199) 282 : cluster 0 pgmap v244: 225 pgs: 11 creating+peering, 40 unknown, 174 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 511 B/s wr, 4 op/s 2024-03-24T12:18:18.662 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:18 smithi170 bash[18738]: cluster 2024-03-24T12:18:17.372178+0000 mon.smithi170 (mon.0) 900 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-24T12:18:18.662 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:18 smithi170 bash[18738]: audit 2024-03-24T12:18:17.380138+0000 mon.smithi170 (mon.0) 901 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-03-24T12:18:18.663 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:18 smithi170 bash[18738]: cluster 2024-03-24T12:18:17.385321+0000 mon.smithi170 (mon.0) 902 : cluster 0 osdmap e60: 8 total, 8 up, 8 in 2024-03-24T12:18:18.663 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:18 smithi170 bash[18738]: audit 2024-03-24T12:18:17.398248+0000 mon.smithi172 (mon.1) 31 : audit 1 from='client.? 172.21.15.170:0/880413434' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-03-24T12:18:18.663 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:18 smithi170 bash[18738]: audit 2024-03-24T12:18:17.398936+0000 mon.smithi170 (mon.0) 903 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-03-24T12:18:18.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:18 smithi172 bash[23876]: cluster 2024-03-24T12:18:16.991067+0000 mgr.smithi170.xkyvyq (mgr.14199) 282 : cluster 0 pgmap v244: 225 pgs: 11 creating+peering, 40 unknown, 174 active+clean; 582 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 511 B/s wr, 4 op/s 2024-03-24T12:18:18.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:18 smithi172 bash[23876]: cluster 2024-03-24T12:18:17.372178+0000 mon.smithi170 (mon.0) 900 : cluster 3 Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-03-24T12:18:18.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:18 smithi172 bash[23876]: audit 2024-03-24T12:18:17.380138+0000 mon.smithi170 (mon.0) 901 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-03-24T12:18:18.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:18 smithi172 bash[23876]: cluster 2024-03-24T12:18:17.385321+0000 mon.smithi170 (mon.0) 902 : cluster 0 osdmap e60: 8 total, 8 up, 8 in 2024-03-24T12:18:18.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:18 smithi172 bash[23876]: audit 2024-03-24T12:18:17.398248+0000 mon.smithi172 (mon.1) 31 : audit 1 from='client.? 172.21.15.170:0/880413434' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-03-24T12:18:18.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:18 smithi172 bash[23876]: audit 2024-03-24T12:18:17.398936+0000 mon.smithi170 (mon.0) 903 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-03-24T12:18:19.666 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:19 smithi172 bash[23876]: audit 2024-03-24T12:18:18.389833+0000 mon.smithi170 (mon.0) 904 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-03-24T12:18:19.666 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:19 smithi172 bash[23876]: cluster 2024-03-24T12:18:18.395647+0000 mon.smithi170 (mon.0) 905 : cluster 0 osdmap e61: 8 total, 8 up, 8 in 2024-03-24T12:18:19.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:19 smithi170 bash[18738]: audit 2024-03-24T12:18:18.389833+0000 mon.smithi170 (mon.0) 904 : audit 1 from='client.? ' entity='client.rgw.foorgw.smithi170.jipxas' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-03-24T12:18:19.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:19 smithi170 bash[18738]: cluster 2024-03-24T12:18:18.395647+0000 mon.smithi170 (mon.0) 905 : cluster 0 osdmap e61: 8 total, 8 up, 8 in 2024-03-24T12:18:20.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:20 smithi172 bash[23876]: cluster 2024-03-24T12:18:18.992055+0000 mgr.smithi170.xkyvyq (mgr.14199) 283 : cluster 0 pgmap v247: 225 pgs: 7 creating+peering, 18 unknown, 200 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 767 B/s wr, 5 op/s 2024-03-24T12:18:20.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:20 smithi172 bash[23876]: cluster 2024-03-24T12:18:19.389909+0000 mon.smithi170 (mon.0) 906 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-24T12:18:20.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:20 smithi172 bash[23876]: cluster 2024-03-24T12:18:19.389974+0000 mon.smithi170 (mon.0) 907 : cluster 1 Cluster is now healthy 2024-03-24T12:18:21.218 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:20 smithi170 bash[18738]: cluster 2024-03-24T12:18:18.992055+0000 mgr.smithi170.xkyvyq (mgr.14199) 283 : cluster 0 pgmap v247: 225 pgs: 7 creating+peering, 18 unknown, 200 active+clean; 583 KiB data, 234 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 767 B/s wr, 5 op/s 2024-03-24T12:18:21.218 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:20 smithi170 bash[18738]: cluster 2024-03-24T12:18:19.389909+0000 mon.smithi170 (mon.0) 906 : cluster 1 Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-03-24T12:18:21.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:20 smithi170 bash[18738]: cluster 2024-03-24T12:18:19.389974+0000 mon.smithi170 (mon.0) 907 : cluster 1 Cluster is now healthy 2024-03-24T12:18:22.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:22 smithi172 bash[23876]: cluster 2024-03-24T12:18:20.993720+0000 mgr.smithi170.xkyvyq (mgr.14199) 284 : cluster 0 pgmap v248: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 1.2 KiB/s wr, 8 op/s 2024-03-24T12:18:22.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:22 smithi170 bash[18738]: cluster 2024-03-24T12:18:20.993720+0000 mgr.smithi170.xkyvyq (mgr.14199) 284 : cluster 0 pgmap v248: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 1.2 KiB/s wr, 8 op/s 2024-03-24T12:18:22.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:22 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:18:23.038 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:22 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:18:23.300 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:18:24.355 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:24 smithi170 bash[18738]: cluster 2024-03-24T12:18:22.994488+0000 mgr.smithi170.xkyvyq (mgr.14199) 285 : cluster 0 pgmap v249: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 927 B/s rd, 927 B/s wr, 5 op/s 2024-03-24T12:18:24.355 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:24 smithi170 bash[18738]: audit 2024-03-24T12:18:23.086992+0000 mon.smithi170 (mon.0) 908 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:24.356 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:24 smithi170 bash[18738]: audit 2024-03-24T12:18:23.093171+0000 mon.smithi170 (mon.0) 909 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:24.356 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:24 smithi170 bash[18738]: audit 2024-03-24T12:18:23.109551+0000 mon.smithi170 (mon.0) 910 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:24.356 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:24 smithi170 bash[18738]: cephadm 2024-03-24T12:18:23.111561+0000 mgr.smithi170.xkyvyq (mgr.14199) 286 : cephadm 1 10.0.31.170 is in 10.0.0.0/16 on smithi172 interface enp3s0f1 2024-03-24T12:18:24.356 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:24 smithi170 bash[18738]: cephadm 2024-03-24T12:18:23.111709+0000 mgr.smithi170.xkyvyq (mgr.14199) 287 : cephadm 1 10.0.31.170 is in 10.0.0.0/16 on smithi170 interface enp3s0f1 2024-03-24T12:18:24.356 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:24 smithi170 bash[18738]: cephadm 2024-03-24T12:18:23.112178+0000 mgr.smithi170.xkyvyq (mgr.14199) 288 : cephadm 1 Deploying daemon keepalived.nfs.foo.smithi172.yfmoda on smithi172 2024-03-24T12:18:24.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:24 smithi172 bash[23876]: cluster 2024-03-24T12:18:22.994488+0000 mgr.smithi170.xkyvyq (mgr.14199) 285 : cluster 0 pgmap v249: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 927 B/s rd, 927 B/s wr, 5 op/s 2024-03-24T12:18:24.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:24 smithi172 bash[23876]: audit 2024-03-24T12:18:23.086992+0000 mon.smithi170 (mon.0) 908 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:24.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:24 smithi172 bash[23876]: audit 2024-03-24T12:18:23.093171+0000 mon.smithi170 (mon.0) 909 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:24.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:24 smithi172 bash[23876]: audit 2024-03-24T12:18:23.109551+0000 mon.smithi170 (mon.0) 910 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:24.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:24 smithi172 bash[23876]: cephadm 2024-03-24T12:18:23.111561+0000 mgr.smithi170.xkyvyq (mgr.14199) 286 : cephadm 1 10.0.31.170 is in 10.0.0.0/16 on smithi172 interface enp3s0f1 2024-03-24T12:18:24.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:24 smithi172 bash[23876]: cephadm 2024-03-24T12:18:23.111709+0000 mgr.smithi170.xkyvyq (mgr.14199) 287 : cephadm 1 10.0.31.170 is in 10.0.0.0/16 on smithi170 interface enp3s0f1 2024-03-24T12:18:24.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:24 smithi172 bash[23876]: cephadm 2024-03-24T12:18:23.112178+0000 mgr.smithi170.xkyvyq (mgr.14199) 288 : cephadm 1 Deploying daemon keepalived.nfs.foo.smithi172.yfmoda on smithi172 2024-03-24T12:18:26.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:26 smithi172 bash[23876]: cluster 2024-03-24T12:18:24.996404+0000 mgr.smithi170.xkyvyq (mgr.14199) 289 : cluster 0 pgmap v250: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 4 op/s 2024-03-24T12:18:26.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:26 smithi170 bash[18738]: cluster 2024-03-24T12:18:24.996404+0000 mgr.smithi170.xkyvyq (mgr.14199) 289 : cluster 0 pgmap v250: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 767 B/s wr, 4 op/s 2024-03-24T12:18:26.826 INFO:teuthology.orchestra.run.smithi170.stdout:{ 2024-03-24T12:18:26.827 INFO:teuthology.orchestra.run.smithi170.stdout: "bind": "/foobucket", 2024-03-24T12:18:26.827 INFO:teuthology.orchestra.run.smithi170.stdout: "cluster": "foo", 2024-03-24T12:18:26.827 INFO:teuthology.orchestra.run.smithi170.stdout: "mode": "RW", 2024-03-24T12:18:26.827 INFO:teuthology.orchestra.run.smithi170.stdout: "path": "foobucket", 2024-03-24T12:18:26.827 INFO:teuthology.orchestra.run.smithi170.stdout: "squash": "none" 2024-03-24T12:18:26.827 INFO:teuthology.orchestra.run.smithi170.stdout:} 2024-03-24T12:18:27.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:27 smithi172 bash[23876]: audit 2024-03-24T12:18:26.487014+0000 mgr.smithi170.xkyvyq (mgr.14199) 290 : audit 0 from='client.14582 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:18:27.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:27 smithi170 bash[18738]: audit 2024-03-24T12:18:26.487014+0000 mgr.smithi170.xkyvyq (mgr.14199) 290 : audit 0 from='client.14582 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:18:27.495 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-03-24T12:18:27.505 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-03-24T12:18:27.505 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph orch ls -f json 2024-03-24T12:18:28.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:28 smithi170 bash[18738]: cluster 2024-03-24T12:18:26.997286+0000 mgr.smithi170.xkyvyq (mgr.14199) 291 : cluster 0 pgmap v251: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 745 B/s rd, 638 B/s wr, 3 op/s 2024-03-24T12:18:28.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:28 smithi170 bash[18738]: audit 2024-03-24T12:18:27.337023+0000 mon.smithi170 (mon.0) 911 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:28.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:28 smithi172 bash[23876]: cluster 2024-03-24T12:18:26.997286+0000 mgr.smithi170.xkyvyq (mgr.14199) 291 : cluster 0 pgmap v251: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 745 B/s rd, 638 B/s wr, 3 op/s 2024-03-24T12:18:28.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:28 smithi172 bash[23876]: audit 2024-03-24T12:18:27.337023+0000 mon.smithi170 (mon.0) 911 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:29.693 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:29 smithi170 bash[18738]: audit 2024-03-24T12:18:28.921364+0000 mon.smithi170 (mon.0) 912 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:18:29.696 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:29 smithi172 bash[23876]: audit 2024-03-24T12:18:28.921364+0000 mon.smithi170 (mon.0) 912 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:18:30.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:30 smithi172 bash[23876]: cluster 2024-03-24T12:18:28.998655+0000 mgr.smithi170.xkyvyq (mgr.14199) 292 : cluster 0 pgmap v252: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 5.2 KiB/s rd, 772 B/s wr, 9 op/s 2024-03-24T12:18:30.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:30 smithi170 bash[18738]: cluster 2024-03-24T12:18:28.998655+0000 mgr.smithi170.xkyvyq (mgr.14199) 292 : cluster 0 pgmap v252: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 5.2 KiB/s rd, 772 B/s wr, 9 op/s 2024-03-24T12:18:32.334 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:18:32.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:32 smithi172 bash[23876]: cluster 2024-03-24T12:18:31.000481+0000 mgr.smithi170.xkyvyq (mgr.14199) 293 : cluster 0 pgmap v253: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 682 B/s wr, 15 op/s 2024-03-24T12:18:32.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:32 smithi170 bash[18738]: cluster 2024-03-24T12:18:31.000481+0000 mgr.smithi170.xkyvyq (mgr.14199) 293 : cluster 0 pgmap v253: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 682 B/s wr, 15 op/s 2024-03-24T12:18:33.063 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:32 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:18:33.324 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:33 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:18:34.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:34 smithi172 bash[23876]: cluster 2024-03-24T12:18:33.001400+0000 mgr.smithi170.xkyvyq (mgr.14199) 294 : cluster 0 pgmap v254: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-24T12:18:34.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:34 smithi172 bash[23876]: audit 2024-03-24T12:18:33.371530+0000 mon.smithi170 (mon.0) 913 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:34.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:34 smithi172 bash[23876]: audit 2024-03-24T12:18:33.376869+0000 mon.smithi170 (mon.0) 914 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:34.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:34 smithi172 bash[23876]: audit 2024-03-24T12:18:33.414639+0000 mon.smithi170 (mon.0) 915 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:34.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:34 smithi172 bash[23876]: audit 2024-03-24T12:18:33.419059+0000 mon.smithi170 (mon.0) 916 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:34.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:34 smithi172 bash[23876]: audit 2024-03-24T12:18:33.452196+0000 mon.smithi170 (mon.0) 917 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:18:34.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:34 smithi170 bash[18738]: cluster 2024-03-24T12:18:33.001400+0000 mgr.smithi170.xkyvyq (mgr.14199) 294 : cluster 0 pgmap v254: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-24T12:18:34.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:34 smithi170 bash[18738]: audit 2024-03-24T12:18:33.371530+0000 mon.smithi170 (mon.0) 913 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:34.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:34 smithi170 bash[18738]: audit 2024-03-24T12:18:33.376869+0000 mon.smithi170 (mon.0) 914 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:34.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:34 smithi170 bash[18738]: audit 2024-03-24T12:18:33.414639+0000 mon.smithi170 (mon.0) 915 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:34.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:34 smithi170 bash[18738]: audit 2024-03-24T12:18:33.419059+0000 mon.smithi170 (mon.0) 916 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:34.719 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:34 smithi170 bash[18738]: audit 2024-03-24T12:18:33.452196+0000 mon.smithi170 (mon.0) 917 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:18:35.140 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:18:35.141 INFO:teuthology.orchestra.run.smithi170.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-03-24T12:09:57.926415Z", "last_refresh": "2024-03-24T12:17:55.416458Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-03-24T12:11:54.414989Z service:ceph-exporter [ERROR] \"Failed while placing ceph-exporter.smithi172 on smithi172: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172\nDeploy daemon ceph-exporter.smithi172 ...\nERROR: Directory does not exist. Got: /var/run/ceph/\"", "2024-03-24T12:12:15.185250Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-03-24T12:09:50.509781Z", "last_refresh": "2024-03-24T12:17:54.867762Z", "running": 2, "size": 2}}, {"events": ["2024-03-24T12:11:57.761249Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-03-24T12:09:48.575713Z", "last_refresh": "2024-03-24T12:17:54.867178Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-03-24T12:09:54.126703Z", "last_refresh": "2024-03-24T12:17:55.416560Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-03-24T12:18:33.419314Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.170/16"}, "status": {"created": "2024-03-24T12:17:43.323994Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.170/16"}}, {"events": ["2024-03-24T12:12:02.045051Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-03-24T12:09:46.685794Z", "last_refresh": "2024-03-24T12:17:54.867431Z", "running": 2, "size": 2}}, {"events": ["2024-03-24T12:12:05.988526Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi170:172.21.15.170=smithi170", "smithi172:172.21.15.172=smithi172"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-03-24T12:11:35.339016Z", "last_refresh": "2024-03-24T12:17:54.867598Z", "running": 2, "size": 2}}, {"events": ["2024-03-24T12:17:59.938226Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-03-24T12:17:43.316168Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-03-24T12:11:58.842530Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-03-24T12:09:56.033959Z", "last_refresh": "2024-03-24T12:17:54.867317Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-03-24T12:12:31.070302Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-03-24T12:12:31.066079Z", "last_refresh": "2024-03-24T12:17:54.867894Z", "running": 8, "size": 8}}, {"events": ["2024-03-24T12:12:05.998286Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-03-24T12:09:52.252807Z", "last_refresh": "2024-03-24T12:17:55.416661Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-03-24T12:17:49.255170Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-03-24T12:17:49.246706Z", "last_refresh": "2024-03-24T12:17:54.868396Z", "ports": [8800], "running": 2, "size": 2}}] 2024-03-24T12:18:35.820 INFO:tasks.cephadm:nfs.foo has 0/1 2024-03-24T12:18:36.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:36 smithi172 bash[23876]: cluster 2024-03-24T12:18:35.002575+0000 mgr.smithi170.xkyvyq (mgr.14199) 295 : cluster 0 pgmap v255: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-24T12:18:36.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:36 smithi172 bash[23876]: audit 2024-03-24T12:18:35.133915+0000 mgr.smithi170.xkyvyq (mgr.14199) 296 : audit 0 from='client.14620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-24T12:18:36.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:36 smithi170 bash[18738]: cluster 2024-03-24T12:18:35.002575+0000 mgr.smithi170.xkyvyq (mgr.14199) 295 : cluster 0 pgmap v255: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-24T12:18:36.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:36 smithi170 bash[18738]: audit 2024-03-24T12:18:35.133915+0000 mgr.smithi170.xkyvyq (mgr.14199) 296 : audit 0 from='client.14620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-24T12:18:36.820 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph orch ls -f json 2024-03-24T12:18:38.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:38 smithi172 bash[23876]: cluster 2024-03-24T12:18:37.003214+0000 mgr.smithi170.xkyvyq (mgr.14199) 297 : cluster 0 pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-24T12:18:38.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:38 smithi172 bash[23876]: audit 2024-03-24T12:18:37.350596+0000 mon.smithi170 (mon.0) 918 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:38.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:38 smithi170 bash[18738]: cluster 2024-03-24T12:18:37.003214+0000 mgr.smithi170.xkyvyq (mgr.14199) 297 : cluster 0 pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-24T12:18:38.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:38 smithi170 bash[18738]: audit 2024-03-24T12:18:37.350596+0000 mon.smithi170 (mon.0) 918 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:40.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:40 smithi172 bash[23876]: cluster 2024-03-24T12:18:39.004013+0000 mgr.smithi170.xkyvyq (mgr.14199) 298 : cluster 0 pgmap v257: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-24T12:18:40.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:40 smithi172 bash[23876]: audit 2024-03-24T12:18:39.140633+0000 mon.smithi170 (mon.0) 919 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:40.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:40 smithi172 bash[23876]: audit 2024-03-24T12:18:39.149781+0000 mon.smithi170 (mon.0) 920 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:40.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:40 smithi172 bash[23876]: audit 2024-03-24T12:18:39.756892+0000 mon.smithi170 (mon.0) 921 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:40.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:40 smithi172 bash[23876]: audit 2024-03-24T12:18:39.771247+0000 mon.smithi170 (mon.0) 922 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:40.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:40 smithi170 bash[18738]: cluster 2024-03-24T12:18:39.004013+0000 mgr.smithi170.xkyvyq (mgr.14199) 298 : cluster 0 pgmap v257: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-03-24T12:18:40.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:40 smithi170 bash[18738]: audit 2024-03-24T12:18:39.140633+0000 mon.smithi170 (mon.0) 919 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:40.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:40 smithi170 bash[18738]: audit 2024-03-24T12:18:39.149781+0000 mon.smithi170 (mon.0) 920 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:40.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:40 smithi170 bash[18738]: audit 2024-03-24T12:18:39.756892+0000 mon.smithi170 (mon.0) 921 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:40.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:40 smithi170 bash[18738]: audit 2024-03-24T12:18:39.771247+0000 mon.smithi170 (mon.0) 922 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:41.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:41 smithi172 bash[23876]: audit 2024-03-24T12:18:40.344212+0000 mon.smithi170 (mon.0) 923 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:18:41.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:41 smithi172 bash[23876]: audit 2024-03-24T12:18:40.345936+0000 mon.smithi170 (mon.0) 924 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:18:41.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:41 smithi172 bash[23876]: audit 2024-03-24T12:18:40.356617+0000 mon.smithi170 (mon.0) 925 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:41.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:41 smithi172 bash[23876]: audit 2024-03-24T12:18:40.365261+0000 mon.smithi170 (mon.0) 926 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:18:41.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:41 smithi172 bash[23876]: audit 2024-03-24T12:18:40.386689+0000 mon.smithi170 (mon.0) 927 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:41.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:41 smithi172 bash[23876]: cephadm 2024-03-24T12:18:40.457181+0000 mgr.smithi170.xkyvyq (mgr.14199) 299 : cephadm 1 Reconfiguring prometheus.smithi170 (dependencies changed)... 2024-03-24T12:18:41.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:41 smithi170 bash[18738]: audit 2024-03-24T12:18:40.344212+0000 mon.smithi170 (mon.0) 923 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:18:41.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:41 smithi170 bash[18738]: audit 2024-03-24T12:18:40.345936+0000 mon.smithi170 (mon.0) 924 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:18:41.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:41 smithi170 bash[18738]: audit 2024-03-24T12:18:40.356617+0000 mon.smithi170 (mon.0) 925 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:41.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:41 smithi170 bash[18738]: audit 2024-03-24T12:18:40.365261+0000 mon.smithi170 (mon.0) 926 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:18:41.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:41 smithi170 bash[18738]: audit 2024-03-24T12:18:40.386689+0000 mon.smithi170 (mon.0) 927 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:41.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:41 smithi170 bash[18738]: cephadm 2024-03-24T12:18:40.457181+0000 mgr.smithi170.xkyvyq (mgr.14199) 299 : cephadm 1 Reconfiguring prometheus.smithi170 (dependencies changed)... 2024-03-24T12:18:41.574 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:18:42.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:42 smithi170 bash[18738]: cephadm 2024-03-24T12:18:40.736639+0000 mgr.smithi170.xkyvyq (mgr.14199) 300 : cephadm 1 Reconfiguring daemon prometheus.smithi170 on smithi170 2024-03-24T12:18:42.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:42 smithi170 bash[18738]: cluster 2024-03-24T12:18:41.005018+0000 mgr.smithi170.xkyvyq (mgr.14199) 301 : cluster 0 pgmap v258: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 170 B/s wr, 7 op/s 2024-03-24T12:18:42.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:42 smithi172 bash[23876]: cephadm 2024-03-24T12:18:40.736639+0000 mgr.smithi170.xkyvyq (mgr.14199) 300 : cephadm 1 Reconfiguring daemon prometheus.smithi170 on smithi170 2024-03-24T12:18:42.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:42 smithi172 bash[23876]: cluster 2024-03-24T12:18:41.005018+0000 mgr.smithi170.xkyvyq (mgr.14199) 301 : cluster 0 pgmap v258: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 170 B/s wr, 7 op/s 2024-03-24T12:18:44.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:44 smithi172 bash[23876]: cluster 2024-03-24T12:18:43.005727+0000 mgr.smithi170.xkyvyq (mgr.14199) 302 : cluster 0 pgmap v259: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-03-24T12:18:44.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:44 smithi172 bash[23876]: audit 2024-03-24T12:18:43.897176+0000 mon.smithi170 (mon.0) 928 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.17", "id": [4, 0]}]: dispatch 2024-03-24T12:18:44.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:44 smithi172 bash[23876]: audit 2024-03-24T12:18:43.897637+0000 mon.smithi170 (mon.0) 929 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.0", "id": [5, 3]}]: dispatch 2024-03-24T12:18:44.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:44 smithi172 bash[23876]: audit 2024-03-24T12:18:43.920454+0000 mon.smithi170 (mon.0) 930 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:18:44.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:44 smithi170 bash[18738]: cluster 2024-03-24T12:18:43.005727+0000 mgr.smithi170.xkyvyq (mgr.14199) 302 : cluster 0 pgmap v259: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-03-24T12:18:44.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:44 smithi170 bash[18738]: audit 2024-03-24T12:18:43.897176+0000 mon.smithi170 (mon.0) 928 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.17", "id": [4, 0]}]: dispatch 2024-03-24T12:18:44.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:44 smithi170 bash[18738]: audit 2024-03-24T12:18:43.897637+0000 mon.smithi170 (mon.0) 929 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.0", "id": [5, 3]}]: dispatch 2024-03-24T12:18:44.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:44 smithi170 bash[18738]: audit 2024-03-24T12:18:43.920454+0000 mon.smithi170 (mon.0) 930 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:18:45.409 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:18:45.410 INFO:teuthology.orchestra.run.smithi170.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-03-24T12:09:57.926415Z", "last_refresh": "2024-03-24T12:18:39.743052Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-03-24T12:11:54.414989Z service:ceph-exporter [ERROR] \"Failed while placing ceph-exporter.smithi172 on smithi172: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172\nDeploy daemon ceph-exporter.smithi172 ...\nERROR: Directory does not exist. Got: /var/run/ceph/\"", "2024-03-24T12:12:15.185250Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-03-24T12:09:50.509781Z", "last_refresh": "2024-03-24T12:18:39.131933Z", "running": 2, "size": 2}}, {"events": ["2024-03-24T12:11:57.761249Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-03-24T12:09:48.575713Z", "last_refresh": "2024-03-24T12:18:39.131155Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-03-24T12:09:54.126703Z", "last_refresh": "2024-03-24T12:18:39.743550Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-03-24T12:18:33.419314Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.170/16"}, "status": {"created": "2024-03-24T12:17:43.323994Z", "last_refresh": "2024-03-24T12:18:39.133017Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.170/16"}}, {"events": ["2024-03-24T12:12:02.045051Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-03-24T12:09:46.685794Z", "last_refresh": "2024-03-24T12:18:39.131553Z", "running": 2, "size": 2}}, {"events": ["2024-03-24T12:12:05.988526Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi170:172.21.15.170=smithi170", "smithi172:172.21.15.172=smithi172"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-03-24T12:11:35.339016Z", "last_refresh": "2024-03-24T12:18:39.131748Z", "running": 2, "size": 2}}, {"events": ["2024-03-24T12:18:40.387188Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-03-24T12:17:43.316168Z", "last_refresh": "2024-03-24T12:18:39.745690Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-03-24T12:11:58.842530Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-03-24T12:09:56.033959Z", "last_refresh": "2024-03-24T12:18:39.131366Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-03-24T12:12:31.070302Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-03-24T12:12:31.066079Z", "last_refresh": "2024-03-24T12:18:39.132115Z", "running": 8, "size": 8}}, {"events": ["2024-03-24T12:12:05.998286Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-03-24T12:09:52.252807Z", "last_refresh": "2024-03-24T12:18:39.743924Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-03-24T12:17:49.255170Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-03-24T12:17:49.246706Z", "last_refresh": "2024-03-24T12:18:39.132833Z", "ports": [8800], "running": 2, "size": 2}}] 2024-03-24T12:18:45.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:45 smithi172 bash[23876]: audit 2024-03-24T12:18:44.392653+0000 mon.smithi170 (mon.0) 931 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.17", "id": [4, 0]}]': finished 2024-03-24T12:18:45.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:45 smithi172 bash[23876]: audit 2024-03-24T12:18:44.392843+0000 mon.smithi170 (mon.0) 932 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.0", "id": [5, 3]}]': finished 2024-03-24T12:18:45.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:45 smithi172 bash[23876]: cluster 2024-03-24T12:18:44.399831+0000 mon.smithi170 (mon.0) 933 : cluster 0 osdmap e62: 8 total, 8 up, 8 in 2024-03-24T12:18:45.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:45 smithi170 bash[18738]: audit 2024-03-24T12:18:44.392653+0000 mon.smithi170 (mon.0) 931 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.17", "id": [4, 0]}]': finished 2024-03-24T12:18:45.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:45 smithi170 bash[18738]: audit 2024-03-24T12:18:44.392843+0000 mon.smithi170 (mon.0) 932 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.0", "id": [5, 3]}]': finished 2024-03-24T12:18:45.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:45 smithi170 bash[18738]: cluster 2024-03-24T12:18:44.399831+0000 mon.smithi170 (mon.0) 933 : cluster 0 osdmap e62: 8 total, 8 up, 8 in 2024-03-24T12:18:46.641 INFO:tasks.cephadm:nfs.foo has 1/1 2024-03-24T12:18:46.641 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-03-24T12:18:46.652 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-03-24T12:18:46.652 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- ceph orch ls -f json 2024-03-24T12:18:46.662 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:46 smithi170 bash[18738]: cluster 2024-03-24T12:18:45.006396+0000 mgr.smithi170.xkyvyq (mgr.14199) 303 : cluster 0 pgmap v261: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-03-24T12:18:46.662 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:46 smithi170 bash[18738]: audit 2024-03-24T12:18:45.405546+0000 mgr.smithi170.xkyvyq (mgr.14199) 304 : audit 0 from='client.14624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-24T12:18:46.662 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:46 smithi170 bash[18738]: cluster 2024-03-24T12:18:45.416411+0000 mon.smithi170 (mon.0) 934 : cluster 0 osdmap e63: 8 total, 8 up, 8 in 2024-03-24T12:18:46.663 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:46 smithi172 bash[23876]: cluster 2024-03-24T12:18:45.006396+0000 mgr.smithi170.xkyvyq (mgr.14199) 303 : cluster 0 pgmap v261: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 102 B/s rd, 0 op/s 2024-03-24T12:18:46.663 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:46 smithi172 bash[23876]: audit 2024-03-24T12:18:45.405546+0000 mgr.smithi170.xkyvyq (mgr.14199) 304 : audit 0 from='client.14624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-24T12:18:46.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:46 smithi172 bash[23876]: cluster 2024-03-24T12:18:45.416411+0000 mon.smithi170 (mon.0) 934 : cluster 0 osdmap e63: 8 total, 8 up, 8 in 2024-03-24T12:18:48.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:48 smithi170 bash[18738]: cluster 2024-03-24T12:18:47.007119+0000 mgr.smithi170.xkyvyq (mgr.14199) 305 : cluster 0 pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-03-24T12:18:48.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:48 smithi170 bash[18738]: audit 2024-03-24T12:18:47.214877+0000 mon.smithi170 (mon.0) 935 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:48.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:48 smithi170 bash[18738]: audit 2024-03-24T12:18:47.220998+0000 mon.smithi170 (mon.0) 936 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:48.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:48 smithi170 bash[18738]: audit 2024-03-24T12:18:47.260808+0000 mon.smithi170 (mon.0) 937 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-24T12:18:48.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:48 smithi170 bash[18738]: audit 2024-03-24T12:18:47.261293+0000 mgr.smithi170.xkyvyq (mgr.14199) 306 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-24T12:18:48.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:48 smithi170 bash[18738]: audit 2024-03-24T12:18:47.269878+0000 mon.smithi170 (mon.0) 938 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:18:48.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:48 smithi172 bash[23876]: cluster 2024-03-24T12:18:47.007119+0000 mgr.smithi170.xkyvyq (mgr.14199) 305 : cluster 0 pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-03-24T12:18:48.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:48 smithi172 bash[23876]: audit 2024-03-24T12:18:47.214877+0000 mon.smithi170 (mon.0) 935 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:48.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:48 smithi172 bash[23876]: audit 2024-03-24T12:18:47.220998+0000 mon.smithi170 (mon.0) 936 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:48.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:48 smithi172 bash[23876]: audit 2024-03-24T12:18:47.260808+0000 mon.smithi170 (mon.0) 937 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-24T12:18:48.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:48 smithi172 bash[23876]: audit 2024-03-24T12:18:47.261293+0000 mgr.smithi170.xkyvyq (mgr.14199) 306 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-24T12:18:48.664 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:48 smithi172 bash[23876]: audit 2024-03-24T12:18:47.269878+0000 mon.smithi170 (mon.0) 938 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:18:50.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:50 smithi170 bash[18738]: cluster 2024-03-24T12:18:49.008583+0000 mgr.smithi170.xkyvyq (mgr.14199) 307 : cluster 0 pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-03-24T12:18:50.663 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:50 smithi172 bash[23876]: cluster 2024-03-24T12:18:49.008583+0000 mgr.smithi170.xkyvyq (mgr.14199) 307 : cluster 0 pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-03-24T12:18:52.482 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:18:52.506 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:52 smithi170 bash[18738]: cluster 2024-03-24T12:18:51.010314+0000 mgr.smithi170.xkyvyq (mgr.14199) 308 : cluster 0 pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-03-24T12:18:52.663 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:52 smithi172 bash[23876]: cluster 2024-03-24T12:18:51.010314+0000 mgr.smithi170.xkyvyq (mgr.14199) 308 : cluster 0 pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-03-24T12:18:54.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:54 smithi172 bash[23876]: cluster 2024-03-24T12:18:53.010918+0000 mgr.smithi170.xkyvyq (mgr.14199) 309 : cluster 0 pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 118 B/s rd, 0 op/s 2024-03-24T12:18:54.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:54 smithi172 bash[23876]: audit 2024-03-24T12:18:53.056019+0000 mon.smithi170 (mon.0) 939 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:54.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:54 smithi172 bash[23876]: audit 2024-03-24T12:18:53.061561+0000 mon.smithi170 (mon.0) 940 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:54.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:54 smithi172 bash[23876]: audit 2024-03-24T12:18:53.710024+0000 mon.smithi170 (mon.0) 941 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:54.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:54 smithi172 bash[23876]: audit 2024-03-24T12:18:53.718499+0000 mon.smithi170 (mon.0) 942 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:54.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:54 smithi172 bash[23876]: audit 2024-03-24T12:18:53.719713+0000 mon.smithi170 (mon.0) 943 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:18:54.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:54 smithi172 bash[23876]: audit 2024-03-24T12:18:53.720434+0000 mon.smithi170 (mon.0) 944 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:18:54.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:54 smithi172 bash[23876]: audit 2024-03-24T12:18:53.988653+0000 mon.smithi170 (mon.0) 945 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:54.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:54 smithi172 bash[23876]: audit 2024-03-24T12:18:53.992616+0000 mon.smithi170 (mon.0) 946 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:18:54.415 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:54 smithi172 bash[23876]: audit 2024-03-24T12:18:54.004052+0000 mon.smithi170 (mon.0) 947 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:54.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:54 smithi170 bash[18738]: cluster 2024-03-24T12:18:53.010918+0000 mgr.smithi170.xkyvyq (mgr.14199) 309 : cluster 0 pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 118 B/s rd, 0 op/s 2024-03-24T12:18:54.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:54 smithi170 bash[18738]: audit 2024-03-24T12:18:53.056019+0000 mon.smithi170 (mon.0) 939 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:54.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:54 smithi170 bash[18738]: audit 2024-03-24T12:18:53.061561+0000 mon.smithi170 (mon.0) 940 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:54.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:54 smithi170 bash[18738]: audit 2024-03-24T12:18:53.710024+0000 mon.smithi170 (mon.0) 941 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:54.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:54 smithi170 bash[18738]: audit 2024-03-24T12:18:53.718499+0000 mon.smithi170 (mon.0) 942 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:54.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:54 smithi170 bash[18738]: audit 2024-03-24T12:18:53.719713+0000 mon.smithi170 (mon.0) 943 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:18:54.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:54 smithi170 bash[18738]: audit 2024-03-24T12:18:53.720434+0000 mon.smithi170 (mon.0) 944 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:18:54.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:54 smithi170 bash[18738]: audit 2024-03-24T12:18:53.988653+0000 mon.smithi170 (mon.0) 945 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:54.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:54 smithi170 bash[18738]: audit 2024-03-24T12:18:53.992616+0000 mon.smithi170 (mon.0) 946 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:18:54.469 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:54 smithi170 bash[18738]: audit 2024-03-24T12:18:54.004052+0000 mon.smithi170 (mon.0) 947 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:18:55.405 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-03-24T12:18:55.405 INFO:teuthology.orchestra.run.smithi170.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-03-24T12:09:57.926415Z", "last_refresh": "2024-03-24T12:18:53.702834Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-03-24T12:11:54.414989Z service:ceph-exporter [ERROR] \"Failed while placing ceph-exporter.smithi172 on smithi172: cephadm exited with an error code: 1, stderr: Non-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter-smithi172\nNon-zero exit code 1 from /usr/bin/docker container inspect --format {{.State.Status}} ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172\n/usr/bin/docker: stdout \n/usr/bin/docker: stderr Error response from daemon: No such container: ceph-158785cc-e9d7-11ee-95cd-87774f69a715-ceph-exporter.smithi172\nDeploy daemon ceph-exporter.smithi172 ...\nERROR: Directory does not exist. Got: /var/run/ceph/\"", "2024-03-24T12:12:15.185250Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-03-24T12:09:50.509781Z", "last_refresh": "2024-03-24T12:18:53.049553Z", "running": 2, "size": 2}}, {"events": ["2024-03-24T12:11:57.761249Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-03-24T12:09:48.575713Z", "last_refresh": "2024-03-24T12:18:53.049054Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-03-24T12:09:54.126703Z", "last_refresh": "2024-03-24T12:18:53.702943Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-03-24T12:18:33.419314Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.170/16"}, "status": {"created": "2024-03-24T12:17:43.323994Z", "last_refresh": "2024-03-24T12:18:53.050244Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.170/16"}}, {"events": ["2024-03-24T12:12:02.045051Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-03-24T12:09:46.685794Z", "last_refresh": "2024-03-24T12:18:53.049321Z", "running": 2, "size": 2}}, {"events": ["2024-03-24T12:12:05.988526Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi170:172.21.15.170=smithi170", "smithi172:172.21.15.172=smithi172"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-03-24T12:11:35.339016Z", "last_refresh": "2024-03-24T12:18:53.049438Z", "running": 2, "size": 2}}, {"events": ["2024-03-24T12:18:54.004265Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-03-24T12:17:43.316168Z", "last_refresh": "2024-03-24T12:18:53.703836Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-03-24T12:11:58.842530Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-03-24T12:09:56.033959Z", "last_refresh": "2024-03-24T12:18:53.049201Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-03-24T12:12:31.070302Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-03-24T12:12:31.066079Z", "last_refresh": "2024-03-24T12:18:53.049665Z", "running": 8, "size": 8}}, {"events": ["2024-03-24T12:12:05.998286Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-03-24T12:09:52.252807Z", "last_refresh": "2024-03-24T12:18:53.703050Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-03-24T12:17:49.255170Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-03-24T12:17:49.246706Z", "last_refresh": "2024-03-24T12:18:53.050130Z", "ports": [8800], "running": 2, "size": 2}}] 2024-03-24T12:18:55.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:55 smithi172 bash[23876]: cephadm 2024-03-24T12:18:53.724674+0000 mgr.smithi170.xkyvyq (mgr.14199) 310 : cephadm 1 Checking dashboard <-> RGW credentials 2024-03-24T12:18:55.418 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:55 smithi170 bash[18738]: cephadm 2024-03-24T12:18:53.724674+0000 mgr.smithi170.xkyvyq (mgr.14199) 310 : cephadm 1 Checking dashboard <-> RGW credentials 2024-03-24T12:18:56.114 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-03-24T12:18:56.114 INFO:teuthology.run_tasks:Running task vip.exec... 2024-03-24T12:18:56.127 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:18:56.127 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-03-24T12:18:56.167 INFO:teuthology.orchestra.run.smithi170.stderr:+ mkdir /mnt/foo 2024-03-24T12:18:56.177 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-03-24T12:18:56.230 INFO:teuthology.orchestra.run.smithi170.stderr:+ sleep 5 2024-03-24T12:18:56.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:56 smithi172 bash[23876]: cluster 2024-03-24T12:18:55.012112+0000 mgr.smithi170.xkyvyq (mgr.14199) 311 : cluster 0 pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 511 B/s rd, 0 op/s 2024-03-24T12:18:56.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:56 smithi172 bash[23876]: audit 2024-03-24T12:18:55.400169+0000 mgr.smithi170.xkyvyq (mgr.14199) 312 : audit 0 from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-24T12:18:56.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:56 smithi170 bash[18738]: cluster 2024-03-24T12:18:55.012112+0000 mgr.smithi170.xkyvyq (mgr.14199) 311 : cluster 0 pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 511 B/s rd, 0 op/s 2024-03-24T12:18:56.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:56 smithi170 bash[18738]: audit 2024-03-24T12:18:55.400169+0000 mgr.smithi170.xkyvyq (mgr.14199) 312 : audit 0 from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-03-24T12:18:58.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:58 smithi172 bash[23876]: cluster 2024-03-24T12:18:57.013362+0000 mgr.smithi170.xkyvyq (mgr.14199) 313 : cluster 0 pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.3 KiB/s rd, 1 op/s 2024-03-24T12:18:58.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:58 smithi170 bash[18738]: cluster 2024-03-24T12:18:57.013362+0000 mgr.smithi170.xkyvyq (mgr.14199) 313 : cluster 0 pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.3 KiB/s rd, 1 op/s 2024-03-24T12:18:59.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:18:59 smithi172 bash[23876]: audit 2024-03-24T12:18:58.921526+0000 mon.smithi170 (mon.0) 948 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:18:59.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:18:59 smithi170 bash[18738]: audit 2024-03-24T12:18:58.921526+0000 mon.smithi170 (mon.0) 948 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:19:00.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:00 smithi172 bash[23876]: cluster 2024-03-24T12:18:59.014710+0000 mgr.smithi170.xkyvyq (mgr.14199) 314 : cluster 0 pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-03-24T12:19:00.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:00 smithi170 bash[18738]: cluster 2024-03-24T12:18:59.014710+0000 mgr.smithi170.xkyvyq (mgr.14199) 314 : cluster 0 pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-03-24T12:19:01.234 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.170:/foobucket /mnt/foo' 2024-03-24T12:19:01.287 INFO:teuthology.orchestra.run.smithi170.stderr:+ mount -t nfs 10.0.31.170:/foobucket /mnt/foo 2024-03-24T12:19:01.593 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-03-24T12:19:01.645 INFO:teuthology.orchestra.run.smithi170.stderr:+ find /mnt/foo -ls 2024-03-24T12:19:01.655 INFO:teuthology.orchestra.run.smithi170.stdout:18304478605914051910 0 drwxrwxrwx 1 root root 0 Mar 24 12:18 /mnt/foo 2024-03-24T12:19:01.655 INFO:teuthology.orchestra.run.smithi170.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Mar 24 12:18 /mnt/foo/myobject 2024-03-24T12:19:01.656 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/myobject' 2024-03-24T12:19:01.710 INFO:teuthology.orchestra.run.smithi170.stderr:+ grep thebody /mnt/foo/myobject 2024-03-24T12:19:01.715 INFO:teuthology.orchestra.run.smithi170.stdout:thebody 2024-03-24T12:19:01.716 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/newobject' 2024-03-24T12:19:01.768 INFO:teuthology.orchestra.run.smithi170.stderr:+ echo test 2024-03-24T12:19:01.798 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-03-24T12:19:01.858 INFO:teuthology.orchestra.run.smithi170.stderr:+ sync 2024-03-24T12:19:02.218 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:02 smithi170 bash[18738]: cluster 2024-03-24T12:19:01.016510+0000 mgr.smithi170.xkyvyq (mgr.14199) 315 : cluster 0 pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-03-24T12:19:02.233 INFO:teuthology.run_tasks:Running task python... 2024-03-24T12:19:02.243 INFO:tasks.python:Running python on role host.a host ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:19:02.243 INFO:tasks.python:import boto3 import json from io import BytesIO with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') data = BytesIO() bucket.download_fileobj(Fileobj=data, Key='newobject') print(data.getvalue()) assert data.getvalue().decode() == 'test\n' 2024-03-24T12:19:02.243 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-03-24T12:19:02.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:02 smithi172 bash[23876]: cluster 2024-03-24T12:19:01.016510+0000 mgr.smithi170.xkyvyq (mgr.14199) 315 : cluster 0 pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-03-24T12:19:02.563 INFO:teuthology.orchestra.run.smithi170.stdout:b'test\n' 2024-03-24T12:19:02.616 INFO:teuthology.run_tasks:Running task vip.exec... 2024-03-24T12:19:02.626 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:19:02.626 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-03-24T12:19:02.635 INFO:teuthology.orchestra.run.smithi170.stderr:+ umount /mnt/foo 2024-03-24T12:19:02.673 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-24T12:19:02.682 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:19:02.682 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph nfs export rm foo /foobucket' 2024-03-24T12:19:04.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:04 smithi172 bash[23876]: cluster 2024-03-24T12:19:03.017265+0000 mgr.smithi170.xkyvyq (mgr.14199) 316 : cluster 0 pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-03-24T12:19:04.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:04 smithi170 bash[18738]: cluster 2024-03-24T12:19:03.017265+0000 mgr.smithi170.xkyvyq (mgr.14199) 316 : cluster 0 pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-03-24T12:19:06.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:06 smithi172 bash[23876]: cluster 2024-03-24T12:19:05.019448+0000 mgr.smithi170.xkyvyq (mgr.14199) 317 : cluster 0 pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 8.2 KiB/s rd, 511 B/s wr, 11 op/s 2024-03-24T12:19:06.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:06 smithi170 bash[18738]: cluster 2024-03-24T12:19:05.019448+0000 mgr.smithi170.xkyvyq (mgr.14199) 317 : cluster 0 pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 8.2 KiB/s rd, 511 B/s wr, 11 op/s 2024-03-24T12:19:07.549 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:19:08.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:08 smithi172 bash[23876]: cluster 2024-03-24T12:19:07.020551+0000 mgr.smithi170.xkyvyq (mgr.14199) 318 : cluster 0 pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 511 B/s wr, 11 op/s 2024-03-24T12:19:08.423 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:08 smithi170 bash[18738]: cluster 2024-03-24T12:19:07.020551+0000 mgr.smithi170.xkyvyq (mgr.14199) 318 : cluster 0 pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 511 B/s wr, 11 op/s 2024-03-24T12:19:10.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:10 smithi172 bash[23876]: cluster 2024-03-24T12:19:09.021877+0000 mgr.smithi170.xkyvyq (mgr.14199) 319 : cluster 0 pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 8.1 KiB/s rd, 511 B/s wr, 10 op/s 2024-03-24T12:19:10.466 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:10 smithi170 bash[18738]: cluster 2024-03-24T12:19:09.021877+0000 mgr.smithi170.xkyvyq (mgr.14199) 319 : cluster 0 pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 8.1 KiB/s rd, 511 B/s wr, 10 op/s 2024-03-24T12:19:11.190 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph nfs cluster rm foo' 2024-03-24T12:19:11.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:11 smithi172 bash[23876]: audit 2024-03-24T12:19:10.458107+0000 mgr.smithi170.xkyvyq (mgr.14199) 320 : audit 0 from='client.14654 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:19:11.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:11 smithi170 bash[18738]: audit 2024-03-24T12:19:10.458107+0000 mgr.smithi170.xkyvyq (mgr.14199) 320 : audit 0 from='client.14654 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:19:12.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:12 smithi172 bash[23876]: cluster 2024-03-24T12:19:11.023520+0000 mgr.smithi170.xkyvyq (mgr.14199) 321 : cluster 0 pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 511 B/s wr, 10 op/s 2024-03-24T12:19:12.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:12 smithi170 bash[18738]: cluster 2024-03-24T12:19:11.023520+0000 mgr.smithi170.xkyvyq (mgr.14199) 321 : cluster 0 pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 511 B/s wr, 10 op/s 2024-03-24T12:19:14.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:14 smithi172 bash[23876]: cluster 2024-03-24T12:19:13.024254+0000 mgr.smithi170.xkyvyq (mgr.14199) 322 : cluster 0 pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 511 B/s wr, 10 op/s 2024-03-24T12:19:14.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:14 smithi172 bash[23876]: audit 2024-03-24T12:19:13.921815+0000 mon.smithi170 (mon.0) 949 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:19:14.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:14 smithi170 bash[18738]: cluster 2024-03-24T12:19:13.024254+0000 mgr.smithi170.xkyvyq (mgr.14199) 322 : cluster 0 pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 511 B/s wr, 10 op/s 2024-03-24T12:19:14.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:14 smithi170 bash[18738]: audit 2024-03-24T12:19:13.921815+0000 mon.smithi170 (mon.0) 949 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:19:16.013 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:19:16.663 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:16 smithi172 bash[23876]: cluster 2024-03-24T12:19:15.026092+0000 mgr.smithi170.xkyvyq (mgr.14199) 323 : cluster 0 pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 511 B/s wr, 11 op/s 2024-03-24T12:19:16.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:16 smithi170 bash[18738]: cluster 2024-03-24T12:19:15.026092+0000 mgr.smithi170.xkyvyq (mgr.14199) 323 : cluster 0 pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 511 B/s wr, 11 op/s 2024-03-24T12:19:18.663 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:18 smithi172 bash[23876]: cluster 2024-03-24T12:19:17.026844+0000 mgr.smithi170.xkyvyq (mgr.14199) 324 : cluster 0 pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 0 B/s wr, 1 op/s 2024-03-24T12:19:18.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:18 smithi170 bash[18738]: cluster 2024-03-24T12:19:17.026844+0000 mgr.smithi170.xkyvyq (mgr.14199) 324 : cluster 0 pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 0 B/s wr, 1 op/s 2024-03-24T12:19:19.525 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-03-24T12:19:19.536 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:19:19.537 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-03-24T12:19:19.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:19 smithi170 bash[18738]: audit 2024-03-24T12:19:18.741489+0000 mgr.smithi170.xkyvyq (mgr.14199) 325 : audit 0 from='client.14658 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:19:19.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:19 smithi170 bash[18738]: cephadm 2024-03-24T12:19:18.751160+0000 mgr.smithi170.xkyvyq (mgr.14199) 326 : cephadm 1 Remove service ingress.nfs.foo 2024-03-24T12:19:19.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:19 smithi170 bash[18738]: audit 2024-03-24T12:19:18.757634+0000 mon.smithi170 (mon.0) 950 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:19.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:19 smithi170 bash[18738]: cephadm 2024-03-24T12:19:18.758862+0000 mgr.smithi170.xkyvyq (mgr.14199) 327 : cephadm 1 Remove service nfs.foo 2024-03-24T12:19:19.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:19 smithi170 bash[18738]: audit 2024-03-24T12:19:18.764792+0000 mon.smithi170 (mon.0) 951 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:19.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:19 smithi170 bash[18738]: audit 2024-03-24T12:19:18.798859+0000 mon.smithi170 (mon.0) 952 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:19:19.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:19 smithi170 bash[18738]: cluster 2024-03-24T12:19:19.027528+0000 mgr.smithi170.xkyvyq (mgr.14199) 328 : cluster 0 pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-03-24T12:19:20.163 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:19 smithi172 bash[23876]: audit 2024-03-24T12:19:18.741489+0000 mgr.smithi170.xkyvyq (mgr.14199) 325 : audit 0 from='client.14658 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:19:20.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:19 smithi172 bash[23876]: cephadm 2024-03-24T12:19:18.751160+0000 mgr.smithi170.xkyvyq (mgr.14199) 326 : cephadm 1 Remove service ingress.nfs.foo 2024-03-24T12:19:20.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:19 smithi172 bash[23876]: audit 2024-03-24T12:19:18.757634+0000 mon.smithi170 (mon.0) 950 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:20.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:19 smithi172 bash[23876]: cephadm 2024-03-24T12:19:18.758862+0000 mgr.smithi170.xkyvyq (mgr.14199) 327 : cephadm 1 Remove service nfs.foo 2024-03-24T12:19:20.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:19 smithi172 bash[23876]: audit 2024-03-24T12:19:18.764792+0000 mon.smithi170 (mon.0) 951 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:20.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:19 smithi172 bash[23876]: audit 2024-03-24T12:19:18.798859+0000 mon.smithi170 (mon.0) 952 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:19:20.164 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:19 smithi172 bash[23876]: cluster 2024-03-24T12:19:19.027528+0000 mgr.smithi170.xkyvyq (mgr.14199) 328 : cluster 0 pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-03-24T12:19:22.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:22 smithi172 bash[23876]: cluster 2024-03-24T12:19:21.029186+0000 mgr.smithi170.xkyvyq (mgr.14199) 329 : cluster 0 pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-03-24T12:19:22.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:22 smithi170 bash[18738]: cluster 2024-03-24T12:19:21.029186+0000 mgr.smithi170.xkyvyq (mgr.14199) 329 : cluster 0 pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-03-24T12:19:23.833 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:19:24.218 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:24 smithi170 bash[18738]: cluster 2024-03-24T12:19:23.029956+0000 mgr.smithi170.xkyvyq (mgr.14199) 330 : cluster 0 pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 B/s wr, 0 op/s 2024-03-24T12:19:24.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:24 smithi172 bash[23876]: cluster 2024-03-24T12:19:23.029956+0000 mgr.smithi170.xkyvyq (mgr.14199) 330 : cluster 0 pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 B/s wr, 0 op/s 2024-03-24T12:19:25.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:25 smithi170 bash[18738]: audit 2024-03-24T12:19:24.590280+0000 mon.smithi170 (mon.0) 953 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:25.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:25 smithi170 bash[18738]: audit 2024-03-24T12:19:24.596414+0000 mon.smithi170 (mon.0) 954 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:25.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:25 smithi170 bash[18738]: audit 2024-03-24T12:19:25.040679+0000 mon.smithi170 (mon.0) 955 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:25.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:25 smithi170 bash[18738]: audit 2024-03-24T12:19:25.046489+0000 mon.smithi170 (mon.0) 956 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:25.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:25 smithi170 bash[18738]: audit 2024-03-24T12:19:25.047699+0000 mon.smithi170 (mon.0) 957 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:19:25.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:25 smithi170 bash[18738]: audit 2024-03-24T12:19:25.048393+0000 mon.smithi170 (mon.0) 958 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:19:25.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:25 smithi170 bash[18738]: audit 2024-03-24T12:19:25.052580+0000 mon.smithi170 (mon.0) 959 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:25.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:25 smithi170 bash[18738]: audit 2024-03-24T12:19:25.055429+0000 mon.smithi170 (mon.0) 960 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:19:25.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:25 smithi172 bash[23876]: audit 2024-03-24T12:19:24.590280+0000 mon.smithi170 (mon.0) 953 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:25.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:25 smithi172 bash[23876]: audit 2024-03-24T12:19:24.596414+0000 mon.smithi170 (mon.0) 954 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:25.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:25 smithi172 bash[23876]: audit 2024-03-24T12:19:25.040679+0000 mon.smithi170 (mon.0) 955 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:25.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:25 smithi172 bash[23876]: audit 2024-03-24T12:19:25.046489+0000 mon.smithi170 (mon.0) 956 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:25.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:25 smithi172 bash[23876]: audit 2024-03-24T12:19:25.047699+0000 mon.smithi170 (mon.0) 957 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:19:25.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:25 smithi172 bash[23876]: audit 2024-03-24T12:19:25.048393+0000 mon.smithi170 (mon.0) 958 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:19:25.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:25 smithi172 bash[23876]: audit 2024-03-24T12:19:25.052580+0000 mon.smithi170 (mon.0) 959 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:25.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:25 smithi172 bash[23876]: audit 2024-03-24T12:19:25.055429+0000 mon.smithi170 (mon.0) 960 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:19:26.458 INFO:teuthology.orchestra.run.smithi170.stdout:167 167 2024-03-24T12:19:26.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:26 smithi170 bash[18738]: cluster 2024-03-24T12:19:25.030803+0000 mgr.smithi170.xkyvyq (mgr.14199) 331 : cluster 0 pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 B/s wr, 0 op/s 2024-03-24T12:19:26.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:26 smithi170 bash[18738]: cephadm 2024-03-24T12:19:25.112537+0000 mgr.smithi170.xkyvyq (mgr.14199) 332 : cephadm 1 Removing orphan daemon nfs.foo.0.0.smithi170.unvgwc... 2024-03-24T12:19:26.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:26 smithi170 bash[18738]: cephadm 2024-03-24T12:19:25.112721+0000 mgr.smithi170.xkyvyq (mgr.14199) 333 : cephadm 1 Removing daemon nfs.foo.0.0.smithi170.unvgwc from smithi170 -- ports [12049] 2024-03-24T12:19:26.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:26 smithi172 bash[23876]: cluster 2024-03-24T12:19:25.030803+0000 mgr.smithi170.xkyvyq (mgr.14199) 331 : cluster 0 pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 B/s wr, 0 op/s 2024-03-24T12:19:26.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:26 smithi172 bash[23876]: cephadm 2024-03-24T12:19:25.112537+0000 mgr.smithi170.xkyvyq (mgr.14199) 332 : cephadm 1 Removing orphan daemon nfs.foo.0.0.smithi170.unvgwc... 2024-03-24T12:19:26.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:26 smithi172 bash[23876]: cephadm 2024-03-24T12:19:25.112721+0000 mgr.smithi170.xkyvyq (mgr.14199) 333 : cephadm 1 Removing daemon nfs.foo.0.0.smithi170.unvgwc from smithi170 -- ports [12049] 2024-03-24T12:19:27.195 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch status' 2024-03-24T12:19:28.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:28 smithi172 bash[23876]: cluster 2024-03-24T12:19:27.032070+0000 mgr.smithi170.xkyvyq (mgr.14199) 334 : cluster 0 pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 B/s wr, 0 op/s 2024-03-24T12:19:28.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:28 smithi170 bash[18738]: cluster 2024-03-24T12:19:27.032070+0000 mgr.smithi170.xkyvyq (mgr.14199) 334 : cluster 0 pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 B/s wr, 0 op/s 2024-03-24T12:19:29.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:29 smithi172 bash[23876]: audit 2024-03-24T12:19:28.922134+0000 mon.smithi170 (mon.0) 961 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:19:29.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:29 smithi170 bash[18738]: audit 2024-03-24T12:19:28.922134+0000 mon.smithi170 (mon.0) 961 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:19:30.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:30 smithi172 bash[23876]: cluster 2024-03-24T12:19:29.033356+0000 mgr.smithi170.xkyvyq (mgr.14199) 335 : cluster 0 pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-24T12:19:30.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:30 smithi170 bash[18738]: cluster 2024-03-24T12:19:29.033356+0000 mgr.smithi170.xkyvyq (mgr.14199) 335 : cluster 0 pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-24T12:19:32.040 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:19:32.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:32 smithi172 bash[23876]: cluster 2024-03-24T12:19:31.035082+0000 mgr.smithi170.xkyvyq (mgr.14199) 336 : cluster 0 pgmap v285: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-24T12:19:32.928 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:32 smithi170 bash[18738]: cluster 2024-03-24T12:19:31.035082+0000 mgr.smithi170.xkyvyq (mgr.14199) 336 : cluster 0 pgmap v285: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-24T12:19:34.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:34 smithi172 bash[23876]: cluster 2024-03-24T12:19:33.035811+0000 mgr.smithi170.xkyvyq (mgr.14199) 337 : cluster 0 pgmap v286: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-24T12:19:34.947 INFO:teuthology.orchestra.run.smithi170.stdout:Backend: cephadm 2024-03-24T12:19:34.947 INFO:teuthology.orchestra.run.smithi170.stdout:Available: Yes 2024-03-24T12:19:34.947 INFO:teuthology.orchestra.run.smithi170.stdout:Paused: No 2024-03-24T12:19:34.960 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:34 smithi170 bash[18738]: cluster 2024-03-24T12:19:33.035811+0000 mgr.smithi170.xkyvyq (mgr.14199) 337 : cluster 0 pgmap v286: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-24T12:19:35.615 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch ps' 2024-03-24T12:19:36.850 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:36 smithi170 bash[18738]: audit 2024-03-24T12:19:34.951857+0000 mgr.smithi170.xkyvyq (mgr.14199) 338 : audit 0 from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:19:36.851 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:36 smithi170 bash[18738]: cluster 2024-03-24T12:19:35.036638+0000 mgr.smithi170.xkyvyq (mgr.14199) 339 : cluster 0 pgmap v287: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-24T12:19:36.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:36 smithi172 bash[23876]: audit 2024-03-24T12:19:34.951857+0000 mgr.smithi170.xkyvyq (mgr.14199) 338 : audit 0 from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:19:36.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:36 smithi172 bash[23876]: cluster 2024-03-24T12:19:35.036638+0000 mgr.smithi170.xkyvyq (mgr.14199) 339 : cluster 0 pgmap v287: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-24T12:19:37.218 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:36 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:19:37.806 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:37 smithi170 bash[18738]: audit 2024-03-24T12:19:37.057051+0000 mon.smithi170 (mon.0) 962 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi170.unvgwc"}]: dispatch 2024-03-24T12:19:37.806 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:37 smithi170 bash[18738]: audit 2024-03-24T12:19:37.059255+0000 mon.smithi170 (mon.0) 963 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi170.unvgwc"}]': finished 2024-03-24T12:19:37.806 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:37 smithi170 bash[18738]: audit 2024-03-24T12:19:37.063844+0000 mon.smithi170 (mon.0) 964 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi170.unvgwc-rgw"}]: dispatch 2024-03-24T12:19:37.806 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:37 smithi170 bash[18738]: audit 2024-03-24T12:19:37.066300+0000 mon.smithi170 (mon.0) 965 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi170.unvgwc-rgw"}]': finished 2024-03-24T12:19:37.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:37 smithi172 bash[23876]: audit 2024-03-24T12:19:37.057051+0000 mon.smithi170 (mon.0) 962 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi170.unvgwc"}]: dispatch 2024-03-24T12:19:37.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:37 smithi172 bash[23876]: audit 2024-03-24T12:19:37.059255+0000 mon.smithi170 (mon.0) 963 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi170.unvgwc"}]': finished 2024-03-24T12:19:37.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:37 smithi172 bash[23876]: audit 2024-03-24T12:19:37.063844+0000 mon.smithi170 (mon.0) 964 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi170.unvgwc-rgw"}]: dispatch 2024-03-24T12:19:37.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:37 smithi172 bash[23876]: audit 2024-03-24T12:19:37.066300+0000 mon.smithi170 (mon.0) 965 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi170.unvgwc-rgw"}]': finished 2024-03-24T12:19:38.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:38 smithi172 bash[23876]: cluster 2024-03-24T12:19:37.037453+0000 mgr.smithi170.xkyvyq (mgr.14199) 340 : cluster 0 pgmap v288: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-24T12:19:38.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:38 smithi172 bash[23876]: cephadm 2024-03-24T12:19:37.056709+0000 mgr.smithi170.xkyvyq (mgr.14199) 341 : cephadm 1 Removing key for client.nfs.foo.0.0.smithi170.unvgwc 2024-03-24T12:19:38.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:38 smithi172 bash[23876]: cephadm 2024-03-24T12:19:37.063559+0000 mgr.smithi170.xkyvyq (mgr.14199) 342 : cephadm 1 Removing key for client.nfs.foo.0.0.smithi170.unvgwc-rgw 2024-03-24T12:19:38.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:38 smithi172 bash[23876]: cephadm 2024-03-24T12:19:37.070362+0000 mgr.smithi170.xkyvyq (mgr.14199) 343 : cephadm 1 Removing orphan daemon haproxy.nfs.foo.smithi170.vdrmab... 2024-03-24T12:19:38.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:38 smithi172 bash[23876]: cephadm 2024-03-24T12:19:37.070829+0000 mgr.smithi170.xkyvyq (mgr.14199) 344 : cephadm 1 Removing daemon haproxy.nfs.foo.smithi170.vdrmab from smithi170 -- ports [2049, 9049] 2024-03-24T12:19:38.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:38 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:19:38.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:38 smithi170 bash[18738]: cluster 2024-03-24T12:19:37.037453+0000 mgr.smithi170.xkyvyq (mgr.14199) 340 : cluster 0 pgmap v288: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-24T12:19:38.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:38 smithi170 bash[18738]: cephadm 2024-03-24T12:19:37.056709+0000 mgr.smithi170.xkyvyq (mgr.14199) 341 : cephadm 1 Removing key for client.nfs.foo.0.0.smithi170.unvgwc 2024-03-24T12:19:38.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:38 smithi170 bash[18738]: cephadm 2024-03-24T12:19:37.063559+0000 mgr.smithi170.xkyvyq (mgr.14199) 342 : cephadm 1 Removing key for client.nfs.foo.0.0.smithi170.unvgwc-rgw 2024-03-24T12:19:38.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:38 smithi170 bash[18738]: cephadm 2024-03-24T12:19:37.070362+0000 mgr.smithi170.xkyvyq (mgr.14199) 343 : cephadm 1 Removing orphan daemon haproxy.nfs.foo.smithi170.vdrmab... 2024-03-24T12:19:38.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:38 smithi170 bash[18738]: cephadm 2024-03-24T12:19:37.070829+0000 mgr.smithi170.xkyvyq (mgr.14199) 344 : cephadm 1 Removing daemon haproxy.nfs.foo.smithi170.vdrmab from smithi170 -- ports [2049, 9049] 2024-03-24T12:19:39.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:39 smithi172 bash[23876]: audit 2024-03-24T12:19:38.740105+0000 mon.smithi170 (mon.0) 966 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi170.vdrmab"}]: dispatch 2024-03-24T12:19:39.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:39 smithi170 bash[18738]: audit 2024-03-24T12:19:38.740105+0000 mon.smithi170 (mon.0) 966 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi170.vdrmab"}]: dispatch 2024-03-24T12:19:40.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:40 smithi172 bash[23876]: cephadm 2024-03-24T12:19:38.739573+0000 mgr.smithi170.xkyvyq (mgr.14199) 345 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi170.vdrmab 2024-03-24T12:19:40.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:40 smithi172 bash[23876]: cephadm 2024-03-24T12:19:38.741136+0000 mgr.smithi170.xkyvyq (mgr.14199) 346 : cephadm 1 Removing orphan daemon keepalived.nfs.foo.smithi170.ggaljt... 2024-03-24T12:19:40.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:40 smithi172 bash[23876]: cephadm 2024-03-24T12:19:38.741582+0000 mgr.smithi170.xkyvyq (mgr.14199) 347 : cephadm 1 Removing daemon keepalived.nfs.foo.smithi170.ggaljt from smithi170 -- ports [] 2024-03-24T12:19:40.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:40 smithi172 bash[23876]: cluster 2024-03-24T12:19:39.038311+0000 mgr.smithi170.xkyvyq (mgr.14199) 348 : cluster 0 pgmap v289: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-24T12:19:40.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:40 smithi170 bash[18738]: cephadm 2024-03-24T12:19:38.739573+0000 mgr.smithi170.xkyvyq (mgr.14199) 345 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi170.vdrmab 2024-03-24T12:19:40.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:40 smithi170 bash[18738]: cephadm 2024-03-24T12:19:38.741136+0000 mgr.smithi170.xkyvyq (mgr.14199) 346 : cephadm 1 Removing orphan daemon keepalived.nfs.foo.smithi170.ggaljt... 2024-03-24T12:19:40.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:40 smithi170 bash[18738]: cephadm 2024-03-24T12:19:38.741582+0000 mgr.smithi170.xkyvyq (mgr.14199) 347 : cephadm 1 Removing daemon keepalived.nfs.foo.smithi170.ggaljt from smithi170 -- ports [] 2024-03-24T12:19:40.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:40 smithi170 bash[18738]: cluster 2024-03-24T12:19:39.038311+0000 mgr.smithi170.xkyvyq (mgr.14199) 348 : cluster 0 pgmap v289: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-03-24T12:19:41.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:41 smithi170 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:19:41.525 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:19:41.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:41 smithi172 bash[23876]: cluster 2024-03-24T12:19:41.039214+0000 mgr.smithi170.xkyvyq (mgr.14199) 349 : cluster 0 pgmap v290: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:41.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:41 smithi172 bash[23876]: cephadm 2024-03-24T12:19:41.412038+0000 mgr.smithi170.xkyvyq (mgr.14199) 350 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi170.ggaljt 2024-03-24T12:19:41.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:41 smithi172 bash[23876]: audit 2024-03-24T12:19:41.412432+0000 mon.smithi170 (mon.0) 967 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi170.ggaljt"}]: dispatch 2024-03-24T12:19:41.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:41 smithi172 bash[23876]: cephadm 2024-03-24T12:19:41.415761+0000 mgr.smithi170.xkyvyq (mgr.14199) 351 : cephadm 1 Removing orphan daemon haproxy.nfs.foo.smithi172.xenkbq... 2024-03-24T12:19:41.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:41 smithi172 bash[23876]: cephadm 2024-03-24T12:19:41.416234+0000 mgr.smithi170.xkyvyq (mgr.14199) 352 : cephadm 1 Removing daemon haproxy.nfs.foo.smithi172.xenkbq from smithi172 -- ports [2049, 9049] 2024-03-24T12:19:41.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:41 smithi170 bash[18738]: cluster 2024-03-24T12:19:41.039214+0000 mgr.smithi170.xkyvyq (mgr.14199) 349 : cluster 0 pgmap v290: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:41.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:41 smithi170 bash[18738]: cephadm 2024-03-24T12:19:41.412038+0000 mgr.smithi170.xkyvyq (mgr.14199) 350 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi170.ggaljt 2024-03-24T12:19:41.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:41 smithi170 bash[18738]: audit 2024-03-24T12:19:41.412432+0000 mon.smithi170 (mon.0) 967 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi170.ggaljt"}]: dispatch 2024-03-24T12:19:41.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:41 smithi170 bash[18738]: cephadm 2024-03-24T12:19:41.415761+0000 mgr.smithi170.xkyvyq (mgr.14199) 351 : cephadm 1 Removing orphan daemon haproxy.nfs.foo.smithi172.xenkbq... 2024-03-24T12:19:41.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:41 smithi170 bash[18738]: cephadm 2024-03-24T12:19:41.416234+0000 mgr.smithi170.xkyvyq (mgr.14199) 352 : cephadm 1 Removing daemon haproxy.nfs.foo.smithi172.xenkbq from smithi172 -- ports [2049, 9049] 2024-03-24T12:19:42.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:42 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:19:43.218 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:43 smithi170 bash[18738]: audit 2024-03-24T12:19:42.986374+0000 mon.smithi170 (mon.0) 968 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi172.xenkbq"}]: dispatch 2024-03-24T12:19:43.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:43 smithi172 bash[23876]: audit 2024-03-24T12:19:42.986374+0000 mon.smithi170 (mon.0) 968 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi172.xenkbq"}]: dispatch 2024-03-24T12:19:44.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:44 smithi172 bash[23876]: cephadm 2024-03-24T12:19:42.985636+0000 mgr.smithi170.xkyvyq (mgr.14199) 353 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi172.xenkbq 2024-03-24T12:19:44.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:44 smithi172 bash[23876]: cephadm 2024-03-24T12:19:42.987896+0000 mgr.smithi170.xkyvyq (mgr.14199) 354 : cephadm 1 Removing orphan daemon keepalived.nfs.foo.smithi172.yfmoda... 2024-03-24T12:19:44.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:44 smithi172 bash[23876]: cephadm 2024-03-24T12:19:42.988426+0000 mgr.smithi170.xkyvyq (mgr.14199) 355 : cephadm 1 Removing daemon keepalived.nfs.foo.smithi172.yfmoda from smithi172 -- ports [] 2024-03-24T12:19:44.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:44 smithi172 bash[23876]: cluster 2024-03-24T12:19:43.039958+0000 mgr.smithi170.xkyvyq (mgr.14199) 356 : cluster 0 pgmap v291: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:44.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:44 smithi172 bash[23876]: audit 2024-03-24T12:19:43.922762+0000 mon.smithi170 (mon.0) 969 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:19:44.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:44 smithi170 bash[18738]: cephadm 2024-03-24T12:19:42.985636+0000 mgr.smithi170.xkyvyq (mgr.14199) 353 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi172.xenkbq 2024-03-24T12:19:44.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:44 smithi170 bash[18738]: cephadm 2024-03-24T12:19:42.987896+0000 mgr.smithi170.xkyvyq (mgr.14199) 354 : cephadm 1 Removing orphan daemon keepalived.nfs.foo.smithi172.yfmoda... 2024-03-24T12:19:44.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:44 smithi170 bash[18738]: cephadm 2024-03-24T12:19:42.988426+0000 mgr.smithi170.xkyvyq (mgr.14199) 355 : cephadm 1 Removing daemon keepalived.nfs.foo.smithi172.yfmoda from smithi172 -- ports [] 2024-03-24T12:19:44.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:44 smithi170 bash[18738]: cluster 2024-03-24T12:19:43.039958+0000 mgr.smithi170.xkyvyq (mgr.14199) 356 : cluster 0 pgmap v291: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:44.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:44 smithi170 bash[18738]: audit 2024-03-24T12:19:43.922762+0000 mon.smithi170 (mon.0) 969 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:19:44.515 INFO:teuthology.orchestra.run.smithi170.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-03-24T12:19:44.515 INFO:teuthology.orchestra.run.smithi170.stdout:alertmanager.smithi170 smithi170 *:9093,9094 running (7m) 19s ago 8m 13.4M - 0.25.0 c8568f914cd2 91c51cd86a33 2024-03-24T12:19:44.515 INFO:teuthology.orchestra.run.smithi170.stdout:ceph-exporter.smithi170 smithi170 running (9m) 19s ago 9m 8664k - 19.0.0-1667-gdb0330b1 4f325f8440e9 a71c311efe46 2024-03-24T12:19:44.515 INFO:teuthology.orchestra.run.smithi170.stdout:ceph-exporter.smithi172 smithi172 running (7m) 19s ago 7m 8735k - 19.0.0-1667-gdb0330b1 4f325f8440e9 561db1315d87 2024-03-24T12:19:44.515 INFO:teuthology.orchestra.run.smithi170.stdout:crash.smithi170 smithi170 running (9m) 19s ago 9m 7123k - 19.0.0-1667-gdb0330b1 4f325f8440e9 8fbf63b3c63a 2024-03-24T12:19:44.515 INFO:teuthology.orchestra.run.smithi170.stdout:crash.smithi172 smithi172 running (7m) 19s ago 7m 7079k - 19.0.0-1667-gdb0330b1 4f325f8440e9 1cb65a4088fa 2024-03-24T12:19:44.515 INFO:teuthology.orchestra.run.smithi170.stdout:grafana.smithi170 smithi170 *:3000 running (7m) 19s ago 8m 76.2M - 9.4.12 a0ea5e3c46d9 95f56b453405 2024-03-24T12:19:44.515 INFO:teuthology.orchestra.run.smithi170.stdout:keepalived.nfs.foo.smithi172.yfmoda smithi172 running (71s) 19s ago 71s 2639k - 2.2.4 4a3a1ff181d9 92625d434f8b 2024-03-24T12:19:44.515 INFO:teuthology.orchestra.run.smithi170.stdout:mgr.smithi170.xkyvyq smithi170 *:9283,8765,8443 running (10m) 19s ago 10m 506M - 19.0.0-1667-gdb0330b1 4f325f8440e9 91ee089964d6 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:mgr.smithi172.uznkeq smithi172 *:8443,9283,8765 running (7m) 19s ago 7m 437M - 19.0.0-1667-gdb0330b1 4f325f8440e9 1957752ceb57 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:mon.smithi170 smithi170 running (10m) 19s ago 10m 46.6M 2048M 19.0.0-1667-gdb0330b1 4f325f8440e9 22be11c739ff 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:mon.smithi172 smithi172 running (7m) 19s ago 7m 36.9M 2048M 19.0.0-1667-gdb0330b1 4f325f8440e9 80d0b3ffa2f9 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:node-exporter.smithi170 smithi170 *:9100 running (9m) 19s ago 9m 8620k - 1.5.0 0da6a335fe13 90d90a78a373 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:node-exporter.smithi172 smithi172 *:9100 running (7m) 19s ago 7m 8731k - 1.5.0 0da6a335fe13 fa4a71bbb147 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:osd.0 smithi172 running (6m) 19s ago 6m 61.2M 3772M 19.0.0-1667-gdb0330b1 4f325f8440e9 36cd44db43ab 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:osd.1 smithi170 running (5m) 19s ago 6m 53.1M 3004M 19.0.0-1667-gdb0330b1 4f325f8440e9 d237c24b3baa 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:osd.2 smithi172 running (5m) 19s ago 6m 58.4M 3772M 19.0.0-1667-gdb0330b1 4f325f8440e9 e577a74f667d 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:osd.3 smithi170 running (5m) 19s ago 5m 52.4M 3004M 19.0.0-1667-gdb0330b1 4f325f8440e9 a180aa78c7a3 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:osd.4 smithi172 running (5m) 19s ago 5m 49.6M 3772M 19.0.0-1667-gdb0330b1 4f325f8440e9 867f39a9b2ca 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:osd.5 smithi170 running (5m) 19s ago 5m 54.3M 3004M 19.0.0-1667-gdb0330b1 4f325f8440e9 63431a39ff29 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:osd.6 smithi172 running (5m) 19s ago 5m 47.6M 3772M 19.0.0-1667-gdb0330b1 4f325f8440e9 d3275c684e0f 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:osd.7 smithi170 running (5m) 19s ago 5m 56.7M 3004M 19.0.0-1667-gdb0330b1 4f325f8440e9 4a30bc31f9f7 2024-03-24T12:19:44.516 INFO:teuthology.orchestra.run.smithi170.stdout:prometheus.smithi170 smithi170 *:9095 running (57s) 19s ago 8m 47.5M - 2.43.0 a07b618ecd1d e21997c7d1f6 2024-03-24T12:19:44.517 INFO:teuthology.orchestra.run.smithi170.stdout:rgw.foorgw.smithi170.jipxas smithi170 *:8800 running (115s) 19s ago 115s 89.3M - 19.0.0-1667-gdb0330b1 4f325f8440e9 1697a19061fb 2024-03-24T12:19:44.517 INFO:teuthology.orchestra.run.smithi170.stdout:rgw.foorgw.smithi172.tjined smithi172 *:8800 running (119s) 19s ago 119s 88.4M - 19.0.0-1667-gdb0330b1 4f325f8440e9 63d50f33f256 2024-03-24T12:19:45.237 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch ls' 2024-03-24T12:19:45.357 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:45 smithi172 bash[23876]: audit 2024-03-24T12:19:44.496175+0000 mgr.smithi170.xkyvyq (mgr.14199) 357 : audit 0 from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:19:45.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:45 smithi170 bash[18738]: audit 2024-03-24T12:19:44.496175+0000 mgr.smithi170.xkyvyq (mgr.14199) 357 : audit 0 from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:19:46.053 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:45 smithi172 systemd[1]: /etc/systemd/system/ceph-158785cc-e9d7-11ee-95cd-87774f69a715@.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-03-24T12:19:46.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:46 smithi172 bash[23876]: cluster 2024-03-24T12:19:45.041032+0000 mgr.smithi170.xkyvyq (mgr.14199) 358 : cluster 0 pgmap v292: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:46.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:46 smithi172 bash[23876]: audit 2024-03-24T12:19:45.920840+0000 mon.smithi170 (mon.0) 970 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi172.yfmoda"}]: dispatch 2024-03-24T12:19:46.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:46 smithi172 bash[23876]: audit 2024-03-24T12:19:46.007553+0000 mon.smithi170 (mon.0) 971 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]: dispatch 2024-03-24T12:19:46.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:46 smithi172 bash[23876]: audit 2024-03-24T12:19:46.011042+0000 mon.smithi170 (mon.0) 972 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-03-24T12:19:46.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:46 smithi172 bash[23876]: audit 2024-03-24T12:19:46.012002+0000 mon.smithi170 (mon.0) 973 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]: dispatch 2024-03-24T12:19:46.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:46 smithi172 bash[23876]: audit 2024-03-24T12:19:46.015836+0000 mon.smithi170 (mon.0) 974 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-03-24T12:19:46.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:46 smithi172 bash[23876]: audit 2024-03-24T12:19:46.017033+0000 mon.smithi170 (mon.0) 975 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:19:46.467 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:46 smithi170 bash[18738]: cluster 2024-03-24T12:19:45.041032+0000 mgr.smithi170.xkyvyq (mgr.14199) 358 : cluster 0 pgmap v292: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:46.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:46 smithi170 bash[18738]: audit 2024-03-24T12:19:45.920840+0000 mon.smithi170 (mon.0) 970 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi172.yfmoda"}]: dispatch 2024-03-24T12:19:46.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:46 smithi170 bash[18738]: audit 2024-03-24T12:19:46.007553+0000 mon.smithi170 (mon.0) 971 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]: dispatch 2024-03-24T12:19:46.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:46 smithi170 bash[18738]: audit 2024-03-24T12:19:46.011042+0000 mon.smithi170 (mon.0) 972 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-03-24T12:19:46.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:46 smithi170 bash[18738]: audit 2024-03-24T12:19:46.012002+0000 mon.smithi170 (mon.0) 973 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]: dispatch 2024-03-24T12:19:46.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:46 smithi170 bash[18738]: audit 2024-03-24T12:19:46.015836+0000 mon.smithi170 (mon.0) 974 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-03-24T12:19:46.468 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:46 smithi170 bash[18738]: audit 2024-03-24T12:19:46.017033+0000 mon.smithi170 (mon.0) 975 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:19:47.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:47 smithi172 bash[23876]: cephadm 2024-03-24T12:19:45.919978+0000 mgr.smithi170.xkyvyq (mgr.14199) 359 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi172.yfmoda 2024-03-24T12:19:47.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:47 smithi172 bash[23876]: cephadm 2024-03-24T12:19:45.933889+0000 mgr.smithi170.xkyvyq (mgr.14199) 360 : cephadm 1 Purge service nfs.foo 2024-03-24T12:19:47.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:47 smithi172 bash[23876]: cephadm 2024-03-24T12:19:45.934078+0000 mgr.smithi170.xkyvyq (mgr.14199) 361 : cephadm 1 Removing grace file for nfs.foo 2024-03-24T12:19:47.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:47 smithi172 bash[23876]: cephadm 2024-03-24T12:19:46.011701+0000 mgr.smithi170.xkyvyq (mgr.14199) 362 : cephadm 1 Purge service ingress.nfs.foo 2024-03-24T12:19:47.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:47 smithi172 bash[23876]: audit 2024-03-24T12:19:46.490216+0000 mon.smithi170 (mon.0) 976 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:47.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:47 smithi172 bash[23876]: audit 2024-03-24T12:19:46.495917+0000 mon.smithi170 (mon.0) 977 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:47.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:47 smithi170 bash[18738]: cephadm 2024-03-24T12:19:45.919978+0000 mgr.smithi170.xkyvyq (mgr.14199) 359 : cephadm 1 Removing key for client.ingress.nfs.foo.smithi172.yfmoda 2024-03-24T12:19:47.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:47 smithi170 bash[18738]: cephadm 2024-03-24T12:19:45.933889+0000 mgr.smithi170.xkyvyq (mgr.14199) 360 : cephadm 1 Purge service nfs.foo 2024-03-24T12:19:47.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:47 smithi170 bash[18738]: cephadm 2024-03-24T12:19:45.934078+0000 mgr.smithi170.xkyvyq (mgr.14199) 361 : cephadm 1 Removing grace file for nfs.foo 2024-03-24T12:19:47.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:47 smithi170 bash[18738]: cephadm 2024-03-24T12:19:46.011701+0000 mgr.smithi170.xkyvyq (mgr.14199) 362 : cephadm 1 Purge service ingress.nfs.foo 2024-03-24T12:19:47.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:47 smithi170 bash[18738]: audit 2024-03-24T12:19:46.490216+0000 mon.smithi170 (mon.0) 976 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:47.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:47 smithi170 bash[18738]: audit 2024-03-24T12:19:46.495917+0000 mon.smithi170 (mon.0) 977 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:48.663 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:48 smithi172 bash[23876]: cluster 2024-03-24T12:19:47.042803+0000 mgr.smithi170.xkyvyq (mgr.14199) 363 : cluster 0 pgmap v293: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:48.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:48 smithi170 bash[18738]: cluster 2024-03-24T12:19:47.042803+0000 mgr.smithi170.xkyvyq (mgr.14199) 363 : cluster 0 pgmap v293: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:50.031 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:19:50.867 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:50 smithi170 bash[18738]: cluster 2024-03-24T12:19:49.043660+0000 mgr.smithi170.xkyvyq (mgr.14199) 364 : cluster 0 pgmap v294: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:50.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:50 smithi172 bash[23876]: cluster 2024-03-24T12:19:49.043660+0000 mgr.smithi170.xkyvyq (mgr.14199) 364 : cluster 0 pgmap v294: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:52.854 INFO:teuthology.orchestra.run.smithi170.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-03-24T12:19:52.854 INFO:teuthology.orchestra.run.smithi170.stdout:alertmanager ?:9093,9094 1/1 0s ago 9m count:1 2024-03-24T12:19:52.854 INFO:teuthology.orchestra.run.smithi170.stdout:ceph-exporter 2/2 1s ago 10m * 2024-03-24T12:19:52.855 INFO:teuthology.orchestra.run.smithi170.stdout:crash 2/2 1s ago 10m * 2024-03-24T12:19:52.855 INFO:teuthology.orchestra.run.smithi170.stdout:grafana ?:3000 1/1 0s ago 9m count:1 2024-03-24T12:19:52.855 INFO:teuthology.orchestra.run.smithi170.stdout:mgr 2/2 1s ago 10m count:2 2024-03-24T12:19:52.855 INFO:teuthology.orchestra.run.smithi170.stdout:mon 2/2 1s ago 8m smithi170:172.21.15.170=smithi170;smithi172:172.21.15.172=smithi172;count:2 2024-03-24T12:19:52.855 INFO:teuthology.orchestra.run.smithi170.stdout:node-exporter ?:9100 2/2 1s ago 9m * 2024-03-24T12:19:52.855 INFO:teuthology.orchestra.run.smithi170.stdout:osd.all-available-devices 8 1s ago 7m * 2024-03-24T12:19:52.855 INFO:teuthology.orchestra.run.smithi170.stdout:prometheus ?:9095 1/1 0s ago 10m count:1 2024-03-24T12:19:52.855 INFO:teuthology.orchestra.run.smithi170.stdout:rgw.foorgw ?:8800 2/2 1s ago 2m count:2 2024-03-24T12:19:52.868 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:52 smithi170 bash[18738]: cluster 2024-03-24T12:19:51.044750+0000 mgr.smithi170.xkyvyq (mgr.14199) 365 : cluster 0 pgmap v295: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:52.868 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:52 smithi170 bash[18738]: audit 2024-03-24T12:19:51.601857+0000 mon.smithi170 (mon.0) 978 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:52.868 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:52 smithi170 bash[18738]: audit 2024-03-24T12:19:51.607251+0000 mon.smithi170 (mon.0) 979 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:52.869 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:52 smithi170 bash[18738]: audit 2024-03-24T12:19:51.996618+0000 mon.smithi170 (mon.0) 980 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:52.869 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:52 smithi170 bash[18738]: audit 2024-03-24T12:19:52.001546+0000 mon.smithi170 (mon.0) 981 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:52.869 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:52 smithi170 bash[18738]: audit 2024-03-24T12:19:52.589842+0000 mon.smithi170 (mon.0) 982 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:19:52.869 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:52 smithi170 bash[18738]: audit 2024-03-24T12:19:52.590929+0000 mon.smithi170 (mon.0) 983 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:19:52.869 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:52 smithi170 bash[18738]: audit 2024-03-24T12:19:52.596501+0000 mon.smithi170 (mon.0) 984 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:52.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:52 smithi172 bash[23876]: cluster 2024-03-24T12:19:51.044750+0000 mgr.smithi170.xkyvyq (mgr.14199) 365 : cluster 0 pgmap v295: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:52.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:52 smithi172 bash[23876]: audit 2024-03-24T12:19:51.601857+0000 mon.smithi170 (mon.0) 978 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:52.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:52 smithi172 bash[23876]: audit 2024-03-24T12:19:51.607251+0000 mon.smithi170 (mon.0) 979 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:52.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:52 smithi172 bash[23876]: audit 2024-03-24T12:19:51.996618+0000 mon.smithi170 (mon.0) 980 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:52.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:52 smithi172 bash[23876]: audit 2024-03-24T12:19:52.001546+0000 mon.smithi170 (mon.0) 981 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:52.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:52 smithi172 bash[23876]: audit 2024-03-24T12:19:52.589842+0000 mon.smithi170 (mon.0) 982 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:19:52.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:52 smithi172 bash[23876]: audit 2024-03-24T12:19:52.590929+0000 mon.smithi170 (mon.0) 983 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:19:52.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:52 smithi172 bash[23876]: audit 2024-03-24T12:19:52.596501+0000 mon.smithi170 (mon.0) 984 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:53.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:53 smithi172 bash[23876]: cluster 2024-03-24T12:19:52.593246+0000 mgr.smithi170.xkyvyq (mgr.14199) 366 : cluster 0 pgmap v296: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:53.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:53 smithi172 bash[23876]: audit 2024-03-24T12:19:52.601258+0000 mon.smithi170 (mon.0) 985 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:19:53.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:53 smithi172 bash[23876]: cluster 2024-03-24T12:19:53.000227+0000 mon.smithi170 (mon.0) 986 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-24T12:19:53.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:53 smithi170 bash[18738]: cluster 2024-03-24T12:19:52.593246+0000 mgr.smithi170.xkyvyq (mgr.14199) 366 : cluster 0 pgmap v296: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:53.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:53 smithi170 bash[18738]: audit 2024-03-24T12:19:52.601258+0000 mon.smithi170 (mon.0) 985 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:19:53.971 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:53 smithi170 bash[18738]: cluster 2024-03-24T12:19:53.000227+0000 mon.smithi170 (mon.0) 986 : cluster 3 Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-03-24T12:19:54.192 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch host ls' 2024-03-24T12:19:54.885 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:54 smithi170 bash[18738]: cephadm 2024-03-24T12:19:52.676769+0000 mgr.smithi170.xkyvyq (mgr.14199) 367 : cephadm 1 Reconfiguring prometheus.smithi170 (dependencies changed)... 2024-03-24T12:19:54.885 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:54 smithi170 bash[18738]: audit 2024-03-24T12:19:52.850690+0000 mgr.smithi170.xkyvyq (mgr.14199) 368 : audit 0 from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:19:54.885 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:54 smithi170 bash[18738]: cephadm 2024-03-24T12:19:52.897207+0000 mgr.smithi170.xkyvyq (mgr.14199) 369 : cephadm 1 Reconfiguring daemon prometheus.smithi170 on smithi170 2024-03-24T12:19:54.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:54 smithi172 bash[23876]: cephadm 2024-03-24T12:19:52.676769+0000 mgr.smithi170.xkyvyq (mgr.14199) 367 : cephadm 1 Reconfiguring prometheus.smithi170 (dependencies changed)... 2024-03-24T12:19:54.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:54 smithi172 bash[23876]: audit 2024-03-24T12:19:52.850690+0000 mgr.smithi170.xkyvyq (mgr.14199) 368 : audit 0 from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:19:54.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:54 smithi172 bash[23876]: cephadm 2024-03-24T12:19:52.897207+0000 mgr.smithi170.xkyvyq (mgr.14199) 369 : cephadm 1 Reconfiguring daemon prometheus.smithi170 on smithi170 2024-03-24T12:19:55.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:55 smithi172 bash[23876]: cluster 2024-03-24T12:19:54.594098+0000 mgr.smithi170.xkyvyq (mgr.14199) 370 : cluster 0 pgmap v297: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:55.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:55 smithi170 bash[18738]: cluster 2024-03-24T12:19:54.594098+0000 mgr.smithi170.xkyvyq (mgr.14199) 370 : cluster 0 pgmap v297: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:57.716 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:57 smithi170 bash[18738]: cluster 2024-03-24T12:19:56.595365+0000 mgr.smithi170.xkyvyq (mgr.14199) 371 : cluster 0 pgmap v298: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:57.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:57 smithi172 bash[23876]: cluster 2024-03-24T12:19:56.595365+0000 mgr.smithi170.xkyvyq (mgr.14199) 371 : cluster 0 pgmap v298: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:59.218 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:58 smithi170 bash[18738]: audit 2024-03-24T12:19:57.970314+0000 mon.smithi170 (mon.0) 987 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:59.218 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:58 smithi170 bash[18738]: audit 2024-03-24T12:19:57.976240+0000 mon.smithi170 (mon.0) 988 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:59.218 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:58 smithi170 bash[18738]: audit 2024-03-24T12:19:58.028073+0000 mon.smithi170 (mon.0) 989 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-24T12:19:59.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:58 smithi170 bash[18738]: audit 2024-03-24T12:19:58.028574+0000 mgr.smithi170.xkyvyq (mgr.14199) 372 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-24T12:19:59.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:58 smithi170 bash[18738]: audit 2024-03-24T12:19:58.034378+0000 mon.smithi170 (mon.0) 990 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:19:59.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:58 smithi170 bash[18738]: cluster 2024-03-24T12:19:58.596960+0000 mgr.smithi170.xkyvyq (mgr.14199) 373 : cluster 0 pgmap v299: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:59.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:58 smithi170 bash[18738]: audit 2024-03-24T12:19:58.925477+0000 mon.smithi170 (mon.0) 991 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:59.219 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:19:58 smithi170 bash[18738]: audit 2024-03-24T12:19:58.926641+0000 mon.smithi170 (mon.0) 992 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:19:59.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:58 smithi172 bash[23876]: audit 2024-03-24T12:19:57.970314+0000 mon.smithi170 (mon.0) 987 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:59.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:58 smithi172 bash[23876]: audit 2024-03-24T12:19:57.976240+0000 mon.smithi170 (mon.0) 988 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:59.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:58 smithi172 bash[23876]: audit 2024-03-24T12:19:58.028073+0000 mon.smithi170 (mon.0) 989 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-24T12:19:59.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:58 smithi172 bash[23876]: audit 2024-03-24T12:19:58.028574+0000 mgr.smithi170.xkyvyq (mgr.14199) 372 : audit 0 from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-03-24T12:19:59.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:58 smithi172 bash[23876]: audit 2024-03-24T12:19:58.034378+0000 mon.smithi170 (mon.0) 990 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-03-24T12:19:59.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:58 smithi172 bash[23876]: cluster 2024-03-24T12:19:58.596960+0000 mgr.smithi170.xkyvyq (mgr.14199) 373 : cluster 0 pgmap v299: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:19:59.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:58 smithi172 bash[23876]: audit 2024-03-24T12:19:58.925477+0000 mon.smithi170 (mon.0) 991 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:19:59.414 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:19:58 smithi172 bash[23876]: audit 2024-03-24T12:19:58.926641+0000 mon.smithi170 (mon.0) 992 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:19:59.417 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:20:00.364 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:00 smithi170 bash[18738]: cluster 2024-03-24T12:20:00.000218+0000 mon.smithi170 (mon.0) 993 : cluster 3 Health detail: HEALTH_WARN 1 stray daemon(s) not managed by cephadm 2024-03-24T12:20:00.364 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:00 smithi170 bash[18738]: cluster 2024-03-24T12:20:00.000270+0000 mon.smithi170 (mon.0) 994 : cluster 3 [WRN] CEPHADM_STRAY_DAEMON: 1 stray daemon(s) not managed by cephadm 2024-03-24T12:20:00.364 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:00 smithi170 bash[18738]: cluster 2024-03-24T12:20:00.000329+0000 mon.smithi170 (mon.0) 995 : cluster 3 stray daemon nfs.foo.0.0.smithi170.unvgwc on host smithi170 not managed by cephadm 2024-03-24T12:20:00.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:00 smithi172 bash[23876]: cluster 2024-03-24T12:20:00.000218+0000 mon.smithi170 (mon.0) 993 : cluster 3 Health detail: HEALTH_WARN 1 stray daemon(s) not managed by cephadm 2024-03-24T12:20:00.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:00 smithi172 bash[23876]: cluster 2024-03-24T12:20:00.000270+0000 mon.smithi170 (mon.0) 994 : cluster 3 [WRN] CEPHADM_STRAY_DAEMON: 1 stray daemon(s) not managed by cephadm 2024-03-24T12:20:00.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:00 smithi172 bash[23876]: cluster 2024-03-24T12:20:00.000329+0000 mon.smithi170 (mon.0) 995 : cluster 3 stray daemon nfs.foo.0.0.smithi170.unvgwc on host smithi170 not managed by cephadm 2024-03-24T12:20:01.413 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:01 smithi172 bash[23876]: cluster 2024-03-24T12:20:00.598732+0000 mgr.smithi170.xkyvyq (mgr.14199) 374 : cluster 0 pgmap v300: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:01.421 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:01 smithi170 bash[18738]: cluster 2024-03-24T12:20:00.598732+0000 mgr.smithi170.xkyvyq (mgr.14199) 374 : cluster 0 pgmap v300: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:02.508 INFO:teuthology.orchestra.run.smithi170.stdout:HOST ADDR LABELS STATUS 2024-03-24T12:20:02.508 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 172.21.15.170 2024-03-24T12:20:02.508 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 172.21.15.172 2024-03-24T12:20:02.509 INFO:teuthology.orchestra.run.smithi170.stdout:2 hosts in cluster 2024-03-24T12:20:02.801 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:02 smithi170 bash[18738]: audit 2024-03-24T12:20:02.511196+0000 mgr.smithi170.xkyvyq (mgr.14199) 375 : audit 0 from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:20:02.801 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:02 smithi170 bash[18738]: cluster 2024-03-24T12:20:02.599459+0000 mgr.smithi170.xkyvyq (mgr.14199) 376 : cluster 0 pgmap v301: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:03.163 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:02 smithi172 bash[23876]: audit 2024-03-24T12:20:02.511196+0000 mgr.smithi170.xkyvyq (mgr.14199) 375 : audit 0 from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:20:03.163 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:02 smithi172 bash[23876]: cluster 2024-03-24T12:20:02.599459+0000 mgr.smithi170.xkyvyq (mgr.14199) 376 : cluster 0 pgmap v301: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:03.293 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch device ls' 2024-03-24T12:20:04.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:04 smithi172 bash[23876]: audit 2024-03-24T12:20:03.586309+0000 mon.smithi170 (mon.0) 996 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:20:04.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:04 smithi172 bash[23876]: audit 2024-03-24T12:20:03.596942+0000 mon.smithi170 (mon.0) 997 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:20:04.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:04 smithi170 bash[18738]: audit 2024-03-24T12:20:03.586309+0000 mon.smithi170 (mon.0) 996 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:20:04.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:04 smithi170 bash[18738]: audit 2024-03-24T12:20:03.596942+0000 mon.smithi170 (mon.0) 997 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:20:05.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:05 smithi172 bash[23876]: cluster 2024-03-24T12:20:04.600381+0000 mgr.smithi170.xkyvyq (mgr.14199) 377 : cluster 0 pgmap v302: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:05.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:05 smithi172 bash[23876]: audit 2024-03-24T12:20:04.793057+0000 mon.smithi170 (mon.0) 998 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:20:05.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:05 smithi172 bash[23876]: audit 2024-03-24T12:20:04.801346+0000 mon.smithi170 (mon.0) 999 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:20:05.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:05 smithi172 bash[23876]: audit 2024-03-24T12:20:04.803453+0000 mon.smithi170 (mon.0) 1000 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:20:05.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:05 smithi172 bash[23876]: audit 2024-03-24T12:20:04.804955+0000 mon.smithi170 (mon.0) 1001 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:20:05.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:05 smithi172 bash[23876]: audit 2024-03-24T12:20:04.814505+0000 mon.smithi170 (mon.0) 1002 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:20:05.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:05 smithi172 bash[23876]: audit 2024-03-24T12:20:04.822199+0000 mon.smithi170 (mon.0) 1003 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:20:05.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:05 smithi170 bash[18738]: cluster 2024-03-24T12:20:04.600381+0000 mgr.smithi170.xkyvyq (mgr.14199) 377 : cluster 0 pgmap v302: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:05.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:05 smithi170 bash[18738]: audit 2024-03-24T12:20:04.793057+0000 mon.smithi170 (mon.0) 998 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:20:05.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:05 smithi170 bash[18738]: audit 2024-03-24T12:20:04.801346+0000 mon.smithi170 (mon.0) 999 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:20:05.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:05 smithi170 bash[18738]: audit 2024-03-24T12:20:04.803453+0000 mon.smithi170 (mon.0) 1000 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-03-24T12:20:05.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:05 smithi170 bash[18738]: audit 2024-03-24T12:20:04.804955+0000 mon.smithi170 (mon.0) 1001 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-03-24T12:20:05.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:05 smithi170 bash[18738]: audit 2024-03-24T12:20:04.814505+0000 mon.smithi170 (mon.0) 1002 : audit 1 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' 2024-03-24T12:20:05.969 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:05 smithi170 bash[18738]: audit 2024-03-24T12:20:04.822199+0000 mon.smithi170 (mon.0) 1003 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-03-24T12:20:06.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:06 smithi172 bash[23876]: cluster 2024-03-24T12:20:04.808472+0000 mgr.smithi170.xkyvyq (mgr.14199) 378 : cluster 0 pgmap v303: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:06.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:06 smithi172 bash[23876]: cluster 2024-03-24T12:20:04.809256+0000 mgr.smithi170.xkyvyq (mgr.14199) 379 : cluster 0 pgmap v304: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:06.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:06 smithi170 bash[18738]: cluster 2024-03-24T12:20:04.808472+0000 mgr.smithi170.xkyvyq (mgr.14199) 378 : cluster 0 pgmap v303: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:06.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:06 smithi170 bash[18738]: cluster 2024-03-24T12:20:04.809256+0000 mgr.smithi170.xkyvyq (mgr.14199) 379 : cluster 0 pgmap v304: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:07.874 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:20:08.851 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:08 smithi170 bash[18738]: cluster 2024-03-24T12:20:06.810550+0000 mgr.smithi170.xkyvyq (mgr.14199) 380 : cluster 0 pgmap v305: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:08.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:08 smithi172 bash[23876]: cluster 2024-03-24T12:20:06.810550+0000 mgr.smithi170.xkyvyq (mgr.14199) 380 : cluster 0 pgmap v305: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:10.718 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:10 smithi170 bash[18738]: cluster 2024-03-24T12:20:08.811542+0000 mgr.smithi170.xkyvyq (mgr.14199) 381 : cluster 0 pgmap v306: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:10.792 INFO:teuthology.orchestra.run.smithi170.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-03-24T12:20:10.792 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7476002R480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-03-24T12:20:10.792 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme1n1 ssd Linux_3cd1406c6ad0ef11b4c6 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:20:10.792 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme2n1 ssd Linux_99ba4e190b84502d3dc9 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:20:10.792 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme3n1 ssd Linux_e2855ce1533b9451fdd9 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:20:10.792 INFO:teuthology.orchestra.run.smithi170.stdout:smithi170 /dev/nvme4n1 ssd Linux_232351e92a0532808ca4 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:20:10.793 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT6233005M400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-03-24T12:20:10.793 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme1n1 ssd Linux_69df2a544f7f1f8e1480 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:20:10.793 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme2n1 ssd Linux_c168202c83c0fdc1ecf6 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:20:10.793 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme3n1 ssd Linux_8b5ac07049d950bba3b5 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:20:10.793 INFO:teuthology.orchestra.run.smithi170.stdout:smithi172 /dev/nvme4n1 ssd Linux_5d07f53583aa4c95afcb 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-03-24T12:20:10.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:10 smithi172 bash[23876]: cluster 2024-03-24T12:20:08.811542+0000 mgr.smithi170.xkyvyq (mgr.14199) 381 : cluster 0 pgmap v306: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:11.473 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:db0330b1e4e2470d52b750e251e55a522b4f7d69 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-03-24T12:20:12.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:12 smithi172 bash[23876]: audit 2024-03-24T12:20:10.793607+0000 mgr.smithi170.xkyvyq (mgr.14199) 382 : audit 0 from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:20:12.914 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:12 smithi172 bash[23876]: cluster 2024-03-24T12:20:10.812427+0000 mgr.smithi170.xkyvyq (mgr.14199) 383 : cluster 0 pgmap v307: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:12.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:12 smithi170 bash[18738]: audit 2024-03-24T12:20:10.793607+0000 mgr.smithi170.xkyvyq (mgr.14199) 382 : audit 0 from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-03-24T12:20:12.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:12 smithi170 bash[18738]: cluster 2024-03-24T12:20:10.812427+0000 mgr.smithi170.xkyvyq (mgr.14199) 383 : cluster 0 pgmap v307: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:14.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:14 smithi172 bash[23876]: cluster 2024-03-24T12:20:12.813154+0000 mgr.smithi170.xkyvyq (mgr.14199) 384 : cluster 0 pgmap v308: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:14.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:14 smithi172 bash[23876]: audit 2024-03-24T12:20:13.923502+0000 mon.smithi170 (mon.0) 1004 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:20:14.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:14 smithi170 bash[18738]: cluster 2024-03-24T12:20:12.813154+0000 mgr.smithi170.xkyvyq (mgr.14199) 384 : cluster 0 pgmap v308: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:14.968 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:14 smithi170 bash[18738]: audit 2024-03-24T12:20:13.923502+0000 mon.smithi170 (mon.0) 1004 : audit 0 from='mgr.14199 172.21.15.170:0/2472820058' entity='mgr.smithi170.xkyvyq' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-03-24T12:20:16.280 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/mon.smithi170/config 2024-03-24T12:20:16.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:16 smithi172 bash[23876]: cluster 2024-03-24T12:20:14.815050+0000 mgr.smithi170.xkyvyq (mgr.14199) 385 : cluster 0 pgmap v309: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:16.956 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:16 smithi170 bash[18738]: cluster 2024-03-24T12:20:14.815050+0000 mgr.smithi170.xkyvyq (mgr.14199) 385 : cluster 0 pgmap v309: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:18.913 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:18 smithi172 bash[23876]: cluster 2024-03-24T12:20:16.816361+0000 mgr.smithi170.xkyvyq (mgr.14199) 386 : cluster 0 pgmap v310: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:18.967 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:18 smithi170 bash[18738]: cluster 2024-03-24T12:20:16.816361+0000 mgr.smithi170.xkyvyq (mgr.14199) 386 : cluster 0 pgmap v310: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-03-24T12:20:19.064 INFO:teuthology.orchestra.run.smithi170.stdout:osd.all-available-devices 8 15s ago 7m * 2024-03-24T12:20:19.836 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-03-24T12:20:19.854 INFO:tasks.vip:Removing 10.0.15.170 (and any VIPs) on smithi170.front.sepia.ceph.com iface enp3s0f1... 2024-03-24T12:20:19.855 DEBUG:teuthology.orchestra.run.smithi170:> sudo ip addr del 10.0.15.170/16 dev enp3s0f1 2024-03-24T12:20:19.870 DEBUG:teuthology.orchestra.run.smithi170:> sudo ip addr del 10.0.31.170/16 dev enp3s0f1 2024-03-24T12:20:19.930 INFO:teuthology.orchestra.run.smithi170.stderr:RTNETLINK answers: Cannot assign requested address 2024-03-24T12:20:19.931 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-03-24T12:20:19.931 INFO:tasks.vip:Removing 10.0.15.172 (and any VIPs) on smithi172.front.sepia.ceph.com iface enp3s0f1... 2024-03-24T12:20:19.931 DEBUG:teuthology.orchestra.run.smithi172:> sudo ip addr del 10.0.15.172/16 dev enp3s0f1 2024-03-24T12:20:19.947 DEBUG:teuthology.orchestra.run.smithi172:> sudo ip addr del 10.0.31.170/16 dev enp3s0f1 2024-03-24T12:20:20.000 INFO:teuthology.orchestra.run.smithi172.stderr:RTNETLINK answers: Cannot assign requested address 2024-03-24T12:20:20.001 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-03-24T12:20:20.001 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-03-24T12:20:20.012 INFO:tasks.cephadm:Teardown begin 2024-03-24T12:20:20.012 DEBUG:teuthology.orchestra.run.smithi170:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-24T12:20:20.025 DEBUG:teuthology.orchestra.run.smithi172:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-24T12:20:20.057 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-03-24T12:20:20.057 DEBUG:teuthology.orchestra.run.smithi170:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-03-24T12:20:20.075 DEBUG:teuthology.orchestra.run.smithi172:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-03-24T12:20:20.105 INFO:tasks.cephadm:Stopping all daemons... 2024-03-24T12:20:20.106 INFO:tasks.cephadm.mon.smithi170:Stopping mon.smithi170... 2024-03-24T12:20:20.106 DEBUG:teuthology.orchestra.run.smithi170:> sudo systemctl stop ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mon.smithi170 2024-03-24T12:20:20.408 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:20 smithi170 systemd[1]: Stopping Ceph mon.smithi170 for 158785cc-e9d7-11ee-95cd-87774f69a715... 2024-03-24T12:20:20.408 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:20 smithi170 bash[18738]: debug 2024-03-24T12:20:20.271+0000 7f111ed9d700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi170 -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-03-24T12:20:20.408 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Mar 24 12:20:20 smithi170 bash[18738]: debug 2024-03-24T12:20:20.271+0000 7f111ed9d700 -1 mon.smithi170@0(leader) e2 *** Got Signal Terminated *** 2024-03-24T12:20:21.170 DEBUG:teuthology.orchestra.run.smithi170:> sudo pkill -f 'journalctl -f -n 0 -u ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mon.smithi170.service' 2024-03-24T12:20:21.207 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-24T12:20:21.207 INFO:tasks.cephadm.mon.smithi170:Stopped mon.smithi170 2024-03-24T12:20:21.207 INFO:tasks.cephadm.mon.smithi172:Stopping mon.smithi172... 2024-03-24T12:20:21.207 DEBUG:teuthology.orchestra.run.smithi172:> sudo systemctl stop ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mon.smithi172 2024-03-24T12:20:21.515 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:21 smithi172 systemd[1]: Stopping Ceph mon.smithi172 for 158785cc-e9d7-11ee-95cd-87774f69a715... 2024-03-24T12:20:21.515 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:21 smithi172 bash[23876]: debug 2024-03-24T12:20:21.360+0000 7f4a4860a700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi172 -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-03-24T12:20:21.515 INFO:journalctl@ceph.mon.smithi172.smithi172.stdout:Mar 24 12:20:21 smithi172 bash[23876]: debug 2024-03-24T12:20:21.360+0000 7f4a4860a700 -1 mon.smithi172@1(peon) e2 *** Got Signal Terminated *** 2024-03-24T12:20:22.154 DEBUG:teuthology.orchestra.run.smithi172:> sudo pkill -f 'journalctl -f -n 0 -u ceph-158785cc-e9d7-11ee-95cd-87774f69a715@mon.smithi172.service' 2024-03-24T12:20:22.198 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-03-24T12:20:22.198 INFO:tasks.cephadm.mon.smithi172:Stopped mon.smithi172 2024-03-24T12:20:22.198 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 --force --keep-logs 2024-03-24T12:20:22.371 INFO:teuthology.orchestra.run.smithi170.stdout:Deleting cluster with fsid: 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:21:20.605 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 --force --keep-logs 2024-03-24T12:21:20.770 INFO:teuthology.orchestra.run.smithi172.stdout:Deleting cluster with fsid: 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:22:13.541 DEBUG:teuthology.orchestra.run.smithi170:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-24T12:22:13.556 DEBUG:teuthology.orchestra.run.smithi172:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-03-24T12:22:13.568 INFO:tasks.cephadm:Archiving crash dumps... 2024-03-24T12:22:13.570 DEBUG:teuthology.misc:Transferring archived files from smithi170:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/crash to /home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983/remote/smithi170/crash 2024-03-24T12:22:13.571 DEBUG:teuthology.orchestra.run.smithi170:> sudo tar c -f - -C /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/crash -- . 2024-03-24T12:22:13.607 INFO:teuthology.orchestra.run.smithi170.stderr:tar: /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/crash: Cannot open: No such file or directory 2024-03-24T12:22:13.608 INFO:teuthology.orchestra.run.smithi170.stderr:tar: Error is not recoverable: exiting now 2024-03-24T12:22:13.609 DEBUG:teuthology.misc:Transferring archived files from smithi172:/var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/crash to /home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983/remote/smithi172/crash 2024-03-24T12:22:13.610 DEBUG:teuthology.orchestra.run.smithi172:> sudo tar c -f - -C /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/crash -- . 2024-03-24T12:22:13.621 INFO:teuthology.orchestra.run.smithi172.stderr:tar: /var/lib/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/crash: Cannot open: No such file or directory 2024-03-24T12:22:13.621 INFO:teuthology.orchestra.run.smithi172.stderr:tar: Error is not recoverable: exiting now 2024-03-24T12:22:13.622 INFO:tasks.cephadm:Checking cluster log for badness... 2024-03-24T12:22:13.622 DEBUG:teuthology.orchestra.run.smithi170:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-03-24T12:22:13.665 INFO:teuthology.orchestra.run.smithi170.stdout:2024-03-24T12:12:12.058443+0000 mon.smithi170 (mon.0) 252 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s) 2024-03-24T12:22:13.666 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-03-24T12:22:13.667 DEBUG:teuthology.orchestra.run.smithi170:> sudo egrep '\[SEC\]' /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-03-24T12:22:13.722 DEBUG:teuthology.orchestra.run.smithi170:> sudo egrep '\[ERR\]' /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-03-24T12:22:13.777 DEBUG:teuthology.orchestra.run.smithi170:> sudo egrep '\[WRN\]' /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-03-24T12:22:13.836 INFO:teuthology.orchestra.run.smithi170.stdout:2024-03-24T12:12:12.058443+0000 mon.smithi170 (mon.0) 252 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s) 2024-03-24T12:22:13.837 INFO:tasks.cephadm:Compressing logs... 2024-03-24T12:22:13.838 DEBUG:teuthology.orchestra.run.smithi170:> 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-03-24T12:22:13.886 DEBUG:teuthology.orchestra.run.smithi172:> 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-03-24T12:22:13.895 INFO:teuthology.orchestra.run.smithi170.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-03-24T12:22:13.899 INFO:teuthology.orchestra.run.smithi170.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-03-24T12:22:13.900 INFO:teuthology.orchestra.run.smithi170.stderr:gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.7.log 2024-03-24T12:22:13.900 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-client.ceph-exporter.smithi170.log 2024-03-24T12:22:13.901 INFO:teuthology.orchestra.run.smithi172.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-03-24T12:22:13.902 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.cephadm.log 2024-03-24T12:22:13.902 INFO:teuthology.orchestra.run.smithi170.stderr:gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.3.log 2024-03-24T12:22:13.902 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-client.ceph-exporter.smithi170.log: /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.5.log 2024-03-24T12:22:13.902 INFO:teuthology.orchestra.run.smithi170.stderr: 83.8% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.cephadm.log.gz 2024-03-24T12:22:13.902 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-mgr.smithi170.xkyvyq.log 2024-03-24T12:22:13.902 INFO:teuthology.orchestra.run.smithi170.stderr: 94.2% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-client.ceph-exporter.smithi170.log.gz 2024-03-24T12:22:13.904 INFO:teuthology.orchestra.run.smithi170.stderr:gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.1.log 2024-03-24T12:22:13.904 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.5.log: /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-mgr.smithi170.xkyvyq.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ops-log-ceph-client.rgw.foorgw.smithi170.jipxas.log 2024-03-24T12:22:13.904 INFO:teuthology.orchestra.run.smithi170.stderr:gzip/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.1.log: -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-mon.smithi170.log 2024-03-24T12:22:13.904 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ops-log-ceph-client.rgw.foorgw.smithi170.jipxas.log: 76.7% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ops-log-ceph-client.rgw.foorgw.smithi170.jipxas.log.gzgzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-client.rgw.foorgw.smithi170.jipxas.log 2024-03-24T12:22:13.905 INFO:teuthology.orchestra.run.smithi170.stderr: 2024-03-24T12:22:13.910 INFO:teuthology.orchestra.run.smithi172.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-03-24T12:22:13.911 INFO:teuthology.orchestra.run.smithi172.stderr:gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.0.log 2024-03-24T12:22:13.911 INFO:teuthology.orchestra.run.smithi172.stderr:gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.2.log 2024-03-24T12:22:13.912 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/cephadm.log: /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.6.log 2024-03-24T12:22:13.913 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.cephadm.log 2024-03-24T12:22:13.913 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-mgr.smithi172.uznkeq.log 2024-03-24T12:22:13.913 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-mon.smithi170.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.log 2024-03-24T12:22:13.914 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-client.ceph-exporter.smithi172.log 2024-03-24T12:22:13.915 INFO:teuthology.orchestra.run.smithi172.stderr:gzip/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-mgr.smithi172.uznkeq.log: -5 83.7% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.cephadm.log.gz 2024-03-24T12:22:13.915 INFO:teuthology.orchestra.run.smithi172.stderr: --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.log 2024-03-24T12:22:13.918 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-client.rgw.foorgw.smithi170.jipxas.log: 72.4% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-client.rgw.foorgw.smithi170.jipxas.log.gz 2024-03-24T12:22:13.918 INFO:teuthology.orchestra.run.smithi170.stderr: 85.5% -- replaced with /var/log/ceph/cephadm.log.gzgzip 2024-03-24T12:22:13.918 INFO:teuthology.orchestra.run.smithi170.stderr: -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-volume.log 2024-03-24T12:22:13.918 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.audit.log 2024-03-24T12:22:13.918 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-volume.log: 87.5% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.log.gz 2024-03-24T12:22:13.919 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-client.ceph-exporter.smithi172.log: gzip -5 89.6% -- replaced with /var/log/ceph/cephadm.log.gz 2024-03-24T12:22:13.919 INFO:teuthology.orchestra.run.smithi172.stderr: --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-volume.log 2024-03-24T12:22:13.919 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.log: 94.4% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-client.ceph-exporter.smithi172.log.gz 2024-03-24T12:22:13.919 INFO:teuthology.orchestra.run.smithi172.stderr:gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-client.rgw.foorgw.smithi172.tjined.log 2024-03-24T12:22:13.919 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-mon.smithi172.log 2024-03-24T12:22:13.919 INFO:teuthology.orchestra.run.smithi172.stderr: 87.4% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.log.gz 2024-03-24T12:22:13.920 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-client.rgw.foorgw.smithi172.tjined.log: gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.audit.log 2024-03-24T12:22:13.920 INFO:teuthology.orchestra.run.smithi172.stderr: 64.8% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-client.rgw.foorgw.smithi172.tjined.log.gz 2024-03-24T12:22:13.920 INFO:teuthology.orchestra.run.smithi172.stderr:gzip -5 --verbose -- /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.4.log 2024-03-24T12:22:13.920 INFO:teuthology.orchestra.run.smithi172.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-mon.smithi172.log: /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.audit.log: /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.4.log: 91.4% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.audit.log.gz 2024-03-24T12:22:13.921 INFO:teuthology.orchestra.run.smithi172.stderr: 92.2% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-mgr.smithi172.uznkeq.log.gz 2024-03-24T12:22:13.921 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.audit.log: 91.2% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph.audit.log.gz 2024-03-24T12:22:13.928 INFO:teuthology.orchestra.run.smithi172.stderr: 91.2% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-volume.log.gz 2024-03-24T12:22:13.930 INFO:teuthology.orchestra.run.smithi170.stderr: 91.1% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-volume.log.gz 2024-03-24T12:22:14.018 INFO:teuthology.orchestra.run.smithi172.stderr: 92.9% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-mon.smithi172.log.gz 2024-03-24T12:22:14.090 INFO:teuthology.orchestra.run.smithi170.stderr: 88.6% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-mgr.smithi170.xkyvyq.log.gz 2024-03-24T12:22:14.174 INFO:teuthology.orchestra.run.smithi170.stderr: 93.4% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.7.log.gz 2024-03-24T12:22:14.255 INFO:teuthology.orchestra.run.smithi172.stderr: 93.3% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.6.log.gz 2024-03-24T12:22:14.275 INFO:teuthology.orchestra.run.smithi172.stderr: 93.4% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.2.log.gz 2024-03-24T12:22:14.280 INFO:teuthology.orchestra.run.smithi170.stderr: 91.3% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-mon.smithi170.log.gz 2024-03-24T12:22:14.306 INFO:teuthology.orchestra.run.smithi170.stderr: 93.4% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.5.log.gz 2024-03-24T12:22:14.309 INFO:teuthology.orchestra.run.smithi170.stderr: 93.6% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.3.log.gz 2024-03-24T12:22:14.309 INFO:teuthology.orchestra.run.smithi172.stderr: 93.4% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.4.log.gz 2024-03-24T12:22:14.354 INFO:teuthology.orchestra.run.smithi170.stderr: 93.6% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.1.log.gz 2024-03-24T12:22:14.356 INFO:teuthology.orchestra.run.smithi170.stderr: 2024-03-24T12:22:14.356 INFO:teuthology.orchestra.run.smithi170.stderr:real 0m0.467s 2024-03-24T12:22:14.356 INFO:teuthology.orchestra.run.smithi170.stderr:user 0m2.075s 2024-03-24T12:22:14.356 INFO:teuthology.orchestra.run.smithi170.stderr:sys 0m0.086s 2024-03-24T12:22:14.358 INFO:teuthology.orchestra.run.smithi172.stderr: 93.4% -- replaced with /var/log/ceph/158785cc-e9d7-11ee-95cd-87774f69a715/ceph-osd.0.log.gz 2024-03-24T12:22:14.360 INFO:teuthology.orchestra.run.smithi172.stderr: 2024-03-24T12:22:14.360 INFO:teuthology.orchestra.run.smithi172.stderr:real 0m0.469s 2024-03-24T12:22:14.360 INFO:teuthology.orchestra.run.smithi172.stderr:user 0m1.615s 2024-03-24T12:22:14.360 INFO:teuthology.orchestra.run.smithi172.stderr:sys 0m0.091s 2024-03-24T12:22:14.361 INFO:tasks.cephadm:Archiving logs... 2024-03-24T12:22:14.361 DEBUG:teuthology.misc:Transferring archived files from smithi170:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983/remote/smithi170/log 2024-03-24T12:22:14.362 DEBUG:teuthology.orchestra.run.smithi170:> sudo tar c -f - -C /var/log/ceph -- . 2024-03-24T12:22:14.649 DEBUG:teuthology.misc:Transferring archived files from smithi172:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983/remote/smithi172/log 2024-03-24T12:22:14.650 DEBUG:teuthology.orchestra.run.smithi172:> sudo tar c -f - -C /var/log/ceph -- . 2024-03-24T12:22:14.859 INFO:tasks.cephadm:Removing cluster... 2024-03-24T12:22:14.859 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 --force 2024-03-24T12:22:15.017 INFO:teuthology.orchestra.run.smithi170.stdout:Deleting cluster with fsid: 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:22:16.139 DEBUG:teuthology.orchestra.run.smithi172:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 158785cc-e9d7-11ee-95cd-87774f69a715 --force 2024-03-24T12:22:16.296 INFO:teuthology.orchestra.run.smithi172.stdout:Deleting cluster with fsid: 158785cc-e9d7-11ee-95cd-87774f69a715 2024-03-24T12:22:17.423 INFO:tasks.cephadm:Removing cephadm ... 2024-03-24T12:22:17.423 DEBUG:teuthology.orchestra.run.smithi170:> rm -rf /home/ubuntu/cephtest/cephadm 2024-03-24T12:22:17.429 DEBUG:teuthology.orchestra.run.smithi172:> rm -rf /home/ubuntu/cephtest/cephadm 2024-03-24T12:22:17.435 INFO:tasks.cephadm:Teardown complete 2024-03-24T12:22:17.435 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-03-24T12:22:17.445 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_1... 2024-03-24T12:22:17.445 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_1 2024-03-24T12:22:17.725 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-03-24T12:22:17.727 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-24T12:22:17.728 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_2... 2024-03-24T12:22:17.728 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_2 2024-03-24T12:22:17.965 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-03-24T12:22:17.966 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-24T12:22:17.967 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_3... 2024-03-24T12:22:17.967 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_3 2024-03-24T12:22:18.233 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-03-24T12:22:18.234 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-24T12:22:18.235 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_4... 2024-03-24T12:22:18.235 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_4 2024-03-24T12:22:18.513 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-03-24T12:22:18.515 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-24T12:22:18.515 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-03-24T12:22:18.516 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/scratch_devs 2024-03-24T12:22:18.530 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi172:/dev/vg_nvme/lv_1... 2024-03-24T12:22:18.530 DEBUG:teuthology.orchestra.run.smithi172:> sudo nvme disconnect -n lv_1 2024-03-24T12:22:18.788 INFO:teuthology.orchestra.run.smithi172.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-03-24T12:22:18.789 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-24T12:22:18.790 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi172:/dev/vg_nvme/lv_2... 2024-03-24T12:22:18.790 DEBUG:teuthology.orchestra.run.smithi172:> sudo nvme disconnect -n lv_2 2024-03-24T12:22:19.072 INFO:teuthology.orchestra.run.smithi172.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-03-24T12:22:19.073 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-24T12:22:19.074 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi172:/dev/vg_nvme/lv_3... 2024-03-24T12:22:19.074 DEBUG:teuthology.orchestra.run.smithi172:> sudo nvme disconnect -n lv_3 2024-03-24T12:22:19.320 INFO:teuthology.orchestra.run.smithi172.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-03-24T12:22:19.322 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-24T12:22:19.322 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi172:/dev/vg_nvme/lv_4... 2024-03-24T12:22:19.323 DEBUG:teuthology.orchestra.run.smithi172:> sudo nvme disconnect -n lv_4 2024-03-24T12:22:19.588 INFO:teuthology.orchestra.run.smithi172.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-03-24T12:22:19.589 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-24T12:22:19.589 DEBUG:teuthology.orchestra.run.smithi172:> set -ex 2024-03-24T12:22:19.590 DEBUG:teuthology.orchestra.run.smithi172:> sudo dd of=/scratch_devs 2024-03-24T12:22:19.603 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-03-24T12:22:19.614 INFO:teuthology.task.clock:Checking final clock skew... 2024-03-24T12:22:19.614 DEBUG:teuthology.orchestra.run.smithi170:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-24T12:22:19.617 DEBUG:teuthology.orchestra.run.smithi172:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-24T12:22:19.628 INFO:teuthology.orchestra.run.smithi170.stdout: remote refid st t when poll reach delay offset jitter 2024-03-24T12:22:19.628 INFO:teuthology.orchestra.run.smithi170.stdout:============================================================================== 2024-03-24T12:22:19.628 INFO:teuthology.orchestra.run.smithi170.stdout:*hv01.front.sepi 44.4.53.2 2 u 38 64 377 0.075 -3.952 1.467 2024-03-24T12:22:19.628 INFO:teuthology.orchestra.run.smithi170.stdout:+hv02.front.sepi 63.231.80.2 3 u 42 64 377 0.088 -1.088 2.046 2024-03-24T12:22:19.628 INFO:teuthology.orchestra.run.smithi170.stdout:+hv03.front.sepi 74.6.168.72 3 u 43 64 377 0.091 -2.231 1.482 2024-03-24T12:22:19.628 INFO:teuthology.orchestra.run.smithi170.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-03-24T12:22:19.662 INFO:teuthology.orchestra.run.smithi172.stdout: remote refid st t when poll reach delay offset jitter 2024-03-24T12:22:19.662 INFO:teuthology.orchestra.run.smithi172.stdout:============================================================================== 2024-03-24T12:22:19.662 INFO:teuthology.orchestra.run.smithi172.stdout:*hv01.front.sepi 44.4.53.2 2 u 36 64 377 0.095 -2.231 2.278 2024-03-24T12:22:19.662 INFO:teuthology.orchestra.run.smithi172.stdout:+hv02.front.sepi 63.231.80.2 3 u 37 64 377 0.115 -0.535 3.032 2024-03-24T12:22:19.662 INFO:teuthology.orchestra.run.smithi172.stdout:+hv03.front.sepi 74.6.168.72 3 u 43 64 377 0.097 -4.265 2.826 2024-03-24T12:22:19.662 INFO:teuthology.orchestra.run.smithi172.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-03-24T12:22:19.663 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-03-24T12:22:19.674 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-03-24T12:22:19.675 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-03-24T12:22:19.685 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-03-24T12:22:19.695 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-03-24T12:22:19.708 INFO:teuthology.task.internal:Duration was 1319.789177 seconds 2024-03-24T12:22:19.708 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-03-24T12:22:19.720 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-03-24T12:22:19.720 DEBUG:teuthology.orchestra.run.smithi170:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-03-24T12:22:19.723 DEBUG:teuthology.orchestra.run.smithi172:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-03-24T12:22:19.760 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-03-24T12:22:19.760 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi170.front.sepia.ceph.com 2024-03-24T12:22:19.760 DEBUG:teuthology.orchestra.run.smithi170:> 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-03-24T12:22:19.810 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi172.front.sepia.ceph.com 2024-03-24T12:22:19.810 DEBUG:teuthology.orchestra.run.smithi172:> 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-03-24T12:22:19.820 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-03-24T12:22:19.820 DEBUG:teuthology.orchestra.run.smithi170:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-03-24T12:22:19.855 DEBUG:teuthology.orchestra.run.smithi172:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-03-24T12:22:19.903 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-03-24T12:22:19.903 DEBUG:teuthology.orchestra.run.smithi170:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-03-24T12:22:19.942 DEBUG:teuthology.orchestra.run.smithi172:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-03-24T12:22:20.056 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-03-24T12:22:20.068 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-03-24T12:22:20.068 DEBUG:teuthology.orchestra.run.smithi170:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-03-24T12:22:20.081 DEBUG:teuthology.orchestra.run.smithi172:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-03-24T12:22:20.091 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-03-24T12:22:20.102 DEBUG:teuthology.orchestra.run.smithi170:> 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-03-24T12:22:20.126 DEBUG:teuthology.orchestra.run.smithi172:> 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-03-24T12:22:20.134 INFO:teuthology.orchestra.run.smithi170.stdout:kernel.core_pattern = core 2024-03-24T12:22:20.146 INFO:teuthology.orchestra.run.smithi172.stdout:kernel.core_pattern = core 2024-03-24T12:22:20.169 DEBUG:teuthology.orchestra.run.smithi170:> test -e /home/ubuntu/cephtest/archive/coredump 2024-03-24T12:22:20.202 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-24T12:22:20.202 DEBUG:teuthology.orchestra.run.smithi172:> test -e /home/ubuntu/cephtest/archive/coredump 2024-03-24T12:22:20.214 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-24T12:22:20.215 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-03-24T12:22:20.227 INFO:teuthology.task.internal:Transferring archived files... 2024-03-24T12:22:20.228 DEBUG:teuthology.misc:Transferring archived files from smithi170:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983/remote/smithi170 2024-03-24T12:22:20.228 DEBUG:teuthology.orchestra.run.smithi170:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-03-24T12:22:20.269 DEBUG:teuthology.misc:Transferring archived files from smithi172:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983/remote/smithi172 2024-03-24T12:22:20.270 DEBUG:teuthology.orchestra.run.smithi172:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-03-24T12:22:20.291 INFO:teuthology.task.internal:Removing archive directory... 2024-03-24T12:22:20.291 DEBUG:teuthology.orchestra.run.smithi170:> rm -rf -- /home/ubuntu/cephtest/archive 2024-03-24T12:22:20.306 DEBUG:teuthology.orchestra.run.smithi172:> rm -rf -- /home/ubuntu/cephtest/archive 2024-03-24T12:22:20.336 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-03-24T12:22:20.348 INFO:teuthology.task.internal:Not uploading archives. 2024-03-24T12:22:20.349 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-03-24T12:22:20.360 INFO:teuthology.task.internal:Tidying up after the test... 2024-03-24T12:22:20.361 DEBUG:teuthology.orchestra.run.smithi170:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-03-24T12:22:20.363 DEBUG:teuthology.orchestra.run.smithi172:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-03-24T12:22:20.367 INFO:teuthology.orchestra.run.smithi170.stdout: 658467 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 24 12:22 /home/ubuntu/cephtest 2024-03-24T12:22:20.384 INFO:teuthology.orchestra.run.smithi172.stdout: 658633 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 24 12:22 /home/ubuntu/cephtest 2024-03-24T12:22:20.385 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-03-24T12:22:20.397 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-03-24T12:22:20.443 INFO:teuthology.nuke:Checking targets against current locks 2024-03-24T12:22:20.473 DEBUG:teuthology.nuke:shortname: smithi170 2024-03-24T12:22:20.473 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-24T12:22:20.499 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi170.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983', '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-03-24 11:50:52.198588', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDY1G6agdFLwrs7hAB3UPKmnlmo2lg5Bbhw3lGbw4hdRA7CURcI4gvWMo80ITdzAS0KQdm/xzsE15frkfu+qdyk='} 2024-03-24T12:22:20.503 DEBUG:teuthology.nuke:shortname: smithi172 2024-03-24T12:22:20.504 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-24T12:22:20.526 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi172.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-03-22_21:08:02-orch-squid-distro-default-smithi/7617983', '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-03-24 11:50:52.197018', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAgmQpNbbGOtf5IG5+RBA+KoiIdJ/lii1mVr1p6h8BNGoRCYi9GHIUcxkuYle3b2FoAYuFk5xG8Hx3Tm4nRFPCk='} 2024-03-24T12:22:20.564 INFO:teuthology.orchestra.console.smithi170:Power off 2024-03-24T12:22:20.564 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-03-24T12:22:20.587 DEBUG:teuthology.orchestra.console.smithi170:power off output: Chassis Power Control: Down/Off 2024-03-24T12:22:20.587 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-24T12:22:20.603 INFO:teuthology.orchestra.console.smithi172:Power off 2024-03-24T12:22:20.603 DEBUG:teuthology.orchestra.console.smithi172:pexpect command: ipmitool -H smithi172.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-03-24T12:22:20.613 DEBUG:teuthology.orchestra.console.smithi170:check power output: Chassis Power is on 2024-03-24T12:22:20.627 DEBUG:teuthology.orchestra.console.smithi172:power off output: Chassis Power Control: Down/Off 2024-03-24T12:22:20.627 DEBUG:teuthology.orchestra.console.smithi172:pexpect command: ipmitool -H smithi172.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-24T12:22:20.652 DEBUG:teuthology.orchestra.console.smithi172:check power output: Chassis Power is on 2024-03-24T12:22:24.614 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-24T12:22:24.654 DEBUG:teuthology.orchestra.console.smithi172:pexpect command: ipmitool -H smithi172.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-24T12:22:24.725 DEBUG:teuthology.orchestra.console.smithi170:check power output: Chassis Power is on 2024-03-24T12:22:24.764 DEBUG:teuthology.orchestra.console.smithi172:check power output: Chassis Power is on 2024-03-24T12:22:28.730 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-24T12:22:28.765 DEBUG:teuthology.orchestra.console.smithi172:pexpect command: ipmitool -H smithi172.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-24T12:22:28.840 DEBUG:teuthology.orchestra.console.smithi170:check power output: Chassis Power is on 2024-03-24T12:22:28.877 DEBUG:teuthology.orchestra.console.smithi172:check power output: Chassis Power is on 2024-03-24T12:22:32.842 DEBUG:teuthology.orchestra.console.smithi170:pexpect command: ipmitool -H smithi170.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-24T12:22:32.877 DEBUG:teuthology.orchestra.console.smithi172:pexpect command: ipmitool -H smithi172.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-24T12:22:32.957 DEBUG:teuthology.orchestra.console.smithi170:check power output: Chassis Power is off 2024-03-24T12:22:32.988 DEBUG:teuthology.orchestra.console.smithi172:check power output: Chassis Power is off 2024-03-24T12:22:33.058 INFO:teuthology.orchestra.console.smithi170:Power off completed 2024-03-24T12:22:33.089 INFO:teuthology.orchestra.console.smithi172:Power off completed 2024-03-24T12:22:33.193 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: 1319.7891771793365 failure_reason: '"2024-03-24T12:12:12.058443+0000 mon.smithi170 (mon.0) 252 : cluster 3 [WRN] CEPHADM_DAEMON_PLACE_FAIL: Failed to place 1 daemon(s)" in cluster log' owner: scheduled_teuthology@teuthology success: false 2024-03-24T12:22:33.194 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-03-24T12:22:33.281 INFO:teuthology.run:FAIL